From 5b87defb9736a3534168928f0696b60b0b09c731 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Mart=C3=ADn?= Date: Wed, 20 Jun 2018 15:09:37 +0200 Subject: [PATCH] remove unneeded test table copy_endpoints_test2 --- test/support/sql/test.sql | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/support/sql/test.sql b/test/support/sql/test.sql index 711e6183..b813f797 100644 --- a/test/support/sql/test.sql +++ b/test/support/sql/test.sql @@ -226,12 +226,3 @@ CREATE TABLE copy_endpoints_test ( ); GRANT ALL ON TABLE copy_endpoints_test TO :TESTUSER; GRANT ALL ON TABLE copy_endpoints_test TO :PUBLICUSER; - -DROP TABLE IF EXISTS copy_endpoints_test2; -CREATE TABLE copy_endpoints_test2 ( - id integer, - name text, - age integer default 10 -); -GRANT ALL ON TABLE copy_endpoints_test2 TO :TESTUSER; -GRANT ALL ON TABLE copy_endpoints_test2 TO :PUBLICUSER;