Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
PERF : modify SMJ shuffle file reader to skip validation
  • Loading branch information
getChan committed May 5, 2025
commit 11bf46e48acf8d15415e00ace2fb79089e7b88a8
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/joins/sort_merge_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2313,7 +2313,7 @@ fn fetch_right_columns_from_batch_by_idxs(
Vec::with_capacity(buffered_indices.len());

let file = BufReader::new(File::open(spill_file.path())?);
let reader = StreamReader::try_new(file, None)?;
let reader = unsafe {StreamReader::try_new(file, None)?.with_skip_validation(true)};

for batch in reader {
batch?.columns().iter().for_each(|column| {
Expand Down
Loading