From: Tomas Vondra Date: Fri, 3 Mar 2017 23:03:01 +0000 (+0100) Subject: accept plan (added RemoteSubplan) in LockRows query ('select' suite) X-Git-Tag: XL_10_R1BETA1~383 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=c25fc44a73e9337002becec0eeb869e4bc0c97ea;p=postgres-xl.git accept plan (added RemoteSubplan) in LockRows query ('select' suite) Expected plan change for a new query added in the upstream, due to adding RemoteSubplan at the top. --- diff --git a/src/test/regress/expected/select.out b/src/test/regress/expected/select.out index d679fb3fe4..174d3b655f 100644 --- a/src/test/regress/expected/select.out +++ b/src/test/regress/expected/select.out @@ -812,13 +812,14 @@ select unique2 from onek2 where unique2 = 11 and stringu1 < 'B'; -- but if it's an update target, must retest anyway explain (costs off) select unique2 from onek2 where unique2 = 11 and stringu1 < 'B' for update; - QUERY PLAN ------------------------------------------------ - LockRows - -> Index Scan using onek2_u2_prtl on onek2 - Index Cond: (unique2 = 11) - Filter: (stringu1 < 'B'::name) -(4 rows) + QUERY PLAN +----------------------------------------------------- + Remote Subquery Scan on all (datanode_1,datanode_2) + -> LockRows + -> Index Scan using onek2_u2_prtl on onek2 + Index Cond: (unique2 = 11) + Filter: (stringu1 < 'B'::name) +(5 rows) select unique2 from onek2 where unique2 = 11 and stringu1 < 'B' for update; unique2