mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
fix typo
This commit is contained in:
parent
03d4c352ec
commit
2a56dd075f
@ -1024,7 +1024,7 @@ void FunctionArrayUniq::executeImpl(Block & block, const ColumnNumbers & argumen
|
|||||||
if (i == 0)
|
if (i == 0)
|
||||||
offsets = &offsets_i;
|
offsets = &offsets_i;
|
||||||
else if (offsets_i != *offsets)
|
else if (offsets_i != *offsets)
|
||||||
throw Exception("Lengths of all arrays passsed to " + getName() + " must be equal.",
|
throw Exception("Lengths of all arrays passed to " + getName() + " must be equal.",
|
||||||
ErrorCodes::SIZES_OF_ARRAYS_DOESNT_MATCH);
|
ErrorCodes::SIZES_OF_ARRAYS_DOESNT_MATCH);
|
||||||
|
|
||||||
data_columns[i] = &array->getData();
|
data_columns[i] = &array->getData();
|
||||||
@ -1331,7 +1331,7 @@ void FunctionArrayEnumerateUniq::executeImpl(Block & block, const ColumnNumbers
|
|||||||
if (i == 0)
|
if (i == 0)
|
||||||
offsets = &offsets_i;
|
offsets = &offsets_i;
|
||||||
else if (offsets_i != *offsets)
|
else if (offsets_i != *offsets)
|
||||||
throw Exception("Lengths of all arrays passsed to " + getName() + " must be equal.",
|
throw Exception("Lengths of all arrays passed to " + getName() + " must be equal.",
|
||||||
ErrorCodes::SIZES_OF_ARRAYS_DOESNT_MATCH);
|
ErrorCodes::SIZES_OF_ARRAYS_DOESNT_MATCH);
|
||||||
|
|
||||||
data_columns[i] = &array->getData();
|
data_columns[i] = &array->getData();
|
||||||
@ -2442,7 +2442,7 @@ void FunctionArrayReduce::executeImpl(Block & block, const ColumnNumbers & argum
|
|||||||
if (i == 0)
|
if (i == 0)
|
||||||
offsets = offsets_i;
|
offsets = offsets_i;
|
||||||
else if (*offsets_i != *offsets)
|
else if (*offsets_i != *offsets)
|
||||||
throw Exception("Lengths of all arrays passsed to " + getName() + " must be equal.",
|
throw Exception("Lengths of all arrays passed to " + getName() + " must be equal.",
|
||||||
ErrorCodes::SIZES_OF_ARRAYS_DOESNT_MATCH);
|
ErrorCodes::SIZES_OF_ARRAYS_DOESNT_MATCH);
|
||||||
}
|
}
|
||||||
const IColumn ** aggregate_arguments = aggregate_arguments_vec.data();
|
const IColumn ** aggregate_arguments = aggregate_arguments_vec.data();
|
||||||
|
Loading…
Reference in New Issue
Block a user