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
SELECT id, glyph FROM emojis WHERE glyph = "🇨🇶"; Makes error 'non terminated literal'
It works on the main row list filtering, but not works in the SQL Query Editor.
libsql(Turso) up-to-date version windows 10
The text was updated successfully, but these errors were encountered:
Hi @wldbest , Thank you for your feedback! Could you provide more detailed information?
I am unable to reproduce this error.
CREATE TABLE emojis (id integer PRIMARY KEY, glyph text); SELECT id, glyph FROM emojis WHERE glyph = "🇨🇶"; -- No error
Sorry, something went wrong.
Hi, check about this:
CREATE TABLE emojis3 (id integer PRIMARY KEY, glyph text, glyph_2 text); SELECT id, glyph FROM emojis WHERE glyph = "🇨🇶";
No branches or pull requests
Describe the bug
SELECT id, glyph FROM emojis WHERE glyph = "🇨🇶";
Makes error
'non terminated literal'
It works on the main row list filtering, but not works in the SQL Query Editor.
Platform and Database
The text was updated successfully, but these errors were encountered: