You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> Parser("select `col1 with space` / `col2_anything` from table1;").columns
['col1 with space']
>>> Parser("select `col1 with space` / `col2_anything` from table1;").columns_aliases
{'col2_anything': 'col1 with space'}
>>> Parser("select `col1 with space` / `col2_anything` from table1;").columns_dict
{'select': ['col1 with space']}
>>> Parser("select `col1 with space` / `col2_anything` from table1;").columns_aliases_dict
{'select': ['col2_anything']}
I think the correct answer should be ['col1 with space', 'col2_anything'], but col2_anything is now recognized as "alias" ?
The text was updated successfully, but these errors were encountered:
reproduce in 2.9.0
I think the correct answer should be ['col1 with space', 'col2_anything'], but col2_anything is now recognized as "alias" ?
The text was updated successfully, but these errors were encountered: