fix style check

This commit is contained in:
Anton Popov 2022-08-10 12:28:28 +00:00
parent 7c364d4124
commit c7615e9bde

View File

@ -56,7 +56,7 @@ ColumnArray::ColumnArray(MutableColumnPtr && nested_column, MutableColumnPtr &&
/// This will also prevent possible overflow in offset.
if (data->size() != last_offset)
throw Exception( ErrorCodes::LOGICAL_ERROR,
throw Exception(ErrorCodes::LOGICAL_ERROR,
"offsets_column has data inconsistent with nested_column. Data size: {}, last offset: {}",
data->size(), last_offset);
}