You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Test
public void testMetadata(TestContext ctx) {
pool.withConnection(conn -> conn.query("SELECT id, val, current_timestamp FROM mutable").execute(), ctx.asyncAssertSuccess(rows -> {
...
// It will return JDBCType.OTHER instead of the expected one
ctx.assertEquals( JDBCType.TIMESTAMP_WITH_TIMEZONE, rows.columnDescriptors().get(2).jdbcType());
}));
}