use of com.querydsl.core.testutil.ExcludeIn in project querydsl by querydsl.
the class InsertBase method insert_with_keys.
@Test
@ExcludeIn({ CUBRID, SQLSERVER })
public void insert_with_keys() throws SQLException {
ResultSet rs = insert(survey).set(survey.name, "Hello World").executeWithKeys();
assertTrue(rs.next());
assertTrue(rs.getObject(1) != null);
rs.close();
}
Aggregations