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
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 #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
The text was updated successfully, but these errors were encountered:
@alamb
Thanks, I too think this is a good first issue.
If there are new contributors who would like to try it, I can help with this. Or on the weekend, I will come to try to improve.
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 #6790 into
datafusion-cli
When I try to do so I get an error about "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 timeDescribe alternatives you've considered
No response
Additional context
to run datafusion-cli:
I think this is a good first issue as the code is localized and would be a nice usability improvement
The text was updated successfully, but these errors were encountered: