Skip to content

Commit 2b8199b

Browse files
committed
Remove sqlite2 object from tests
1 parent a3efcab commit 2b8199b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+25
-1799
lines changed

expected/13.15/types/bitstring.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 002:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 003:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 02:
119
CREATE FOREIGN TABLE "type_BIT"( "i" int OPTIONS (key 'true'), "b" bit(6)) SERVER sqlite_svr OPTIONS (table 'type_BIT');
1210
--Testcase 03:
@@ -801,10 +799,9 @@ SELECT "i", "b" FROM "type_BIT" WHERE (~ "b") IS NOT NULL;
801799

802800
--Testcase 005:
803801
DROP EXTENSION sqlite_fdw CASCADE;
804-
NOTICE: drop cascades to 6 other objects
802+
NOTICE: drop cascades to 5 other objects
805803
DETAIL: drop cascades to server sqlite_svr
806804
drop cascades to foreign table "type_BIT"
807805
drop cascades to foreign table "type_BIT+"
808806
drop cascades to foreign table "type_VARBIT"
809807
drop cascades to foreign table "type_VARBIT+"
810-
drop cascades to server sqlite2

expected/13.15/types/bool.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 001:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 002:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 01:
119
CREATE FOREIGN TABLE "type_BOOLEAN" (i int OPTIONS (key 'true'), b bool) SERVER sqlite_svr;
1210
--Testcase 02:
@@ -1267,10 +1265,9 @@ SELECT DISTINCT b1, b2 FROM "type_BOOLEAN_oper";
12671265
DELETE FROM "type_BOOLEAN";
12681266
--Testcase 003:
12691267
DROP EXTENSION sqlite_fdw CASCADE;
1270-
NOTICE: drop cascades to 6 other objects
1268+
NOTICE: drop cascades to 5 other objects
12711269
DETAIL: drop cascades to server sqlite_svr
12721270
drop cascades to foreign table "type_BOOLEAN"
12731271
drop cascades to foreign table "type_BOOLEAN+"
12741272
drop cascades to foreign table "type_BOOLEANpk"
12751273
drop cascades to foreign table "type_BOOLEAN_oper"
1276-
drop cascades to server sqlite2

expected/13.15/types/macaddr.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 002:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 003:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 009:
119
CREATE FOREIGN TABLE "type_MACADDR"( "i" int OPTIONS (key 'true'), "m" macaddr) SERVER sqlite_svr OPTIONS (table 'type_MACADDR');
1210
--Testcase 010:
@@ -946,9 +944,8 @@ SELECT "m" != '01:02:03:04:05:06' FROM "type_MACADDR";
946944

947945
--Testcase 200:
948946
DROP EXTENSION sqlite_fdw CASCADE;
949-
NOTICE: drop cascades to 5 other objects
947+
NOTICE: drop cascades to 4 other objects
950948
DETAIL: drop cascades to server sqlite_svr
951949
drop cascades to foreign table "type_MACADDR"
952950
drop cascades to foreign table "type_MACADDR+"
953951
drop cascades to foreign table "type_MACADDRpk"
954-
drop cascades to server sqlite2

expected/13.15/types/macaddr8.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 002:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 003:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 009:
119
CREATE FOREIGN TABLE "type_MACADDR8"( "i" int OPTIONS (key 'true'), "m" macaddr8) SERVER sqlite_svr OPTIONS (table 'type_MACADDR8');
1210
--Testcase 010:
@@ -947,9 +945,8 @@ SELECT "m" != '01:02:03:04:05:06:07:08' FROM "type_MACADDR8";
947945

948946
--Testcase 200:
949947
DROP EXTENSION sqlite_fdw CASCADE;
950-
NOTICE: drop cascades to 5 other objects
948+
NOTICE: drop cascades to 4 other objects
951949
DETAIL: drop cascades to server sqlite_svr
952950
drop cascades to foreign table "type_MACADDR8"
953951
drop cascades to foreign table "type_MACADDR8+"
954952
drop cascades to foreign table "type_MACADDR8pk"
955-
drop cascades to server sqlite2

expected/13.15/types/uuid.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 002:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 003:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 009:
119
CREATE FOREIGN TABLE "type_UUID"( "i" int OPTIONS (key 'true'), "u" uuid) SERVER sqlite_svr OPTIONS (table 'type_UUID');
1210
--Testcase 010:
@@ -541,9 +539,8 @@ SELECT * FROM "type_UUIDpk";
541539
DELETE FROM "type_UUIDpk";
542540
--Testcase 200:
543541
DROP EXTENSION sqlite_fdw CASCADE;
544-
NOTICE: drop cascades to 5 other objects
542+
NOTICE: drop cascades to 4 other objects
545543
DETAIL: drop cascades to server sqlite_svr
546544
drop cascades to foreign table "type_UUID"
547545
drop cascades to foreign table "type_UUID+"
548546
drop cascades to foreign table "type_UUIDpk"
549-
drop cascades to server sqlite2

