This commit is contained in:
2026-06-24 13:47:14 +02:00
commit fd930e15cb
2377 changed files with 1213931 additions and 0 deletions
@@ -0,0 +1,36 @@
## Summary
<!--Explain briefly what goes wrong and explain why you believe this is a bug and not the intended behavior of SQLite (if it is not a crash).-->**No review yet**
## Minimized query
```sql
CREATE TABLE [T] (
a TEXT,
b REAL
);
INSERT INTO T VALUES ('' || ('a'),like(unistr_quote('Hello'), '')), ('b',-json_remove(200.5)), ('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;
```
## Actual output
```sql
Parse error near line 5: no such function: unistr_quote
INSERT INTO T VALUES ('' || ('a'),like(unistr_quote('Hello'), '')), ('b',-json
error here ---^
```
## Expectation
```sql
```
## Flag
```
```