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,67 @@
## 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 vdbe_debug = YES;
PRAGMA index_xinfo(idx1);
PRAGMA index_list(users);
PRAGMA max_page_count = '&';
PRAGMA user_version = 999;
.progress
CREATE TABLE T (
a INTEGER,
b REAL
);
INSERT INTO T VALUES (1,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;
SELECT * FROM (SELECT * FROM (SELECT * FROM T) AS inner1) AS inner2;
SELECT * FROM (SELECT * FROM T) AS t1 JOIN (SELECT * FROM T) AS t2 ON t1.a = t2.a;
SELECT * FROM T AS a RIGHT OUTER JOIN T AS b ON a.rowid = b.rowid;
```
## Actual output
```sql
1073741823
2|-2.5
3|0.0
1|1.5
1|1.5
2|-2.5
3|0.0
1|1.5|1|1.5
2|-2.5|2|-2.5
3|0.0|3|0.0
1|1.5|1|1.5
2|-2.5|2|-2.5
3|0.0|3|0.0
```
## Expectation
```sql
4294967294
2|-2.5
3|0.0
1|1.5
1|1.5
2|-2.5
3|0.0
1|1.5|1|1.5
2|-2.5|2|-2.5
3|0.0|3|0.0
1|1.5|1|1.5
2|-2.5|2|-2.5
3|0.0|3|0.0
```
## Flag
```
```