Skip to content

Commit d2eedf4

Browse files
change TIMESTAMP to TIMESTAMP_WITH_TIMEZONE to prevent PowerBI crashes
1 parent 43b0606 commit d2eedf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/tiledb/TileDBCloudResultSetMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public int getColumnType(int column) throws SQLException {
110110
} else if (valueVector instanceof VarCharVector) {
111111
return Types.VARCHAR;
112112
} else if (valueVector instanceof TimeStampVector) {
113-
return Types.TIMESTAMP;
113+
return Types.TIMESTAMP_WITH_TIMEZONE;
114114
}
115115
throw new RuntimeException(
116116
"Type for column with index: " + column + " is not yet supported by this driver.");

0 commit comments

Comments
 (0)