File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3812,7 +3812,7 @@ SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01';
3812
3812
SET enable_partition_pruning = off;
3813
3813
EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01';
3814
3814
QUERY PLAN
3815
- ───────────────────────────────────────────────────────────────────────────────────
3815
+ -----------------------------------------------------------------------------------
3816
3816
Aggregate (cost=188.76..188.77 rows=1 width=8)
3817
3817
-> Append (cost=0.00..181.05 rows=3085 width=0)
3818
3818
-> Seq Scan on measurement_y2006m02 (cost=0.00..33.12 rows=617 width=0)
@@ -3837,7 +3837,7 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01';
3837
3837
SET enable_partition_pruning = on;
3838
3838
EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01';
3839
3839
QUERY PLAN
3840
- ───────────────────────────────────────────────────────────────────────────────────
3840
+ -----------------------------------------------------------------------------------
3841
3841
Aggregate (cost=37.75..37.76 rows=1 width=8)
3842
3842
-> Append (cost=0.00..36.21 rows=617 width=0)
3843
3843
-> Seq Scan on measurement_y2008m01 (cost=0.00..33.12 rows=617 width=0)
You can’t perform that action at this time.
0 commit comments