postgres_fdw: Avoid sharing list substructure. list_concat(list_concat(a, b), c) destructively changes both a and b; to avoid such perils, copy lists of remote_conds before incorporating them into larger lists via list_concat().
Ashutosh Bapat, per a report from Etsuro Fujita Branch ------ master Details ------- http://git.postgresql.org/pg/commitdiff/dd077ef832e1ec7f5ba2a706152d22647a3b80f5 Modified Files -------------- contrib/postgres_fdw/postgres_fdw.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
