Files
ast-project/part1/results/2/bug_4a19229b-ad80-4bb4-a34d-c0c807b972b4_logic.md
2026-06-24 13:47:14 +02:00

42 lines
865 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
CREATE TABLE map_integer (id INT, name);
INSERT INTO map_integer VALUES(1,'a');
CREATE TABLE map_text (id TEXT, name);
INSERT INTO map_text VALUES('4','e');
CREATE TABLE data (id TEXT, name);
INSERT INTO data VALUES(1,'abc');
INSERT INTO data VALUES('4','xyz');
CREATE VIEW idmap as SELECT * FROM map_integer UNION SELECT * FROM map_text;
CREATE TABLE mzed AS SELECT * FROM idmap;
PRAGMA automatic_index=ON;
SELECT * FROM data JOIN idmap USING(id);
PRAGMA writable_schema = 1;
INSERT INTO map_integer DEFAULT VALUES;
INSERT OR ABORT INTO map_text VALUES ('x', -6);
```
## Actual output
```sql
1|abc|a
```
## Expectation
```sql
4|xyz|e
```
## Flag
```
```