This commit is contained in:
Raúl Marín 2024-05-23 11:23:23 +02:00
parent 72604ab940
commit a64ce7de69

View File

@ -263,7 +263,7 @@ void maskedExecute(ColumnWithTypeAndName & column, const PaddedPODArray<UInt8> &
/// If mask contains only zeros, we can just create a column with default values as it will be ignored
auto result_type = column_function->getResultType();
auto default_column = result_type->createColumnConstWithDefaultValue(original_size)->convertToFullColumnIfConst();
column = {std::move(default_column), result_type, ""};
column = {default_column, result_type, ""};
}
else if (mask_info.has_zeros)
{