summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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');