Accept expected output changes in the 'gist' test case.
authorPavan Deolasee <pavan.deolasee@gmail.com>
Fri, 30 Jun 2017 06:09:12 +0000 (11:39 +0530)
committerPavan Deolasee <pavan.deolasee@gmail.com>
Fri, 30 Jun 2017 06:09:12 +0000 (11:39 +0530)
The change only involves addition of a Remote Subplan node in the explain plan.

src/test/regress/expected/gist.out

index 2a39705228466def63db2564e4ffe65b787edfdf..346fe4aed1537a23512c0e09a731f6080de684d6 100644 (file)
@@ -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))),