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
This PR adds support for fetching `TIME_NS` values as instances of
`java.time.LocalTime` class, example:
```java
LocalTime lt = rs.getObject(1, LocalTime.class);
```
Nanosecond precision is maintained on fetching `TIME_NS` values from DB.
Currently it is not possible to preserve nanosecond precision when
inserting `TIME_NS` values using query parameters.
The support is necessary to fix `test_all_types` failures introduced by
duckdb/duckdb#20361.
0 commit comments