We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Whenever we press return with no input or whitespace only input in the CLI, it invites the user to add a ;. We should simply ignore the input.
;
Current behavior:
genji> <press return, with or without whitespace> ... <press ';', then return> genji>
Expected behavior:
genji> <press return, with or without whitespace> genji>
The text was updated successfully, but these errors were encountered:
If we run a query with whitespace after the ;, it also invites to add a ;.
genji> create table foo; <press return with whitespace after the ; > ... <press ';', then return> genji>
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Whenever we press return with no input or whitespace only input in the CLI, it invites the user to add a
;
.We should simply ignore the input.
Current behavior:
Expected behavior:
The text was updated successfully, but these errors were encountered: