Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
codereport committed Feb 24, 2021
1 parent d07c35f commit 0f528de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/binaryop/binaryop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ std::unique_ptr<column> binary_operation(column_view const& lhs,
return binops::compiled::binary_operation(lhs, rhs, op, output_type.value(), stream, mr);

// Check for datatype
CUDF_EXPECTS(is_fixed_width(type), "Invalid/Unsupported output datatype");
CUDF_EXPECTS(is_fixed_width(output_type.value()), "Invalid/Unsupported output datatype");
CUDF_EXPECTS(is_fixed_width(lhs.type()), "Invalid/Unsupported lhs datatype");
CUDF_EXPECTS(is_fixed_width(rhs.type()), "Invalid/Unsupported rhs datatype");

Expand Down

0 comments on commit 0f528de

Please sign in to comment.