Merge pull request #2307 from ilyshnikova/master

Without std::move
This commit is contained in:
alexey-milovidov 2018-05-01 12:32:37 -07:00 committed by GitHub
commit 81161be755
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ void FunctionProject::executeImpl(Block & block, const ColumnNumbers & arguments
}
else
{
block.getByPosition(result).column = std::move(data_column->cloneEmpty());
block.getByPosition(result).column = data_column->cloneEmpty();
}
}
else