sqlean icon indicating copy to clipboard operation
sqlean copied to clipboard

[array: unnest] crash & no solution

Open Moaneschien opened this issue 3 years ago • 0 comments

SELECT value 
FROM unnest(array(0,1,2,3,4,5))
WHERE value < 3;

Parse error: no query solution (not sure what the behavior should be. I hoped for an other result)

SELECT value
FROM unnest (1);

crashes SQLite without error

Moaneschien avatar Oct 17 '22 17:10 Moaneschien