Skip to content

Commit 07c0a72

Browse files
committed
Style
1 parent 8a8170d commit 07c0a72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Storages/System/IStorageSystemOneBlock.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ void IStorageSystemOneBlock::read(
8080

8181
void ReadFromSystemOneBlock::initializePipeline(QueryPipelineBuilder & pipeline, const BuildQueryPipelineSettings &)
8282
{
83-
const auto & sample_block = getOutputStream().header;
83+
const Block & sample_block = getOutputStream().header;
8484
MutableColumns res_columns = sample_block.cloneEmptyColumns();
85-
auto predicate = filter ? filter->getOutputs().at(0) : nullptr;
85+
const ActionsDAG::Node * predicate = filter ? filter->getOutputs().at(0) : nullptr;
8686
storage->fillData(res_columns, context, predicate, std::move(columns_mask));
8787

8888
UInt64 num_rows = res_columns.at(0)->size();

0 commit comments

Comments
 (0)