We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f459da + bb23a07 commit 181f489Copy full SHA for 181f489
jdbc-v2/src/test/java/com/clickhouse/jdbc/metadata/ResultSetMetaDataTest.java
@@ -91,7 +91,7 @@ public void testGetColumnTypeDateAndTime() throws Exception {
91
ResultSet rs = stmt.executeQuery("SELECT toDate('2021-01-01') AS a, toDateTime('2021-01-01 00:00:00') AS b");
92
ResultSetMetaData rsmd = rs.getMetaData();
93
assertEquals(rsmd.getColumnType(1), Types.DATE);
94
- assertEquals(rsmd.getColumnType(2), Types.TIMESTAMP);
+ assertEquals(rsmd.getColumnType(2), Types.TIMESTAMP_WITH_TIMEZONE);
95
}
96
97
0 commit comments