use of org.hisp.dhis.jdbc.StatementBuilder in project dhis2-core by dhis2.
the class StatementBuilderTest method testStatementBuilder.
@Test
public void testStatementBuilder() {
StatementBuilder builder = new PostgreSQLStatementBuilder();
String autoIncrement = builder.getAutoIncrementValue();
assertEquals("nextval('hibernate_sequence')", autoIncrement);
}
Aggregations