Open matthieugouel opened 1 week ago
Hey 👋
The WITH <expression> AS <identifier> (doc here) does not seem to be supported.
WITH <expression> AS <identifier>
For instance, this command with the ClickHouseDialect does not work (nor with GenericDialiect):
ClickHouseDialect
GenericDialiect
WITH concat(prefix_addr, '/', prefix_len) AS prefix SELECT prefix FROM table
sql parser error: Expected: (, found: prefix at Line: 1, Column: 46
Hey 👋
The
WITH <expression> AS <identifier>
(doc here) does not seem to be supported.For instance, this command with the
ClickHouseDialect
does not work (nor withGenericDialiect
):