@@ -847,11 +847,11 @@ SET enable_seqscan = off;
847
847
-- make sure the ranges were built correctly and 2023-01-01 eliminates all
848
848
EXPLAIN (ANALYZE, TIMING OFF, COSTS OFF, SUMMARY OFF, BUFFERS OFF)
849
849
SELECT * FROM brin_date_test WHERE a = '2023-01-01'::date;
850
- QUERY PLAN
851
- -------------------------------------------------------------------------
852
- Bitmap Heap Scan on brin_date_test (actual rows=0 loops=1)
850
+ QUERY PLAN
851
+ ----------------------------------------------------------------------------
852
+ Bitmap Heap Scan on brin_date_test (actual rows=0.00 loops=1)
853
853
Recheck Cond: (a = '2023-01-01'::date)
854
- -> Bitmap Index Scan on brin_date_test_a_idx (actual rows=0 loops=1)
854
+ -> Bitmap Index Scan on brin_date_test_a_idx (actual rows=0.00 loops=1)
855
855
Index Cond: (a = '2023-01-01'::date)
856
856
(4 rows)
857
857
@@ -866,21 +866,21 @@ CREATE INDEX ON brin_timestamp_test USING brin (a timestamp_minmax_multi_ops) WI
866
866
SET enable_seqscan = off;
867
867
EXPLAIN (ANALYZE, TIMING OFF, COSTS OFF, SUMMARY OFF, BUFFERS OFF)
868
868
SELECT * FROM brin_timestamp_test WHERE a = '2023-01-01'::timestamp;
869
- QUERY PLAN
870
- ------------------------------------------------------------------------------
871
- Bitmap Heap Scan on brin_timestamp_test (actual rows=0 loops=1)
869
+ QUERY PLAN
870
+ ---------------------------------------------------------------------------------
871
+ Bitmap Heap Scan on brin_timestamp_test (actual rows=0.00 loops=1)
872
872
Recheck Cond: (a = '2023-01-01 00:00:00'::timestamp without time zone)
873
- -> Bitmap Index Scan on brin_timestamp_test_a_idx (actual rows=0 loops=1)
873
+ -> Bitmap Index Scan on brin_timestamp_test_a_idx (actual rows=0.00 loops=1)
874
874
Index Cond: (a = '2023-01-01 00:00:00'::timestamp without time zone)
875
875
(4 rows)
876
876
877
877
EXPLAIN (ANALYZE, TIMING OFF, COSTS OFF, SUMMARY OFF, BUFFERS OFF)
878
878
SELECT * FROM brin_timestamp_test WHERE a = '1900-01-01'::timestamp;
879
- QUERY PLAN
880
- ------------------------------------------------------------------------------
881
- Bitmap Heap Scan on brin_timestamp_test (actual rows=0 loops=1)
879
+ QUERY PLAN
880
+ ---------------------------------------------------------------------------------
881
+ Bitmap Heap Scan on brin_timestamp_test (actual rows=0.00 loops=1)
882
882
Recheck Cond: (a = '1900-01-01 00:00:00'::timestamp without time zone)
883
- -> Bitmap Index Scan on brin_timestamp_test_a_idx (actual rows=0 loops=1)
883
+ -> Bitmap Index Scan on brin_timestamp_test_a_idx (actual rows=0.00 loops=1)
884
884
Index Cond: (a = '1900-01-01 00:00:00'::timestamp without time zone)
885
885
(4 rows)
886
886
@@ -894,21 +894,21 @@ CREATE INDEX ON brin_date_test USING brin (a date_minmax_multi_ops) WITH (pages_
894
894
SET enable_seqscan = off;
895
895
EXPLAIN (ANALYZE, TIMING OFF, COSTS OFF, SUMMARY OFF, BUFFERS OFF)
896
896
SELECT * FROM brin_date_test WHERE a = '2023-01-01'::date;
897
- QUERY PLAN
898
- -------------------------------------------------------------------------
899
- Bitmap Heap Scan on brin_date_test (actual rows=0 loops=1)
897
+ QUERY PLAN
898
+ ----------------------------------------------------------------------------
899
+ Bitmap Heap Scan on brin_date_test (actual rows=0.00 loops=1)
900
900
Recheck Cond: (a = '2023-01-01'::date)
901
- -> Bitmap Index Scan on brin_date_test_a_idx (actual rows=0 loops=1)
901
+ -> Bitmap Index Scan on brin_date_test_a_idx (actual rows=0.00 loops=1)
902
902
Index Cond: (a = '2023-01-01'::date)
903
903
(4 rows)
904
904
905
905
EXPLAIN (ANALYZE, TIMING OFF, COSTS OFF, SUMMARY OFF, BUFFERS OFF)
906
906
SELECT * FROM brin_date_test WHERE a = '1900-01-01'::date;
907
- QUERY PLAN
908
- -------------------------------------------------------------------------
909
- Bitmap Heap Scan on brin_date_test (actual rows=0 loops=1)
907
+ QUERY PLAN
908
+ ----------------------------------------------------------------------------
909
+ Bitmap Heap Scan on brin_date_test (actual rows=0.00 loops=1)
910
910
Recheck Cond: (a = '1900-01-01'::date)
911
- -> Bitmap Index Scan on brin_date_test_a_idx (actual rows=0 loops=1)
911
+ -> Bitmap Index Scan on brin_date_test_a_idx (actual rows=0.00 loops=1)
912
912
Index Cond: (a = '1900-01-01'::date)
913
913
(4 rows)
914
914
@@ -923,21 +923,21 @@ CREATE INDEX ON brin_interval_test USING brin (a interval_minmax_multi_ops) WITH
923
923
SET enable_seqscan = off;
924
924
EXPLAIN (ANALYZE, TIMING OFF, COSTS OFF, SUMMARY OFF, BUFFERS OFF)
925
925
SELECT * FROM brin_interval_test WHERE a = '-30 years'::interval;
926
- QUERY PLAN
927
- -----------------------------------------------------------------------------
928
- Bitmap Heap Scan on brin_interval_test (actual rows=0 loops=1)
926
+ QUERY PLAN
927
+ --------------------------------------------------------------------------------
928
+ Bitmap Heap Scan on brin_interval_test (actual rows=0.00 loops=1)
929
929
Recheck Cond: (a = '@ 30 years ago'::interval)
930
- -> Bitmap Index Scan on brin_interval_test_a_idx (actual rows=0 loops=1)
930
+ -> Bitmap Index Scan on brin_interval_test_a_idx (actual rows=0.00 loops=1)
931
931
Index Cond: (a = '@ 30 years ago'::interval)
932
932
(4 rows)
933
933
934
934
EXPLAIN (ANALYZE, TIMING OFF, COSTS OFF, SUMMARY OFF, BUFFERS OFF)
935
935
SELECT * FROM brin_interval_test WHERE a = '30 years'::interval;
936
- QUERY PLAN
937
- -----------------------------------------------------------------------------
938
- Bitmap Heap Scan on brin_interval_test (actual rows=0 loops=1)
936
+ QUERY PLAN
937
+ --------------------------------------------------------------------------------
938
+ Bitmap Heap Scan on brin_interval_test (actual rows=0.00 loops=1)
939
939
Recheck Cond: (a = '@ 30 years'::interval)
940
- -> Bitmap Index Scan on brin_interval_test_a_idx (actual rows=0 loops=1)
940
+ -> Bitmap Index Scan on brin_interval_test_a_idx (actual rows=0.00 loops=1)
941
941
Index Cond: (a = '@ 30 years'::interval)
942
942
(4 rows)
943
943
@@ -951,21 +951,21 @@ CREATE INDEX ON brin_interval_test USING brin (a interval_minmax_multi_ops) WITH
951
951
SET enable_seqscan = off;
952
952
EXPLAIN (ANALYZE, TIMING OFF, COSTS OFF, SUMMARY OFF, BUFFERS OFF)
953
953
SELECT * FROM brin_interval_test WHERE a = '-30 years'::interval;
954
- QUERY PLAN
955
- -----------------------------------------------------------------------------
956
- Bitmap Heap Scan on brin_interval_test (actual rows=0 loops=1)
954
+ QUERY PLAN
955
+ --------------------------------------------------------------------------------
956
+ Bitmap Heap Scan on brin_interval_test (actual rows=0.00 loops=1)
957
957
Recheck Cond: (a = '@ 30 years ago'::interval)
958
- -> Bitmap Index Scan on brin_interval_test_a_idx (actual rows=0 loops=1)
958
+ -> Bitmap Index Scan on brin_interval_test_a_idx (actual rows=0.00 loops=1)
959
959
Index Cond: (a = '@ 30 years ago'::interval)
960
960
(4 rows)
961
961
962
962
EXPLAIN (ANALYZE, TIMING OFF, COSTS OFF, SUMMARY OFF, BUFFERS OFF)
963
963
SELECT * FROM brin_interval_test WHERE a = '30 years'::interval;
964
- QUERY PLAN
965
- -----------------------------------------------------------------------------
966
- Bitmap Heap Scan on brin_interval_test (actual rows=0 loops=1)
964
+ QUERY PLAN
965
+ --------------------------------------------------------------------------------
966
+ Bitmap Heap Scan on brin_interval_test (actual rows=0.00 loops=1)
967
967
Recheck Cond: (a = '@ 30 years'::interval)
968
- -> Bitmap Index Scan on brin_interval_test_a_idx (actual rows=0 loops=1)
968
+ -> Bitmap Index Scan on brin_interval_test_a_idx (actual rows=0.00 loops=1)
969
969
Index Cond: (a = '@ 30 years'::interval)
970
970
(4 rows)
971
971
0 commit comments