clickhouse: fixed a typo in exception text [#CONV-6703].

This commit is contained in:
Michael Kolupaev 2013-02-13 10:01:53 +00:00
parent 3e168c4cc0
commit 753b1fd03e

View File

@ -65,7 +65,7 @@ void Expression::createAliasesDict(ASTPtr & ast)
{ {
if (aliases.count(*alias) && ast != aliases[*alias]) if (aliases.count(*alias) && ast != aliases[*alias])
{ {
throw Exception("Differnt expressions with the same alias " + *alias, ErrorCodes::MULTIPLE_EXPRESSIONS_FOR_ALIAS); throw Exception("Different expressions with the same alias " + *alias, ErrorCodes::MULTIPLE_EXPRESSIONS_FOR_ALIAS);
} }
else else
{ {