From: Pavan Deolasee Date: Wed, 26 Sep 2018 09:25:52 +0000 (+0530) Subject: Accept regression diffs arising due to lack of FDW support X-Git-Tag: XL_10_R1~30 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=1d4b1b73685030a842fccb4fab7594aea1aca824;p=postgres-xl.git Accept regression diffs arising due to lack of FDW support --- diff --git a/src/test/regress/expected/foreign_data.out b/src/test/regress/expected/foreign_data.out index 2ac2698cb1..d60e13b6c7 100644 --- a/src/test/regress/expected/foreign_data.out +++ b/src/test/regress/expected/foreign_data.out @@ -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;