Skip to content

Commit 71a696f

Browse files
committed
minor
1 parent 4c51495 commit 71a696f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/iceberg/src/transaction/rewrite_files.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ impl SnapshotValidator for RewriteFilesOperation {
222222
// todo add use_starting_seq_number to determine if we want to use data_sequence_number
223223
// If there are replaced data files, there cannot be any new row-level deletes for those data files
224224
if !self.deleted_data_files.is_empty() {
225-
self.validate_no_new_delete_files_for_data_files(
225+
self.validate_no_new_deletes_for_data_files(
226226
base,
227227
self.starting_snapshot_id,
228228
parent_snapshot_id,

crates/iceberg/src/transaction/validate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ pub(crate) trait SnapshotValidator {
149149
/// # Errors
150150
///
151151
/// Returns an error if new delete files are found for any of the data files
152-
async fn validate_no_new_delete_files_for_data_files(
152+
async fn validate_no_new_deletes_for_data_files(
153153
&self,
154154
base: &Table,
155155
from_snapshot_id: Option<i64>,

0 commit comments

Comments
 (0)