drop_table.sql 176 B

1234567891011121314151617
  1. --!syntax_pg
  2. insert into plato."Output"
  3. SELECT 1;
  4. commit;
  5. drop table plato."Output";
  6. commit;
  7. insert into plato."Output"
  8. SELECT 'foo';
  9. commit;
  10. drop table plato."Output";