---
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
## 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
|
||||
BEGIN DEFERRED;
|
||||
.show
|
||||
CREATE TABLE 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;
|
||||
```
|
||||
|
||||
## Actual output
|
||||
|
||||
```sql
|
||||
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
|
||||
```
|
||||
|
||||
## Expectation
|
||||
|
||||
```sql
|
||||
|
||||
```
|
||||
|
||||
## Flag
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user