Clean up after tests

For #64
This commit is contained in:
Paul Ramsey
2015-06-01 10:57:30 -07:00
parent 54973142f6
commit e7ef5e7e8e
2 changed files with 4 additions and 0 deletions

View File

@@ -31,6 +31,8 @@ create table sc.test (a int);
insert into sc.test values (1);
WITH inp AS ( select 'select * from sc.test'::text as q )
SELECT q, CDB_QueryTables(q) from inp;
DROP TABLE sc.test;
DROP SCHEMA sc;
WITH inp AS ( select 'SELECT
* FROM geometry_columns'::text as q )