Dataflare icon indicating copy to clipboard operation
Dataflare copied to clipboard

[BUG] query error on Editor

Open wldbest opened this issue 1 year ago • 2 comments

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

libsql(Turso) up-to-date version
windows 10

wldbest avatar Nov 01 '24 07:11 wldbest

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

wyhaya avatar Nov 01 '24 14:11 wyhaya

Hi, check about this:

CREATE TABLE emojis3 (id integer PRIMARY KEY, glyph text, glyph_2 text); SELECT id, glyph FROM emojis WHERE glyph = "🇨🇶";

wldbest avatar Nov 01 '24 23:11 wldbest