From: Pavan Deolasee Date: Fri, 30 Jun 2017 06:09:12 +0000 (+0530) Subject: Accept expected output changes in the 'gist' test case. X-Git-Tag: XL_10_R1BETA1~258 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=3647ef7fb27842a076e4259c8cbe3065f699231b;p=postgres-xl.git Accept expected output changes in the 'gist' test case. The change only involves addition of a Remote Subplan node in the explain plan. --- diff --git a/src/test/regress/expected/gist.out b/src/test/regress/expected/gist.out index 2a39705228..346fe4aed1 100644 --- a/src/test/regress/expected/gist.out +++ b/src/test/regress/expected/gist.out @@ -128,15 +128,17 @@ select p from (box(point(0.8,0.8), point(1.0,1.0)))) as v(bb) cross join lateral (select p from gist_tbl where p <@ bb order by p <-> bb[0] limit 2) ss; - QUERY PLAN --------------------------------------------------------------------- + QUERY PLAN +-------------------------------------------------------------------------------- Nested Loop -> Values Scan on "*VALUES*" -> Limit - -> Index Only Scan using gist_tbl_point_index on gist_tbl - Index Cond: (p <@ "*VALUES*".column1) - Order By: (p <-> ("*VALUES*".column1)[0]) -(6 rows) + -> Remote Subquery Scan on all (datanode_1) + -> Limit + -> Index Only Scan using gist_tbl_point_index on gist_tbl + Index Cond: (p <@ "*VALUES*".column1) + Order By: (p <-> ("*VALUES*".column1)[0]) +(8 rows) select p from (values (box(point(0,0), point(0.5,0.5))),