This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 3b555f017 chore(rust): bump rust-toolchain from nightly-2026-08-18 to
nightly-2026-08-25 (#4720)
3b555f017 is described below
commit 3b555f0178855a21548be8c33ee2922a71f56e95
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Aug 26 18:39:55 2026 -0700
chore(rust): bump rust-toolchain from nightly-2026-08-18 to
nightly-2026-08-25 (#4720)
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Li <[email protected]>
---
ci/rust-nightly/rust-toolchain.toml | 2 +-
rust/ffi/src/types.rs | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/ci/rust-nightly/rust-toolchain.toml
b/ci/rust-nightly/rust-toolchain.toml
index 606e515c2..ae2db21b3 100644
--- a/ci/rust-nightly/rust-toolchain.toml
+++ b/ci/rust-nightly/rust-toolchain.toml
@@ -16,6 +16,6 @@
# under the License.
[toolchain]
-channel = "nightly-2026-08-18"
+channel = "nightly-2026-08-25"
profile = "minimal"
components = ["clippy"]
diff --git a/rust/ffi/src/types.rs b/rust/ffi/src/types.rs
index 01f27e0a2..b9cad8f64 100644
--- a/rust/ffi/src/types.rs
+++ b/rust/ffi/src/types.rs
@@ -283,6 +283,7 @@ unsafe extern "C" fn release_ffi_partitions(partitions:
*mut FFI_AdbcPartitions)
// Finally, C should call the release function only once.
let private_data = Box::from_raw(partitions.private_data as *mut
PartitionsPrivateData);
+ #[allow(clippy::needless_range_loop)]
for p in 0..partitions.num_partitions {
let partition_ptr = *partitions.partitions.add(p);
let partition_len = *partitions.partition_lengths.add(p);