alamb opened a new issue, #6793: URL: https://github.com/apache/arrow-datafusion/issues/6793
### Is your feature request related to a problem or challenge? This has annoyed me for a while so I am filing a ticket in case someone has time to fix it I am trying to copy/paste the reproducer for https://github.com/apache/arrow-datafusion/issues/6790 into `datafusion-cli` When I try to do so I get an error about "you entered more than one statement" ``` ❯ create table "MyTable" ( "A" VARCHAR, "B" VARCHAR, "time" timestamp ); SELECT "A", COUNT(DISTINCT("B")) FROM "MyTable" WHERE time >= now() - interval '1 month' GROUP BY "A" LIMIT 10; 🤔 You entered more than one statement ``` ### Describe the solution you'd like I would like `datafusion-cli` to execute all the statements I entered, one at at time ### Describe alternatives you've considered _No response_ ### Additional context to run datafusion-cli: ``` cd datafusion-cli cargo run ``` I think this is a good first issue as the code is localized and would be a nice usability improvement -- 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]
