Files
ast-project/part1/results/1/bug_de128df7-81e5-49b7-ab2e-9ecee9e887bc_unexpected_error.md
T
2026-06-24 13:47:14 +02:00

814 B

Summary

**No review yet**

Minimized query

PRAGMA full_column_names = OFF;
CREATE TABLE [T] (
  a TEXT,
  b REAL
);
INSERT INTO T VALUES ('' || ('a'),like(unistr_quote('Hello'), '')), ('b',-json_remove(cosh((200.5 * 1)))), ('c',9e999);
SELECT a,b,
LEAD(b,1) OVER (ORDER BY b DESC) AS c,
NTILE(2) OVER (ORDER BY b /* PRAGMA automatic_index = FALSE; */ DESC) AS d FROM T;
PRAGMA vdbe_debug = 1;

Actual output

Parse error near line 6: no such function: unistr_quote
  INSERT INTO T VALUES ('' || ('a'),like(unistr_quote('Hello'), '')), ('b',-json
                           error here ---^

Expectation


Flag