Add const to trying to fix build

This commit is contained in:
Dmitry Kardymon 2023-07-04 22:06:17 +03:00
parent 58f720e24c
commit 99f02e0f6b

View File

@ -414,7 +414,7 @@ private:
if (arguments.size() == 1)
{
throwIfNullValue(arguments[0]);
auto * col = arguments[0].column.get();
const auto * col = arguments[0].column.get();
if (arguments[0].type->isNullable())
{
const auto * nullable = checkAndGetColumn<ColumnNullable>(*arguments[0].column);