Update HiveFile.h

This commit is contained in:
李扬 2022-03-23 21:57:58 +08:00 committed by GitHub
parent 68d5b538aa
commit 9cc528b01f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -156,7 +156,8 @@ protected:
NamesAndTypesList index_names_and_types; NamesAndTypesList index_names_and_types;
MinMaxIndexPtr minmax_idx; MinMaxIndexPtr minmax_idx;
std::vector<MinMaxIndexPtr> sub_minmax_idxes; std::vector<MinMaxIndexPtr> sub_minmax_idxes;
std::set<int> skip_splits; // skip splits for this file after applying minmax index (if any) /// Skip splits for this file after applying minmax index (if any)
std::set<int> skip_splits;
std::shared_ptr<HiveSettings> storage_settings; std::shared_ptr<HiveSettings> storage_settings;
}; };