From 79f06ddfef0513b70af9f975b3d858701003fdfe Mon Sep 17 00:00:00 2001 From: zvonand Date: Tue, 28 Mar 2023 13:58:37 +0200 Subject: [PATCH] style fix --- src/Functions/FunctionToDecimalString.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Functions/FunctionToDecimalString.h b/src/Functions/FunctionToDecimalString.h index 097c0593fa4..6ae007e6b66 100644 --- a/src/Functions/FunctionToDecimalString.h +++ b/src/Functions/FunctionToDecimalString.h @@ -302,7 +302,7 @@ private: else if (from_col_const) constantVector(from_col_const->template getValue(), precision_col->getData(), result_chars, result_offsets); else - throw Exception( ErrorCodes::ILLEGAL_COLUMN, "Illegal column {} of first argument of function formatDecimal", arguments[0].column->getName()); + throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Illegal column {} of first argument of function formatDecimal", arguments[0].column->getName()); } return result_col;