feat(adbc): support ADBC_INFO_DRIVER_ADBC_VERSION (new in ADBC 1.1.0)#20344
Merged
pdet merged 2 commits intoduckdb:mainfrom Dec 30, 2025
Merged
feat(adbc): support ADBC_INFO_DRIVER_ADBC_VERSION (new in ADBC 1.1.0)#20344pdet merged 2 commits intoduckdb:mainfrom
ADBC_INFO_DRIVER_ADBC_VERSION (new in ADBC 1.1.0)#20344pdet merged 2 commits intoduckdb:mainfrom
Conversation
c1f17f7 to
d40468a
Compare
lidavidm
approved these changes
Dec 30, 2025
7a882e5 to
bd84f2a
Compare
Collaborator
|
LGTM! Thanks! |
evertlammerts
added a commit
to duckdb/duckdb-python
that referenced
this pull request
Jan 5, 2026
Fixes ADBC tests to align with changes made in duckdb/duckdb#20344
github-actions bot
pushed a commit
to duckdb/duckdb-r
that referenced
this pull request
Feb 26, 2026
`GEOMETRY` Rework: Part 5 - Coordinate Reference System Support (duckdb/duckdb#20143) feat(adbc): support `ADBC_INFO_DRIVER_ADBC_VERSION` (new in ADBC 1.1.0) (duckdb/duckdb#20344) feat(adbc): support the uri option of ADBC 1.1.0 (duckdb/duckdb#20312)
github-actions bot
added a commit
to duckdb/duckdb-r
that referenced
this pull request
Feb 26, 2026
`GEOMETRY` Rework: Part 5 - Coordinate Reference System Support (duckdb/duckdb#20143) feat(adbc): support `ADBC_INFO_DRIVER_ADBC_VERSION` (new in ADBC 1.1.0) (duckdb/duckdb#20344) feat(adbc): support the uri option of ADBC 1.1.0 (duckdb/duckdb#20312) Co-authored-by: krlmlr <krlmlr@users.noreply.github.com>
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.
Adds support for the ADBC 1.1.0 GetInfo code
ADBC_INFO_DRIVER_ADBC_VERSION(info code 103) in the ADBC driver.And, updates the GetInfo implementation to use the official
ADBC_INFO_*constants instead of assuming the info codes are contiguous (0, 1, 2, …), aligning behavior with other drivers in the arrow-adbc repo.For example, if we retrieve information using
adbcdrivermanager::adbc_connection_get_info(conn)in R, we can see the following:This format can be compared to the SQLite driver to confirm it matches (though the SQLite driver doesn't seem to include
ADBC_INFO_DRIVER_ADBC_VERSION(103) by default; I've included all the information here as before, but I'm not sure which is ideal).cc @lidavidm