From b203ea10ac82d94f33ad9042b9570d46277cd51d Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Fri, 14 Jun 2024 10:19:55 -0700 Subject: [PATCH] pre-commit --- cpp/src/stream_compaction/distinct_count.cu | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cpp/src/stream_compaction/distinct_count.cu b/cpp/src/stream_compaction/distinct_count.cu index d6a2d5d3b93..99ca89cc021 100644 --- a/cpp/src/stream_compaction/distinct_count.cu +++ b/cpp/src/stream_compaction/distinct_count.cu @@ -189,7 +189,9 @@ cudf::size_type distinct_count(column_view const& input, { if (0 == input.size()) { return 0; } - if (input.null_count() == input.size()) { return static_cast(null_handling == null_policy::INCLUDE); } + if (input.null_count() == input.size()) { + return static_cast(null_handling == null_policy::INCLUDE); + } auto count = detail::distinct_count(table_view{{input}}, null_equality::EQUAL, stream);