summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Vondra2017-08-30 22:42:15 +0000
committerTomas Vondra2017-08-30 22:42:15 +0000
commite7a05356da0e035dbd350f53244c5edd209b361b (patch)
tree86da7d37171e47a7fe97f6fc996486b24ca5de5e
parentb3cab1e648c9ff5f2a14cafa56a921aa980572f0 (diff)
Accept plan change in btree_gin contrib module
The upstream plan changes due to distributing to multiple nodes.
-rw-r--r--contrib/btree_gin/expected/enum.out19
1 files changed, 10 insertions, 9 deletions
diff --git a/contrib/btree_gin/expected/enum.out b/contrib/btree_gin/expected/enum.out
index 71e0c4bf40..44957f9a32 100644
--- a/contrib/btree_gin/expected/enum.out
+++ b/contrib/btree_gin/expected/enum.out
@@ -46,15 +46,16 @@ SELECT * FROM test_enum WHERE i>'g'::rainbow ORDER BY i;
(3 rows)
explain (costs off) SELECT * FROM test_enum WHERE i>='g'::rainbow ORDER BY i;
- QUERY PLAN
------------------------------------------------
- Sort
- Sort Key: i
- -> Bitmap Heap Scan on test_enum
- Recheck Cond: (i >= 'g'::rainbow)
- -> Bitmap Index Scan on idx_enum
- Index Cond: (i >= 'g'::rainbow)
-(6 rows)
+ QUERY PLAN
+-----------------------------------------------------
+ Remote Subquery Scan on all (datanode_1,datanode_2)
+ -> Sort
+ Sort Key: i
+ -> Bitmap Heap Scan on test_enum
+ Recheck Cond: (i >= 'g'::rainbow)
+ -> Bitmap Index Scan on idx_enum
+ Index Cond: (i >= 'g'::rainbow)
+(7 rows)
-- make sure we handle the non-evenly-numbered oid case for enums
create type e as enum ('0', '2', '3');