alamb commented on PR #12014: URL: https://github.com/apache/datafusion/pull/12014#issuecomment-2291187541
BTW I double checked with this branch that you can still use `id` as a column name without double quotes ```sql > create table foo(id int) as values (1); 0 row(s) fetched. Elapsed 0.030 seconds. > select id from foo; +----+ | id | +----+ | 1 | +----+ 1 row(s) fetched. Elapsed 0.007 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
