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,65 @@
## 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 short_column_names;
BEGIN DEFERRED;
.show
CREATE TABLE main.t3(x,y);
INSERT INTO t3 VALUES(glob(like('*1', concat('text', 123, NULL)), NULL),NULL);
INSERT INTO t3 VALUES(2,NULL);
INSERT INTO t3 VALUES(3,4);
SELECT count(x), y FROM t3 GROUP BY y ORDER BY 1;
DELETE FROM t3 WHERE NOT 1;
COMMIT;
UPDATE t3 SET x = '' WHERE rowid = 1;
VACUUM main;
ALTER TABLE t3 DROP COLUMN y;
SELECT COUNT(*) FROM t3;
SELECT * FROM t3;
SELECT * FROM t3;
CREATE UNIQUE INDEX IF NOT EXISTS idx_t3_7943 ON t3(lower(x)) WHERE x > 0;
ALTER TABLE t3 RENAME TO t3_r1611;
```
## Actual output
```sql
1
echo: off
eqp: off
explain: auto
headers: off
mode: list
nullvalue: ""
output: stdout
colseparator: "|"
rowseparator: "\n"
stats: off
width:
filename: :memory:
1|
1|4
2
3
3
```
## Expectation
```sql
```
## Flag
```
```