mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
Add const to trying to fix build
This commit is contained in:
parent
58f720e24c
commit
99f02e0f6b
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user