Manuel Rigger

Results 95 comments of Manuel Rigger

Further simplified: ```sql CREATE TABLE t0(c0 boolean , c1 int primary key); CREATE TABLE a() INHERITS(t0); INSERT INTO a(c1, c0) VALUES(0, TRUE); INSERT INTO a(c1, c0) VALUES(0, FALSE); SELECT t0.c0...

I think we might first want to update the PostgreSQL version and move to a state where the version passes without errors (which already seems to be the case based...

I just noticed that the Citus implementation in SQLancer seems to be based on PostgreSQL version 15: https://github.com/sqlancer/sqlancer/blob/0487a59695d82539382c22c9c20499b78c2e1413/.github/workflows/main.yml#L66

For which database system would this be added? I think some table generators already create primary keys, but it would be useful to see whether we could support this logic...

Thanks for spotting this. @qoega, do you agree that we should change this?