Skip to content

Commit 5a6e86b

Browse files
committed
Fix PostGIS tests
1 parent b9dff1f commit 5a6e86b

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

expected/13.15/with_gis_support/postgis.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE EXTENSION sqlite_fdw;
44
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66
--Testcase 4:
7-
CREATE EXTENSION IF NOT EXIST postgis;
7+
CREATE EXTENSION IF NOT EXISTS postgis;
88
--Testcase 5:
99
CREATE EXTENSION postgis_raster;
1010
--Testcase 6:

expected/14.12/with_gis_support/postgis.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE EXTENSION sqlite_fdw;
44
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66
--Testcase 4:
7-
CREATE EXTENSION IF NOT EXIST postgis;
7+
CREATE EXTENSION IF NOT EXISTS postgis;
88
--Testcase 5:
99
CREATE EXTENSION postgis_raster;
1010
--Testcase 6:

expected/15.7/with_gis_support/postgis.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE EXTENSION sqlite_fdw;
44
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66
--Testcase 4:
7-
CREATE EXTENSION IF NOT EXIST postgis;
7+
CREATE EXTENSION IF NOT EXISTS postgis;
88
--Testcase 5:
99
CREATE EXTENSION postgis_raster;
1010
--Testcase 6:

expected/16.3/with_gis_support/postgis.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE EXTENSION sqlite_fdw;
44
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66
--Testcase 4:
7-
CREATE EXTENSION IF NOT EXIST postgis;
7+
CREATE EXTENSION IF NOT EXISTS postgis;
88
--Testcase 5:
99
CREATE EXTENSION postgis_raster;
1010
--Testcase 6:

expected/17.0/with_gis_support/postgis.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE EXTENSION sqlite_fdw;
44
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66
--Testcase 4:
7-
CREATE EXTENSION IF NOT EXIST postgis;
7+
CREATE EXTENSION IF NOT EXISTS postgis;
88
--Testcase 5:
99
CREATE EXTENSION postgis_raster;
1010
--Testcase 6:

sql/13.15/with_gis_support/postgis.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66

77
--Testcase 4:
8-
CREATE EXTENSION IF NOT EXIST postgis;
8+
CREATE EXTENSION IF NOT EXISTS postgis;
99
--Testcase 5:
1010
CREATE EXTENSION postgis_raster;
1111
--Testcase 6:

sql/14.12/with_gis_support/postgis.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66

77
--Testcase 4:
8-
CREATE EXTENSION IF NOT EXIST postgis;
8+
CREATE EXTENSION IF NOT EXISTS postgis;
99
--Testcase 5:
1010
CREATE EXTENSION postgis_raster;
1111
--Testcase 6:

sql/15.7/with_gis_support/postgis.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66

77
--Testcase 4:
8-
CREATE EXTENSION IF NOT EXIST postgis;
8+
CREATE EXTENSION IF NOT EXISTS postgis;
99
--Testcase 5:
1010
CREATE EXTENSION postgis_raster;
1111
--Testcase 6:

sql/16.3/with_gis_support/postgis.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66

77
--Testcase 4:
8-
CREATE EXTENSION IF NOT EXIST postgis;
8+
CREATE EXTENSION IF NOT EXISTS postgis;
99
--Testcase 5:
1010
CREATE EXTENSION postgis_raster;
1111
--Testcase 6:

sql/17.0/with_gis_support/postgis.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
55
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
66

77
--Testcase 4:
8-
CREATE EXTENSION IF NOT EXIST postgis;
8+
CREATE EXTENSION IF NOT EXISTS postgis;
99
--Testcase 5:
1010
CREATE EXTENSION postgis_raster;
1111
--Testcase 6:

0 commit comments

Comments
 (0)