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,38 @@
## 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 VIRTUAL TABLE t0 USING fts4("x", "y", "z");
CREATE TABLE T (
a INTEGER,
b REAL
);
INSERT INTO T VALUES (concat(1, 2, 3),1.5), (2,-2.5), (3,0.0);
CREATE INDEX c
ON T(b);
SELECT * FROM T WHERE b >= -2.5 AND b < 2.0;
DROP TABLE t0;
```
## Actual output
```sql
Parse error near line 6: no such function: concat
INSERT INTO T VALUES (concat(1, 2, 3),1.5), (2,-2.5), (3,0.0);
^--- error here
```
## Expectation
```sql
```
## Flag
```
```