expected/14.12/types/bitstring.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 002:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 003:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 02:
119
CREATE FOREIGN TABLE "type_BIT"( "i" int OPTIONS (key 'true'), "b" bit(6)) SERVER sqlite_svr OPTIONS (table 'type_BIT');
1210
--Testcase 03:
@@ -801,10 +799,9 @@ SELECT "i", "b" FROM "type_BIT" WHERE (~ "b") IS NOT NULL;
801799

802800
--Testcase 005:
803801
DROP EXTENSION sqlite_fdw CASCADE;
804-
NOTICE: drop cascades to 6 other objects
802+
NOTICE: drop cascades to 5 other objects
805803
DETAIL: drop cascades to server sqlite_svr
806804
drop cascades to foreign table "type_BIT"
807805
drop cascades to foreign table "type_BIT+"
808806
drop cascades to foreign table "type_VARBIT"
809807
drop cascades to foreign table "type_VARBIT+"
810-
drop cascades to server sqlite2

expected/14.12/types/bool.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 001:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 002:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 01:
119
CREATE FOREIGN TABLE "type_BOOLEAN" (i int OPTIONS (key 'true'), b bool) SERVER sqlite_svr;
1210
--Testcase 02:
@@ -1267,10 +1265,9 @@ SELECT DISTINCT b1, b2 FROM "type_BOOLEAN_oper";
12671265
DELETE FROM "type_BOOLEAN";
12681266
--Testcase 003:
12691267
DROP EXTENSION sqlite_fdw CASCADE;
1270-
NOTICE: drop cascades to 6 other objects
1268+
NOTICE: drop cascades to 5 other objects
12711269
DETAIL: drop cascades to server sqlite_svr
12721270
drop cascades to foreign table "type_BOOLEAN"
12731271
drop cascades to foreign table "type_BOOLEAN+"
12741272
drop cascades to foreign table "type_BOOLEANpk"
12751273
drop cascades to foreign table "type_BOOLEAN_oper"
1276-
drop cascades to server sqlite2

expected/14.12/types/macaddr.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 002:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 003:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 009:
119
CREATE FOREIGN TABLE "type_MACADDR"( "i" int OPTIONS (key 'true'), "m" macaddr) SERVER sqlite_svr OPTIONS (table 'type_MACADDR');
1210
--Testcase 010:
@@ -949,9 +947,8 @@ SELECT "m" != '01:02:03:04:05:06' FROM "type_MACADDR";
949947

950948
--Testcase 200:
951949
DROP EXTENSION sqlite_fdw CASCADE;
952-
NOTICE: drop cascades to 5 other objects
950+
NOTICE: drop cascades to 4 other objects
953951
DETAIL: drop cascades to server sqlite_svr
954952
drop cascades to foreign table "type_MACADDR"
955953
drop cascades to foreign table "type_MACADDR+"
956954
drop cascades to foreign table "type_MACADDRpk"
957-
drop cascades to server sqlite2

expected/14.12/types/macaddr8.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 002:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 003:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 009:
119
CREATE FOREIGN TABLE "type_MACADDR8"( "i" int OPTIONS (key 'true'), "m" macaddr8) SERVER sqlite_svr OPTIONS (table 'type_MACADDR8');
1210
--Testcase 010:
@@ -950,9 +948,8 @@ SELECT "m" != '01:02:03:04:05:06:07:08' FROM "type_MACADDR8";
950948

951949
--Testcase 200:
952950
DROP EXTENSION sqlite_fdw CASCADE;
953-
NOTICE: drop cascades to 5 other objects
951+
NOTICE: drop cascades to 4 other objects
954952
DETAIL: drop cascades to server sqlite_svr
955953
drop cascades to foreign table "type_MACADDR8"
956954
drop cascades to foreign table "type_MACADDR8+"
957955
drop cascades to foreign table "type_MACADDR8pk"
958-
drop cascades to server sqlite2

expected/14.12/types/uuid.out

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ CREATE EXTENSION sqlite_fdw;
55
--Testcase 002:
66
CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw
77
OPTIONS (database '/tmp/sqlite_fdw_test/common.db');
8-
--Testcase 003:
9-
CREATE SERVER sqlite2 FOREIGN DATA WRAPPER sqlite_fdw;
108
--Testcase 009:
119
CREATE FOREIGN TABLE "type_UUID"( "i" int OPTIONS (key 'true'), "u" uuid) SERVER sqlite_svr OPTIONS (table 'type_UUID');
1210
--Testcase 010:
@@ -543,9 +541,8 @@ SELECT * FROM "type_UUIDpk";
543541
DELETE FROM "type_UUIDpk";
544542
--Testcase 200:
545543
DROP EXTENSION sqlite_fdw CASCADE;
546-
NOTICE: drop cascades to 5 other objects
544+
NOTICE: drop cascades to 4 other objects
547545
DETAIL: drop cascades to server sqlite_svr
548546
drop cascades to foreign table "type_UUID"
549547
drop cascades to foreign table "type_UUID+"
550548
drop cascades to foreign table "type_UUIDpk"
551-
drop cascades to server sqlite2

0 commit comments

Comments
 (0)