diff --git a/be/src/vec/columns/column_string.h b/be/src/vec/columns/column_string.h index ccf05c1464bffba..c65e6a1f8a95683 100644 --- a/be/src/vec/columns/column_string.h +++ b/be/src/vec/columns/column_string.h @@ -63,9 +63,9 @@ class ColumnStr final : public COWHelper> { void static check_chars_length(size_t total_length, size_t element_number) { if (UNLIKELY(total_length > MAX_STRING_SIZE)) { throw Exception(ErrorCode::STRING_OVERFLOW_IN_VEC_ENGINE, - "string column length is too large: total_length={}, element_number={}, " - "you can set batch_size a number smaller than {} to avoid this error", - total_length, element_number, element_number); + "string column length is too large: total_length={}, element_number={}, " + "you can set batch_size a number smaller than {} to avoid this error", + total_length, element_number, element_number); } }