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,46 @@
## 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
.version
CREATE TABLE T (
a INTEGER,
b REAL
);
INSERT INTO T VALUES ((1 - 0),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;
CREATE INDEX IF NOT EXISTS idx_T_6272 ON T(a) WHERE a > 0;
DELETE FROM T WHERE a > (SELECT AVG(a) FROM T);
```
## Actual output
```sql
SQLite 3.39.0 2022-05-10 23:28:12 764b71267e0b31ff7eaf2a0def7526a1a02dce4d5b456dea060d97ed342ealt1
gcc-14.2.0
2|-2.5
3|0.0
1|1.5
```
## Expectation
```sql
SQLite 3.51.1 2025-11-28 17:28:25 281fc0e9afc38674b9b0991943b9e9d1e64c6cbdb133d35f6f5c87ff6af38a88
zlib version 1.3.1
gcc-11.4.0 (64-bit)
2|-2.5
3|0.0
1|1.5
```
## Flag
```
```