aboutsummaryrefslogtreecommitdiff
path: root/contrib/btree_gist/expected/varbit.out
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/btree_gist/expected/varbit.out')
-rw-r--r--contrib/btree_gist/expected/varbit.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/btree_gist/expected/varbit.out b/contrib/btree_gist/expected/varbit.out
index 538ace85c90..ede36bc3ead 100644
--- a/contrib/btree_gist/expected/varbit.out
+++ b/contrib/btree_gist/expected/varbit.out
@@ -68,9 +68,9 @@ SELECT count(*) FROM varbittmp WHERE a > '1110100111010'::varbit;
SET enable_bitmapscan=off;
EXPLAIN (COSTS OFF)
SELECT a FROM bittmp WHERE a BETWEEN '1000000' and '1000001';
- QUERY PLAN
------------------------------------------------------------------------
+ QUERY PLAN
+---------------------------------------------------------------------
Index Only Scan using bitidx on bittmp
- Index Cond: ((a >= B'1000000'::"bit") AND (a <= B'1000001'::"bit"))
+ Index Cond: ((a >= '1000000'::"bit") AND (a <= '1000001'::"bit"))
(2 rows)