Fix style error

This commit is contained in:
ANDREI STAROVEROV 2021-05-11 02:20:43 +03:00
parent ad4594c298
commit ed8ecc987e

View File

@ -37,7 +37,7 @@ void InterpreterCreateFunctionQuery::validateFunction(ASTPtr function)
{
if (!arguments.contains(identifier))
{
std::stringstream s;
WriteBufferFromOwnString s;
s << "Identifier '" << identifier << "' does not exist in arguments";
throw Exception(s.str(), ErrorCodes::UNKNOWN_IDENTIFIER);
}