Skip to content
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

chore: bump duckdb version #26

Merged
merged 3 commits into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DUCKDB_REPO=https://github.com/duckdb/duckdb.git
DUCKDB_REF=5f5512b827df6397afd31daedb4bbdee76520019
DUCKDB_REF=c009b4ea62f9fcf6ffed6aad51c8f1833121bbfb

CFLAGS = -O3
CXXFLAGS = -O3
Expand Down
2 changes: 1 addition & 1 deletion extension_config_local.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ duckdb_extension_load(tpch)
duckdb_extension_load(tpcds)
duckdb_extension_load(substrait
GIT_URL https://github.com/substrait-io/duckdb-substrait-extension
GIT_TAG a1b341cc3df16c55535c12acce375040ffe50347
GIT_TAG e1714242cae21f6a803bca9c4f672878f443faf6
)
duckdb_extension_load(iceberg
GIT_URL https://github.com/duckdb/duckdb-iceberg
Expand Down
3 changes: 1 addition & 2 deletions extensions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"testing"
)


func TestExtensions(t *testing.T) {
t.Parallel()

Expand All @@ -26,7 +25,7 @@ func TestExtensions(t *testing.T) {
)
res := db.QueryRow("call get_substrait('select 1')")
require.NoError(t, res.Scan(&substrait))
require.Equal(t, "\x1a\x1b\x12\x19\n\x14:\x12\x12\n\n\b*\x06\n\x04\n\x02(*\x1a\x04\n\x02(\x01\x12\x0112\n\x105*\x06DuckDB", substrait)
require.Equal(t, "\x1a\"\x12 \n\x1b:\x19\n\x05\x12\x03\n\x01\x01\x12\n\n\b*\x06\n\x04\n\x02(*\x1a\x04\n\x02(\x01\x12\x0112\n\x105*\x06DuckDB", substrait)
res = db.QueryRow("call load_aws_credentials('foo')")
require.NoError(t, res.Scan(&ak, &sk, &st, &r))
// dont check the actual values, just check that there is no error
Expand Down
Loading