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,43 @@
## 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 defer_foreign_keys = OFF;
ATTACH DATABASE ':memory:' AS aux46;
CREATE TABLE t1(a);
INSERT INTO t1 VALUES(-(-(concat(sqrt(1), 1, 1))));
ALTER TABLE t1 ADD COLUMN b TEXT DEFAULT -123.0;
SELECT b, typeof(b) FROM t1;
ALTER TABLE t1 ADD COLUMN c TEXT DEFAULT -123.5;
ALTER TABLE t1 ADD COLUMN d TEXT DEFAULT 'hello';
SELECT c, typeof(c) FROM t1;
SELECT PERCENT_RANK() OVER (ORDER BY a ROWS BETWEEN UNBOUNDED PRECEDING ANd CURRENT ROW EXCLUDE TIES) FROM t1;
DETACH DATABASE aux46;
SELECT * FROM t1 AS a RIGHT JOIN t1 AS b ON a.rowid = b.rowid;
PRAGMA vdbe_listing = 0;
INSERT INTO t1 SELECT * FROM t1;
```
## Actual output
```sql
Parse error near line 4: no such function: concat
INSERT INTO t1 VALUES(-(-(concat(sqrt(1), 1, 1))));
error here ---^
```
## Expectation
```sql
```
## Flag
```
```