42 lines
856 B
Markdown
42 lines
856 B
Markdown
## 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 1;
|
|
COMMIT;
|
|
UPDATE t3 SET x = '' WHERE rowid = 1;
|
|
VACUUM main;
|
|
ALTER TABLE t3 DROP COLUMN y;
|
|
|
|
SELECT COUNT(*) FROM t3;
|
|
```
|
|
|
|
## Actual output
|
|
|
|
```sql
|
|
3.39.0 2022-05-10 23:28:12 764b71267e0b31ff7eaf2a0def7526a1a02dce4d5b456dea060d97ed342ealt1
|
|
```
|
|
|
|
## Expectation
|
|
|
|
```sql
|
|
3.51.1 2025-11-28 17:28:25 281fc0e9afc38674b9b0991943b9e9d1e64c6cbdb133d35f6f5c87ff6af38a88 (64-bit)
|
|
```
|
|
|
|
## Flag
|
|
|
|
```
|
|
-version
|
|
```
|
|
|