From: Pavan Deolasee Date: Mon, 21 Nov 2016 06:29:53 +0000 (+0530) Subject: Do not emit a WARNING about missing relation while reading target entry since X-Git-Tag: XL9_5_R1_4~6 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=e189ab451bbe55343e0a162ac1eccc73455e55d2;p=postgres-xl.git Do not emit a WARNING about missing relation while reading target entry since it may refer to a view which is not created on the datanode --- diff --git a/src/backend/nodes/readfuncs.c b/src/backend/nodes/readfuncs.c index 7503b02c38..16a78e7234 100644 --- a/src/backend/nodes/readfuncs.c +++ b/src/backend/nodes/readfuncs.c @@ -1853,7 +1853,7 @@ _readTargetEntry(void) READ_UINT_FIELD(ressortgroupref); #ifdef XCP if (portable_input) - READ_RELID_FIELD(resorigtbl); + READ_RELID_FIELD_NOWARN(resorigtbl); else #endif READ_OID_FIELD(resorigtbl);