-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
df.parse_sql_expr does not handle expression aliases, for expressions like
df.parse_sql_expr("col0 as new_col0")
it will return col(
col0`) expression
To Reproduce
statement
df.parse_sql_expr("SUM(int_col) as sum_int_col")
from
"| double_col | sum(?table?.int_col) |", |
can be used to demonstrate this issue
as return column has sum(?table?.int_col)
as the name
Expected behavior
it is expected to have expression alias handled
Additional context
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working