We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b390f3 commit a2b0314Copy full SHA for a2b0314
2 files changed
.github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
24
- name: Install minimal nightly with clippy and rustfmt
25
uses: dtolnay/rust-toolchain@master
26
with:
27
- toolchain: nightly
+ toolchain: nightly-2025-01-23
28
components: rustfmt, clippy
29
30
- name: Install tool for formatting Cargo.toml files
src/delta_destination.rs
@@ -441,7 +441,7 @@ pub async fn record_batches_to_delta(
441
.await?;
442
443
let delta_schema = deltalake::kernel::Schema::try_from(schema)?;
444
- let table_name = target_url.path_segments().unwrap().last().unwrap();
+ let table_name = target_url.path_segments().unwrap().next_back().unwrap();
445
446
let table = CreateBuilder::new()
447
.with_log_store(log_store.clone())
0 commit comments