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
DataFusion CLI v16.0.0
❯ CREATE EXTERNAL TABLE test STORED AS CSV LOCATION 'test.csv';
0 rows inset. Query took 0.010 seconds.
❯ select column_1 x from test order by column_1 desc;
+---+
| x |
+---+
| 4 |
| 1 |
+---+2 rows inset. Query took 0.014 seconds.
❯ select column_1 x from test order by x desc;
+---+
| x |
+---+
| 4 |
| 1 |
+---+2 rows inset. Query took 0.014 seconds.
❯
Describe the bug
A clear and concise description of what the bug is.
aliasing a field renders it missing in the order by clause. possible tightly coupled with #609
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
it shall work
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: