Skip to content

Commit

Permalink
Added support of future types
Browse files Browse the repository at this point in the history
  • Loading branch information
alex268 committed Feb 24, 2025
1 parent f7d1060 commit 60669b5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions jdbc/src/main/java/tech/ydb/jdbc/common/FixedResultSetFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,22 @@ public Duration getInterval() {
return value.getInterval();
}

public LocalDate getDate32() {
return value.getDate();
}

public LocalDateTime getDatetime64() {
return value.getDatetime();
}

public Instant getTimestamp64() {
return value.getTimestamp();
}

public Duration getInterval64() {
return value.getInterval();
}

@Override
public ZonedDateTime getTzDate() {
return value.getTzDate();
Expand Down

0 comments on commit 60669b5

Please sign in to comment.