Accept regression diffs arising due to lack of FDW support
authorPavan Deolasee <[email protected]>
Wed, 26 Sep 2018 09:25:52 +0000 (14:55 +0530)
committerPavan Deolasee <[email protected]>
Wed, 26 Sep 2018 09:25:52 +0000 (14:55 +0530)
src/test/regress/expected/foreign_data.out

index 2ac2698cb16807d8ec606939f54e78129afa1722..d60e13b6c7141fc99422c2f0e36300b1e380f724 100644 (file)
@@ -1625,10 +1625,12 @@ CREATE FOREIGN TABLE foreign_part PARTITION OF temp_parted
   FOR VALUES IN (1, 2) SERVER s0;  -- ERROR
 ERROR:  cannot create a permanent relation as partition of temporary relation "temp_parted"
 CREATE FOREIGN TABLE foreign_part (a int) SERVER s0;
+ERROR:  server "s0" does not exist
 ALTER TABLE temp_parted ATTACH PARTITION foreign_part
   FOR VALUES IN (1, 2);  -- ERROR
-ERROR:  cannot attach a permanent relation as partition of temporary relation "temp_parted"
+ERROR:  relation "foreign_part" does not exist
 DROP FOREIGN TABLE foreign_part;
+ERROR:  foreign table "foreign_part" does not exist
 DROP TABLE temp_parted;
 -- Cleanup
 DROP SCHEMA foreign_schema CASCADE;