Make MergeTreeSetIndex::checkInRange const.

This commit is contained in:
Nikolai Kochetov 2020-07-21 14:22:45 +03:00
parent 62a2f9819e
commit 755f15def3

View File

@ -346,7 +346,7 @@ private:
Range range; Range range;
size_t key_column = 0; size_t key_column = 0;
/// For FUNCTION_IN_SET, FUNCTION_NOT_IN_SET /// For FUNCTION_IN_SET, FUNCTION_NOT_IN_SET
using MergeTreeSetIndexPtr = std::shared_ptr<MergeTreeSetIndex>; using MergeTreeSetIndexPtr = std::shared_ptr<const MergeTreeSetIndex>;
MergeTreeSetIndexPtr set_index; MergeTreeSetIndexPtr set_index;
MonotonicFunctionsChain monotonic_functions_chain; MonotonicFunctionsChain monotonic_functions_chain;