Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix hash join when the input tables have nulls on only one side #13120

Merged
merged 22 commits into from
Apr 13, 2023
Merged
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
Prev Previous commit
Next Next commit
Fix benchmark code
  • Loading branch information
ttnghia committed Apr 13, 2023
commit 8ff3d64a594de70328a0b6349b5ddd8fedbde5e7
6 changes: 3 additions & 3 deletions cpp/benchmarks/join/join.cu
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void nvbench_inner_join(nvbench::state& state,
cudf::has_nested_nulls(left_input) || cudf::has_nested_nulls(right_input),
compare_nulls,
stream);
return hj_obj.inner_join(right_input, std::nullopt, stream);
return hj_obj.inner_join(right_input, stream);
};

BM_join<key_type, payload_type, Nullable>(state, join);
Expand All @@ -53,7 +53,7 @@ void nvbench_left_join(nvbench::state& state,
cudf::has_nested_nulls(left_input) || cudf::has_nested_nulls(right_input),
compare_nulls,
stream);
return hj_obj.left_join(right_input, std::nullopt, stream);
return hj_obj.left_join(right_input, stream);
};

BM_join<key_type, payload_type, Nullable>(state, join);
Expand All @@ -74,7 +74,7 @@ void nvbench_full_join(nvbench::state& state,
cudf::has_nested_nulls(left_input) || cudf::has_nested_nulls(right_input),
compare_nulls,
stream);
return hj_obj.full_join(right_input, std::nullopt, stream);
return hj_obj.full_join(right_input, stream);
};

BM_join<key_type, payload_type, Nullable>(state, join);
Expand Down