Skip to content

Commit 0299e31

Browse files
committed
feat(silo): fix assert call types
1 parent 2a081e7 commit 0299e31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/silo/query_engine/actions/action.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ arrow::Result<arrow::acero::ExecNode*> Action::addZstdDecompressNode(
511511
"additional sink node to help backpressure application before zstd decompression"
512512
);
513513

514-
SILO_ASSERT_GT(sum_of_reference_genome_sizes, 0);
514+
SILO_ASSERT_GT(sum_of_reference_genome_sizes, 0u);
515515

516516
// We aim for 64 MB batch size to give the plan time to apply backpressure
517517
size_t maximum_batch_size = std::max(common::S_64_MB / sum_of_reference_genome_sizes, 1UL);

0 commit comments

Comments
 (0)