From 53861ad32733597ab079dc60d9930d5c153f290d Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Mon, 10 Feb 2014 12:31:00 +0100 Subject: [PATCH] Populate test private table --- test/support/sql/windshaft.test.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/test/support/sql/windshaft.test.sql b/test/support/sql/windshaft.test.sql index 3ea0b615..4ae82bfe 100644 --- a/test/support/sql/windshaft.test.sql +++ b/test/support/sql/windshaft.test.sql @@ -174,5 +174,6 @@ CREATE TABLE test_table_private_1 ( CONSTRAINT enforce_srid_the_geom CHECK ((st_srid(the_geom) = 4326)), CONSTRAINT enforce_srid_the_geom_webmercator CHECK ((st_srid(the_geom_webmercator) = 3857)) ); +INSERT INTO test_table_private_1 SELECT * from test_table; GRANT ALL ON TABLE test_table_private_1 TO :TESTUSER;