Skip to content

Commit 6dfc060

Browse files
committed
fix
1 parent 12f95c5 commit 6dfc060

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/paimon/core/operation/commit/conflict_detection.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -382,16 +382,17 @@ Status ConflictDetection::CheckRowIdRangeConflicts(
382382
}
383383
}
384384

385-
PAIMON_ASSIGN_OR_RAISE(bool all_data_ranges_same, range_helper.AreAllRangesSame(data_files));
385+
PAIMON_ASSIGN_OR_RAISE(bool all_data_ranges_same,
386+
range_helper.AreAllRangesSame(data_files));
386387
if (!all_data_ranges_same) {
387388
return Status::Invalid(
388389
"For Data Evolution table, multiple MERGE INTO/COMPACT operations have "
389390
"encountered row-id range conflicts.");
390391
}
391392
}
392393

393-
// TODO(yonghao.fyh): release-1.4 parity keeps dedicated-storage row-id containment unchecked here.
394-
// Consider adding a strict-mode validation that each dedicated-file range is fully
394+
// TODO(yonghao.fyh): release-1.4 parity keeps dedicated-storage row-id containment unchecked
395+
// here. Consider adding a strict-mode validation that each dedicated-file range is fully
395396
// covered by one data-file range to catch dangling/cross-file mappings.
396397

397398
return Status::OK();

0 commit comments

Comments
 (0)