Skip to content

Commit 48ef7dc

Browse files
committed
1 parent d2aa545 commit 48ef7dc

File tree

13 files changed

+1452
-355
lines changed

13 files changed

+1452
-355
lines changed

.github/workflows/rust.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
name: Download duckdb
4242
with:
4343
repository: "duckdb/duckdb"
44-
tag: "v1.3.2"
44+
tag: "v1.4.0"
4545
fileName: ${{ matrix.duckdb }}
4646
out-file-path: .
4747

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = [
77
]
88

99
[workspace.package]
10-
version = "1.3.2"
10+
version = "1.4.0"
1111
authors = ["wangfenjin <[email protected]>"]
1212
repository = "https://github.com/duckdb/duckdb-rs"
1313
homepage = "https://github.com/duckdb/duckdb-rs"
@@ -20,9 +20,9 @@ edition = "2021"
2020
rust-version = "1.82.0"
2121

2222
[workspace.dependencies]
23-
duckdb = { version = "=1.3.2", path = "crates/duckdb" }
24-
duckdb-loadable-macros = { version = "=0.1.9", path = "crates/duckdb-loadable-macros" }
25-
libduckdb-sys = { version = "=1.3.2", path = "crates/libduckdb-sys" }
23+
duckdb = { version = "=1.4.0", path = "crates/duckdb" }
24+
duckdb-loadable-macros = { version = "=0.1.10", path = "crates/duckdb-loadable-macros" }
25+
libduckdb-sys = { version = "=1.4.0", path = "crates/libduckdb-sys" }
2626

2727
arrow = { version = "56", default-features = false }
2828
bindgen = { version = "0.71.1", default-features = false }

crates/duckdb-loadable-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckdb-loadable-macros"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
authors = { workspace = true }
55
license = { workspace = true }
66
repository = { workspace = true }

crates/duckdb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckdb"
3-
version = "1.3.2"
3+
version = "1.4.0"
44
authors = { workspace = true }
55
repository = { workspace = true }
66
homepage = { workspace = true }

crates/duckdb/src/appender/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ mod test {
325325
Err(Error::DuckDBFailure(_, Some(msg))) => {
326326
assert_eq!(
327327
msg,
328-
"Violates foreign key constraint because key \"id: 999\" does not exist in the referenced table"
328+
"Failed to append: Violates foreign key constraint because key \"id: 999\" does not exist in the referenced table"
329329
);
330330
}
331331
Err(e) => panic!("Expected foreign key constraint error, got: {e:?}"),

crates/duckdb/src/test_all_types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ fn test_large_arrow_types() -> crate::Result<()> {
2020
}
2121

2222
fn test_with_database(database: &Connection) -> crate::Result<()> {
23-
// uhugeint, time_tz, varint, and dec38_10 aren't supported in the duckdb arrow layer
24-
let excluded = ["uhugeint", "time_tz", "dec38_10", "varint"];
23+
// These aren't supported in the DuckDB Arrow layer
24+
let excluded = ["uhugeint", "time_tz", "dec38_10", "bignum"];
2525

2626
let mut binding = database.prepare(&format!(
2727
"SELECT * EXCLUDE ({}) FROM test_all_types()",

crates/libduckdb-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libduckdb-sys"
3-
version = "1.3.2"
3+
version = "1.4.0"
44
authors = { workspace = true }
55
license = { workspace = true }
66
repository = { workspace = true }
Submodule duckdb-sources updated 3343 files

crates/libduckdb-sys/duckdb.tar.gz

248 KB
Binary file not shown.

0 commit comments

Comments
 (0)