Skip to content

Commit

Permalink
Update src/main/cpp/src/hive_hash.cu
Browse files Browse the repository at this point in the history
Co-authored-by: Nghia Truong <[email protected]>
  • Loading branch information
ustcfy and ttnghia authored Nov 22, 2024
1 parent ae903f0 commit eb63abc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/cpp/src/hive_hash.cu
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,7 @@ std::unique_ptr<cudf::column> hive_hash(cudf::table_view const& input,
// Return early if there's nothing to hash
if (input.num_columns() == 0 || input.num_rows() == 0) { return output; }

// Nested depth cannot exceed 8
constexpr int max_nested_depth = 8;
constexpr int MAX_NESTED_DEPTH = 8;
check_nested_depth(input, max_nested_depth);

bool const nullable = has_nested_nulls(input);
Expand Down

0 comments on commit eb63abc

Please sign in to comment.