mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 11:32:03 +00:00
clickhouse: improved exception text [#CONV-2944].
This commit is contained in:
parent
e6993c973a
commit
1f472dceca
@ -65,7 +65,7 @@ void Expression::createAliasesDict(ASTPtr & ast)
|
|||||||
{
|
{
|
||||||
if (aliases.count(*alias))
|
if (aliases.count(*alias))
|
||||||
{
|
{
|
||||||
throw Exception("Multiple expressions with the same alias", ErrorCodes::MULTIPLE_EXPRESSIONS_FOR_ALIAS);
|
throw Exception("Multiple expressions with the same alias " + *alias, ErrorCodes::MULTIPLE_EXPRESSIONS_FOR_ALIAS);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user