Allow with expr AS ident
syntax in WITH clause
#433
Labels
documentation
I need to write something up!
with expr AS ident
syntax in WITH clause
#433
As discussed in #428 , the expression passed to
WITH
clause in ClickHouse can be a string, which is not currently supported. When the expression is a string, the order ofWITH
clause iswith expr AS ident
and not the currentwith ident AS expr
.I have created a PR that will allow for both variants of ClickHouse i.e
with expr AS ident
andwith ident AS subquery-expr
The text was updated successfully, but these errors were encountered: