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
Currently, whenever we are passing SQL queries to stdin we are also displaying the introduction header:
$ echo "SELECT 1 + 1" | genji Opened an in-memory database. Enter ".help" for usage hints. { "1 + 1": 2 }
We want that text to be removed:
$ echo "SELECT 1 + 1" | genji { "1 + 1": 2 }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently, whenever we are passing SQL queries to stdin we are also displaying the introduction header:
We want that text to be removed:
The text was updated successfully, but these errors were encountered: