dbms: better [#METR-19266]

This commit is contained in:
Alexey Arno 2016-08-11 03:39:12 +03:00
parent 87f330627e
commit 828012c077
2 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@ protected:
/// Returns the copy of a given block in which each column specified in
/// the "arguments" parameter is replaced with its respective nested
/// column if it is nullable.
static Block extractNonNullableBlock(const Block & block, const ColumnNumbers args);
static Block extractNonNullableBlock(const Block & block, ColumnNumbers args);
private:
/// Internal method used for implementing both the execute() methods.

View File

@ -200,7 +200,7 @@ void IFunction::getLambdaArgumentTypes(DataTypes & arguments) const
/// Return a copy of a given block in which the specified columns are replaced by
/// their respective nested columns if they are nullable.
Block IFunction::extractNonNullableBlock(const Block & block, const ColumnNumbers args)
Block IFunction::extractNonNullableBlock(const Block & block, ColumnNumbers args)
{
std::sort(args.begin(), args.end());