Skip to content

Commit df93942

Browse files
authored
feat: Update DuckDB to 1.4.4 (#540)
1 parent f8b5137 commit df93942

16 files changed

+147
-21
lines changed

Cargo.lock

Lines changed: 128 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ datafusion-proto = { version = "51" }
4747
datafusion-physical-expr = { version = "51" }
4848
datafusion-physical-plan = { version = "51" }
4949
datafusion-table-providers = { path = "core" }
50-
duckdb = { git = "https://github.com/spiceai/duckdb-rs.git", rev = "a14c73d9" } # Forked to add support for duckdb_scan_arrow, pending: https://github.com/duckdb/duckdb-rs/pull/488
50+
duckdb = { git = "https://github.com/spiceai/duckdb-rs.git", rev = "f4096c7592ed46b9e68755a49252d69783dece96" } # Forked to add support for duckdb_scan_arrow, pending: https://github.com/duckdb/duckdb-rs/pull/488
5151
adbc_core = { version = "0.21.0" }
5252
adbc_driver_manager = { version = "0.21.0" }
5353
parquet = "57"
@@ -73,7 +73,10 @@ rand = "0.9"
7373
regex = "1"
7474
uuid = "1.9.1"
7575
prost = "0.14.1"
76-
tonic = { version = "0.14", features = ["tls-native-roots", "tls-webpki-roots"] }
76+
tonic = { version = "0.14", features = [
77+
"tls-native-roots",
78+
"tls-webpki-roots",
79+
] }
7780
bytes = "1.7.1"
7881
base64 = "0.22.1"
7982
dashmap = "6.1.0"

core/src/duckdb/snapshots/datafusion_table_providers__duckdb__creator__tests__explain_analyze_0.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ EXPLAIN ANALYZE SELECT * FROM test_table WHERE id = 1
2929
__data_test_table_redacted
3030
redacted
3131
│ │
32-
Type: Sequential Scan
32+
Type: Index Scan
3333
│ │
3434
Projections: │
3535
name

core/src/duckdb/snapshots/datafusion_table_providers__duckdb__creator__tests__explain_analyze_1.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ EXPLAIN ANALYZE SELECT name FROM test_table WHERE id = 1
2929
__data_test_table_redacted
3030
redacted
3131
│ │
32-
Type: Sequential Scan
32+
Type: Index Scan
3333
Projections: name
3434
Filters: id=1
3535
│ │

core/src/duckdb/snapshots/datafusion_table_providers__duckdb__creator__tests__explain_analyze_multiple_indexes_0.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ EXPLAIN ANALYZE SELECT * FROM test_table WHERE id = 1
2929
__data_test_table_redacted
3030
redacted
3131
│ │
32-
Type: Sequential Scan
32+
Type: Index Scan
3333
│ │
3434
Projections: │
3535
name

core/src/duckdb/snapshots/datafusion_table_providers__duckdb__creator__tests__explain_analyze_multiple_indexes_1.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ EXPLAIN ANALYZE SELECT name FROM test_table WHERE id = 1
2929
__data_test_table_redacted
3030
redacted
3131
│ │
32-
Type: Sequential Scan
32+
Type: Index Scan
3333
Projections: name
3434
Filters: id=1
3535
│ │

core/src/duckdb/snapshots/datafusion_table_providers__duckdb__creator__tests__explain_analyze_multiple_indexes_2.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ EXPLAIN ANALYZE SELECT name, status FROM test_table WHERE id = 1
2929
__data_test_table_redacted
3030
redacted
3131
│ │
32-
Type: Sequential Scan
32+
Type: Index Scan
3333
│ │
3434
Projections: │
3535
name

core/src/duckdb/snapshots/datafusion_table_providers__duckdb__creator__tests__explain_analyze_multiple_indexes_3.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ EXPLAIN ANALYZE SELECT * FROM test_table WHERE age = 30
2929
__data_test_table_redacted
3030
redacted
3131
│ │
32-
Type: Sequential Scan
32+
Type: Index Scan
3333
│ │
3434
Projections: │
3535
name

core/src/duckdb/snapshots/datafusion_table_providers__duckdb__creator__tests__explain_analyze_multiple_indexes_4.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ EXPLAIN ANALYZE SELECT name FROM test_table WHERE age = 30
2929
__data_test_table_redacted
3030
redacted
3131
│ │
32-
Type: Sequential Scan
32+
Type: Index Scan
3333
Projections: name
3434
Filters: age=30
3535
│ │

core/src/duckdb/snapshots/datafusion_table_providers__duckdb__creator__tests__explain_analyze_multiple_indexes_5.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ EXPLAIN ANALYZE SELECT id, name FROM test_table WHERE age = 30
3838
__data_test_table_redacted
3939
redacted
4040
│ │
41-
Type: Sequential Scan
41+
Type: Index Scan
4242
│ │
4343
Projections: │
4444
name

0 commit comments

Comments
 (0)