Skip to content

Commit

Permalink
Fix renaming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ttnghia committed May 18, 2022
1 parent 7e69d3b commit c51b053
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/table/row_operators.cu
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,9 @@ two_table_comparator::two_table_comparator(table_view const& left,
table_view const& right,
rmm::cuda_stream_view stream)
: d_left_table{preprocessed_table::create(left, stream)},
d_right_table{preprocessed_table::create(rhs, stream)}
d_right_table{preprocessed_table::create(right, stream)}
{
check_shape_compatibility(left, rhs);
check_shape_compatibility(left, right);
}

} // namespace equality
Expand Down

0 comments on commit c51b053

Please sign in to comment.