This commit is contained in:
JackyWoo 2024-09-13 15:40:25 +08:00
parent 620387fc5c
commit 65b156b352

View File

@ -96,8 +96,8 @@ class Statistics
{ {
public: public:
explicit Statistics() : total_row_count(0) { } explicit Statistics() : total_row_count(0) { }
explicit Statistics(Float64 total_row_count_) : total_row_count(total_row_count_) { } explicit Statistics(UInt64 total_row_count_) : total_row_count(total_row_count_) { }
explicit Statistics(Float64 total_row_count_, const std::unordered_map<String, ColumnStatisticsPtr> & column_stats_) explicit Statistics(UInt64 total_row_count_, const std::unordered_map<String, ColumnStatisticsPtr> & column_stats_)
: total_row_count(total_row_count_) : total_row_count(total_row_count_)
, column_stats(column_stats_) , column_stats(column_stats_)
{ {