fixes to exception message

This commit is contained in:
bharatnc 2022-01-22 23:01:56 -08:00
parent 7d62593bb1
commit 59ecdeb3ef
4 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@ public:
if (!column)
throw Exception(
ErrorCodes::ILLEGAL_COLUMN,
"Illegal type {} of argument {} of function {}. Must be UInt64.",
"Illegal type {} of argument {} of function {}. Must be UInt8.",
arguments[0].type->getName(),
1,
getName());

View File

@ -73,7 +73,7 @@ public:
throw Exception(
ErrorCodes::ILLEGAL_COLUMN,
"Illegal type {} of argument {} of function {}. Must be UInt64.",
arguments[0].type->getName(),
arguments[1].type->getName(),
2,
getName());

View File

@ -76,7 +76,7 @@ public:
throw Exception(
ErrorCodes::ILLEGAL_COLUMN,
"Illegal type {} of argument {} of function {}. Must be UInt8.",
arguments[0].type->getName(),
arguments[1].type->getName(),
2,
getName());

View File

@ -80,7 +80,7 @@ public:
throw Exception(
ErrorCodes::ILLEGAL_COLUMN,
"Illegal type {} of argument {} of function {}. Must be Integer.",
arguments[0].type->getName(),
arguments[1].type->getName(),
2,
getName());