blob: 7a3549cd750841781284aa0a3cb341d36cd17f6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--!syntax_pg
insert into plato."Output"
SELECT 1;
commit;
drop table plato."Output";
commit;
insert into plato."Output"
SELECT 'foo';
commit;
drop table plato."Output";
|