mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
fix code style
This commit is contained in:
parent
f14582334c
commit
cae27d9536
@ -72,12 +72,13 @@ public:
|
|||||||
|
|
||||||
auto c_res = ColumnString::create();
|
auto c_res = ColumnString::create();
|
||||||
c_res->reserve(input_rows_count);
|
c_res->reserve(input_rows_count);
|
||||||
|
|
||||||
const ColumnConst * col_sep = checkAndGetColumnConstStringOrFixedString(arguments[0].column.get());
|
const ColumnConst * col_sep = checkAndGetColumnConstStringOrFixedString(arguments[0].column.get());
|
||||||
if (!col_sep)
|
if (!col_sep)
|
||||||
throw Exception(ErrorCodes::ILLEGAL_COLUMN,
|
throw Exception(
|
||||||
|
ErrorCodes::ILLEGAL_COLUMN,
|
||||||
"Illegal column {} of first argument of function {}. Must be a constant String.",
|
"Illegal column {} of first argument of function {}. Must be a constant String.",
|
||||||
arguments[0].column->getName(), getName());
|
arguments[0].column->getName(),
|
||||||
|
getName());
|
||||||
String sep_str = col_sep->getValue<String>();
|
String sep_str = col_sep->getValue<String>();
|
||||||
|
|
||||||
const size_t num_exprs = arguments.size() - 1;
|
const size_t num_exprs = arguments.size() - 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user