Skip to content

Commit c945b03

Browse files
authored
Make test join_with_hash_collision deterministic (#229)
1 parent 23d02bb commit c945b03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/src/physical_plan/hash_join.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1381,7 +1381,7 @@ mod tests {
13811381
("y", &vec![200, 300]),
13821382
);
13831383

1384-
let random_state = RandomState::new();
1384+
let random_state = RandomState::with_seeds(0, 0, 0, 0);
13851385
let hashes_buff = &mut vec![0; left.num_rows()];
13861386
let hashes =
13871387
create_hashes(&[left.columns()[0].clone()], &random_state, hashes_buff)?;

0 commit comments

Comments
 (0)