Jefffrey commented on issue #669: URL: https://github.com/apache/arrow-datafusion/issues/669#issuecomment-1401647712
Looks resolved as of latest master ```sql DataFusion CLI v16.0.0 ❯ CREATE EXTERNAL TABLE test STORED AS CSV LOCATION 'test.csv'; 0 rows in set. Query took 0.010 seconds. ❯ select column_1 x from test order by column_1 desc; +---+ | x | +---+ | 4 | | 1 | +---+ 2 rows in set. Query took 0.014 seconds. ❯ select column_1 x from test order by x desc; +---+ | x | +---+ | 4 | | 1 | +---+ 2 rows in set. Query took 0.014 seconds. ❯ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
