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,52 @@
## 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
PRAGMA empty_result_callbacks = FALSE;
.vfsname
BEGIN TRANSACTION;
-- min(NULL, {v})
-- format('%f', {v})
-- sign({v})
CREATE TABLE [T] (
a SMALLINT,
b REAL
);
INSERT INTO T VALUES ('' || ('a'),octet_length(NULL)), ('b',-time(min(json_patch(max((json_array_length(2147483648, '$') * 1), 2, 3, 4, 5), 1), 2, 3, 4, 5))), ('c',9e999);
SELECT a,b,
LEAD(b,1) OVER (ORDER BY b DESC) AS c,
NTILE(2) OVER (ORDER BY b DESC) AS d FROM T;
INSERT INTO T SELECT * FROM T;
END TRANSACTION;
WITH cte AS (SELECT * FROM T), cte2 AS (SELECT * FROM cte) SELECT * FROM cte2;
SELECT * FROM T;
CREATE TEMP VIEW IF NOT EXISTS v_T_8602 AS SELECT a FROM T;
PRAGMA temp_store_directory;
VACUUM main;
```
## Actual output
```sql
Parse error near line 14: no such function: octet_length
INSERT INTO T VALUES ('' || ('a'),octet_length(NULL)), ('b',-time(min(json_pat
error here ---^
```
## Expectation
```sql
```
## Flag
```
```