This commit is contained in:
Nikita Vasilev 2019-03-09 18:26:52 +03:00
parent b9d258dc99
commit 7f281327d9
2 changed files with 3 additions and 3 deletions

View File

@ -169,14 +169,14 @@ void MergeTreeSetIndexAggregator::update(const Block & block, size_t * pos, size
template <typename Method>
bool MergeTreeSetIndexAggregator::buildFilter(
Method & method,
const ColumnRawPtrs & columns,
const ColumnRawPtrs & column_ptrs,
IColumn::Filter & filter,
size_t pos,
size_t limit,
ClearableSetVariants & variants) const
{
/// Like DistinctSortedBlockInputStream.
typename Method::State state(columns, key_sizes, nullptr);
typename Method::State state(column_ptrs, key_sizes, nullptr);
bool has_new_data = false;
for (size_t i = 0; i < limit; ++i)

View File

@ -49,7 +49,7 @@ private:
template <typename Method>
bool buildFilter(
Method & method,
const ColumnRawPtrs & key_columns,
const ColumnRawPtrs & column_ptrs,
IColumn::Filter & filter,
size_t pos,
size_t limit,