From 4b1881031bfbafac8847c95da3f481194ae72f69 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 04:10:39 +0000 Subject: [PATCH 1/2] Bump smallvec from 2.0.0-alpha.11 to 2.0.0-alpha.12 Bumps [smallvec](https://github.com/servo/rust-smallvec) from 2.0.0-alpha.11 to 2.0.0-alpha.12. - [Release notes](https://github.com/servo/rust-smallvec/releases) - [Commits](https://github.com/servo/rust-smallvec/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) --- updated-dependencies: - dependency-name: smallvec dependency-version: 2.0.0-alpha.12 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b245d1dcf..ff698e518 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1190,7 +1190,7 @@ dependencies = [ "once_cell", "paste", "rand", - "smallvec 2.0.0-alpha.11", + "smallvec 2.0.0-alpha.12", "tokio", "transpose", "unchecked-index", @@ -1267,7 +1267,7 @@ dependencies = [ "paste", "procfs", "rand", - "smallvec 2.0.0-alpha.11", + "smallvec 2.0.0-alpha.12", "tokio", "unchecked-index", ] @@ -3743,9 +3743,9 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "smallvec" -version = "2.0.0-alpha.11" +version = "2.0.0-alpha.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87b96efa4bd6bdd2ff0c6615cc36fc4970cbae63cfd46ddff5cee35a1b4df570" +checksum = "ef784004ca8777809dcdad6ac37629f0a97caee4c685fcea805278d81dd8b857" [[package]] name = "snafu" diff --git a/Cargo.toml b/Cargo.toml index 7a7efd297..05871cfc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -101,7 +101,7 @@ paste = "1.0.15" procfs = "0.18.0" prost = "0.14.1" rand = "0.9.2" -smallvec = "2.0.0-alpha.11" +smallvec = "2.0.0-alpha.12" sonic-rs = "0.5.6" tempfile = "3" tokio = "1.48.0" From 3edd2ed75b2b3d1540f7503b9c9706ea96d3487b Mon Sep 17 00:00:00 2001 From: cxzl25 <3898450+cxzl25@users.noreply.github.com> Date: Mon, 1 Dec 2025 08:14:33 +0000 Subject: [PATCH 2/2] from --- native-engine/datafusion-ext-plans/src/agg/agg_hash_map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-engine/datafusion-ext-plans/src/agg/agg_hash_map.rs b/native-engine/datafusion-ext-plans/src/agg/agg_hash_map.rs index 5da668486..d8656832a 100644 --- a/native-engine/datafusion-ext-plans/src/agg/agg_hash_map.rs +++ b/native-engine/datafusion-ext-plans/src/agg/agg_hash_map.rs @@ -179,7 +179,7 @@ impl AggHashMapKey for &[u8] { } fn into_owned(self) -> OwnedKey { - OwnedKey::from_slice(self) + OwnedKey::from(self) } }