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
When a query returns 0 rows the query result table is deleted and is not possible to use it in another queries, giving this error:
Error running query: Error creating table query_28: near ")": syntax error.
If I run this: SELECT name FROM sqlite_master WHERE type='table' AND name='query_28'; gives 0 rows, the table does not exists.
SELECT name FROM sqlite_master WHERE type='table' AND name='query_28';
In my opinion the table should exists while the query does, emptiness is not a real reason to delete the table.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue Summary
When a query returns 0 rows the query result table is deleted and is not possible to use it in another queries, giving this error:
Error running query: Error creating table query_28: near ")": syntax error.
If I run this:
SELECT name FROM sqlite_master WHERE type='table' AND name='query_28';
gives 0 rows, the table does not exists.Steps to Reproduce
In my opinion the table should exists while the query does, emptiness is not a real reason to delete the table.
Technical details:
The text was updated successfully, but these errors were encountered: