Merged
Conversation
Contributor
|
Thanks for picking this up! I was just going to ask about it. |
Collaborator
|
Thanks for picking this up! |
staticlibs
added a commit
to staticlibs/duckdb-java
that referenced
this pull request
Jan 8, 2026
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. Currently there is not possible to preserve nanosecond precision for `TIME_NS` query parameters. The support is necessary to fix `test_all_types` failures introduced by duckdb/duckdb#20361.
staticlibs
added a commit
to staticlibs/duckdb-java
that referenced
this pull request
Jan 8, 2026
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.
staticlibs
added a commit
to duckdb/duckdb-java
that referenced
this pull request
Jan 8, 2026
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.
evertlammerts
added a commit
to duckdb/duckdb-python
that referenced
this pull request
Jan 12, 2026
Add support for TIME_NS (see duckdb/duckdb#20361). The original PR added support for the `TIME_NS` type, which represents the time of day in nanoseconds: * Arrow supports this type * Pandas does not have this type itself (but can handle it as an `object` through arrow) * Python does not have an equivalent - `datetime.time` has microsecond precision. Note that DuckDB supports `TIME_NS` -> `TIME` casting but not the other way around, meaning that you can't insert e.g. a `datetime.time` into a `TIME_NS` column.
staticlibs
added a commit
to staticlibs/duckdb-postgres
that referenced
this pull request
Jan 18, 2026
This PR updates submodules and adds a number of minor changes: - update `duckdb` submodule to the latest `v1.5-variegata` - update `extension-ci-tools` submodule to the latest `main` - update `MainDistributionPipeline.yml` to the same versions of the engine and CI tools as above - update `Linux.yml` to set `LOCAL_EXTENSION_REPO` env var that is now (after some recent `unittest` chage) is required to run tests with extensions that are not statically linked (otherwise `require postgres_scanner` fails) - apply patch `getdatainternal.patch` from the engine repo - add a change to `postgres_storage.cpp` to accomodate to changes added in duckdb/duckdb#20508 - update `attach_types.test` that started failing due to duckdb/duckdb#20361 change PS: due to changes required for duckdb/duckdb#20508 it is suggested to add `v1.4-andium` branch to this repo (on a current `main`).
github-actions bot
pushed a commit
to duckdb/duckdb-r
that referenced
this pull request
Feb 26, 2026
TIME_NS Support + Arrow (duckdb/duckdb#20361) No catalog found Nightly test fix (duckdb/duckdb#20409) Avoid frequent checkpoints triggered by optimistic insertions (duckdb/duckdb#20336)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Picking up #19606, solving merge conflict, and removing unnecessary exclusions of
time_nstype.We are still missing the tests for the different precision types of
TIME, these should be added in our Python client after this code gets merged, as we need arrow to produce these precision types.