Whitespaces [#CLICKHOUSE-4016]

This commit is contained in:
Alexey Milovidov 2018-10-14 11:23:21 +03:00
parent c53f38260f
commit 50234013b5

View File

@ -691,10 +691,10 @@ static void getLimitLengthAndOffset(ASTSelectQuery & query, size_t & length, siz
}
}
void InterpreterSelectQuery::executeFetchColumns(
QueryProcessingStage::Enum processing_stage, Pipeline & pipeline, const PrewhereInfoPtr & prewhere_info)
{
const Settings & settings = context.getSettingsRef();
/// Actions to calculate ALIAS if required.
@ -822,7 +822,6 @@ void InterpreterSelectQuery::executeFetchColumns(
}
}
/// Limitation on the number of columns to read.
/// It's not applied in 'only_analyze' mode, because the query could be analyzed without removal of unnecessary columns.
if (!only_analyze && settings.max_columns_to_read && required_columns.size() > settings.max_columns_to_read)