-
Notifications
You must be signed in to change notification settings - Fork 46
Upgrade to DuckDB 1.4.1 #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Upgrade to DuckDB 1.4.1 #11
Conversation
|
|
||
| query = "SELECT blob_col FROM duckdb_supported_types_table WHERE blob_col IS NOT NULL ORDER BY blob_col" | ||
| expected = [("\\x00",), ("\\x",), ("\\xdeadbeaf",)] | ||
| expected = [("\\x",), ("\\x00",), ("\\xdeadbeaf",)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems a bit odd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The upgrade to duckdb seems to have changed the sort order of the 0-length byte NULL.
| const char *createGCSSecret = | ||
| "CREATE SECRET gcsdefault (" | ||
| "TYPE GCS, PROVIDER CREDENTIAL_CHAIN, " | ||
| "VALIDATION 'none', " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you don't have this, the updated secrets interface will complain in DuckDB 1.4.0+, which prevents pgduck_server from starting due to not necessarily having ~/.aws/config defined. This just suppresses the checks when it initializes.
9bb5f86 to
ae3e951
Compare
ae3e951 to
153c4c6
Compare
|
probably worth adding a test with: #18 |
|
should we add a test with the example here: #18 Mostly to make sure DuckDB does not regress on this, if does we can warn them. |
No description provided.