diff options
author | Pavan Deolasee | 2017-06-30 06:09:12 +0000 |
---|---|---|
committer | Pavan Deolasee | 2017-06-30 06:09:12 +0000 |
commit | 3647ef7fb27842a076e4259c8cbe3065f699231b (patch) | |
tree | b3d8b2af5ec7735ba73b8672cfa52ad9336724fd | |
parent | 7ba736dd0344f3af6ee00f474648480efa96bf0d (diff) |
Accept expected output changes in the 'gist' test case.
The change only involves addition of a Remote Subplan node in the explain plan.
-rw-r--r-- | src/test/regress/expected/gist.out | 14 |
1 files changed, 8 insertions, 6 deletions
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))), |