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.
1 parent f7d1060 commit 60669b5Copy full SHA for 60669b5
jdbc/src/main/java/tech/ydb/jdbc/common/FixedResultSetFactory.java
@@ -317,6 +317,22 @@ public Duration getInterval() {
317
return value.getInterval();
318
}
319
320
+ public LocalDate getDate32() {
321
+ return value.getDate();
322
+ }
323
+
324
+ public LocalDateTime getDatetime64() {
325
+ return value.getDatetime();
326
327
328
+ public Instant getTimestamp64() {
329
+ return value.getTimestamp();
330
331
332
+ public Duration getInterval64() {
333
+ return value.getInterval();
334
335
336
@Override
337
public ZonedDateTime getTzDate() {
338
return value.getTzDate();
0 commit comments