(c: Composition)
| 546 | |
| 547 | |
| 548 | def alter_pg_table(c: Composition) -> None: |
| 549 | c.testdrive(dedent(""" |
| 550 | $ postgres-execute connection=postgres://postgres:postgres@postgres |
| 551 | ALTER TABLE source1 DROP COLUMN f1; |
| 552 | INSERT INTO source1 VALUES (NULL) |
| 553 | """)) |
| 554 | |
| 555 | |
| 556 | def unsupported_pg_table(c: Composition) -> None: |