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: XL_10_R1BETA1~340 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=9c00767510b952b5d18d074324fde65d370e5f00;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 9ffd93f7e7..933825cd74 100644 --- a/src/backend/nodes/readfuncs.c +++ b/src/backend/nodes/readfuncs.c @@ -1859,7 +1859,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);