Skip to content

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pmattione-nvidia committed Oct 24, 2024
1 parent d914303 commit 4576f89
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cpp/src/io/parquet/page_hdr.cu
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,9 @@ __device__ decode_kernel_mask kernel_mask_for_page(PageInfo const& page,
// check for string before byte_stream_split so FLBA will go to the right kernel
return decode_kernel_mask::STRING;
} else if (is_boolean(chunk)) {
return is_list(chunk) ? decode_kernel_mask::BOOLEAN_LIST
: is_nested(chunk) ? decode_kernel_mask::BOOLEAN_NESTED : decode_kernel_mask::BOOLEAN;
return is_list(chunk) ? decode_kernel_mask::BOOLEAN_LIST
: is_nested(chunk) ? decode_kernel_mask::BOOLEAN_NESTED
: decode_kernel_mask::BOOLEAN;
}

if (!is_byte_array(chunk)) {
Expand Down

0 comments on commit 4576f89

Please sign in to comment.