File tree Expand file tree Collapse file tree
src/paimon/core/operation/commit Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ();
You can’t perform that action at this time.
0 commit comments