mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
dbms: improved performance of filtering [#METR-2944].
This commit is contained in:
parent
cdf4e8d415
commit
435394242c
@ -88,6 +88,15 @@ Block FilterBlockInputStream::readImpl()
|
||||
if (filtered_rows == 0)
|
||||
continue;
|
||||
|
||||
/// Если через фильтр проходят все строчки.
|
||||
if (filtered_rows == filter.size())
|
||||
{
|
||||
/// Заменим столбец с фильтром на константу.
|
||||
res.getByPosition(filter_column).column = new ColumnConstUInt8(filtered_rows, 1);
|
||||
/// Остальные столбцы трогать не нужно.
|
||||
return res;
|
||||
}
|
||||
|
||||
/// Фильтруем остальные столбцы.
|
||||
for (size_t i = 0; i < columns; ++i)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user