alamb commented on issue #2147: URL: https://github.com/apache/datafusion/issues/2147#issuecomment-2453115796
Seems to work now. Thank you @drauschenbach for flagging this ```sql > create table t1(id int) as values (1); 0 row(s) fetched. Elapsed 0.013 seconds. > select * from "t1"; +----+ | id | +----+ | 1 | +----+ 1 row(s) fetched. Elapsed 0.001 seconds. > select * from t1; +----+ | id | +----+ | 1 | +----+ 1 row(s) fetched. Elapsed 0.001 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]
