From 65b156b352bcf641540ec836f73298fb05230403 Mon Sep 17 00:00:00 2001 From: JackyWoo Date: Fri, 13 Sep 2024 15:40:25 +0800 Subject: [PATCH] Fix test --- src/Storages/Statistics/Statistics.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Storages/Statistics/Statistics.h b/src/Storages/Statistics/Statistics.h index 04492e0bfe0..b8483a41290 100644 --- a/src/Storages/Statistics/Statistics.h +++ b/src/Storages/Statistics/Statistics.h @@ -96,8 +96,8 @@ class Statistics { public: explicit Statistics() : total_row_count(0) { } - explicit Statistics(Float64 total_row_count_) : total_row_count(total_row_count_) { } - explicit Statistics(Float64 total_row_count_, const std::unordered_map & column_stats_) + explicit Statistics(UInt64 total_row_count_) : total_row_count(total_row_count_) { } + explicit Statistics(UInt64 total_row_count_, const std::unordered_map & column_stats_) : total_row_count(total_row_count_) , column_stats(column_stats_) {