Skip to content

Commit fbae5e1

Browse files
authored
Merge pull request #16 from lidavidm/dev
chore: use adbc 0.22.0 to pick up Windows build fix
2 parents 9346f30 + d32075c commit fbae5e1

File tree

3 files changed

+33
-41
lines changed

3 files changed

+33
-41
lines changed

Cargo.lock

Lines changed: 29 additions & 16 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
@@ -51,8 +51,8 @@ aws-lc-rs = "1"
5151
base64 = "0.22"
5252

5353
# ADBC core traits (optional, for FFI export)
54-
adbc_core = { version = "0.21.0", optional = true }
55-
adbc_ffi = { version = "0.21.0", optional = true }
54+
adbc_core = { version = "0.22.0", optional = true }
55+
adbc_ffi = { version = "0.22.0", optional = true }
5656

5757
# TLS certificate generation for secure import/export
5858
rcgen = "0.13"
@@ -89,8 +89,8 @@ polars = { version = "0.46", features = ["lazy", "ipc_streaming", "dtype-decimal
8989
# Mocking for tests
9090
mockall = "0.14.0"
9191
# ADBC driver manager and core for integration testing
92-
adbc_driver_manager = "0.21"
93-
adbc_core = "0.21"
92+
adbc_driver_manager = "0.22"
93+
adbc_core = "0.22"
9494
tempfile = "3.24.0"
9595
# Environment variable loading for examples
9696
dotenvy = "0.15"

tests/driver_manager_tests.rs

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -134,27 +134,6 @@ fn test_driver_manager_loads_driver() {
134134
}
135135
}
136136

137-
/// Test that loading with an incorrect entry point fails gracefully.
138-
#[test]
139-
140-
fn test_driver_manager_wrong_entry_point_fails() {
141-
skip_if_no_library!();
142-
143-
let lib_path = get_library_path();
144-
145-
// Try to load with wrong entry point
146-
let driver_result = ManagedDriver::load_dynamic_from_filename(
147-
lib_path,
148-
Some(b"NonExistentDriverInit"),
149-
AdbcVersion::V110,
150-
);
151-
152-
assert!(
153-
driver_result.is_err(),
154-
"Loading with wrong entry point should fail"
155-
);
156-
}
157-
158137
// Section 10.4: Database Creation Tests
159138

160139
/// Test creating a database via the driver manager.

0 commit comments

Comments
 (0)