@@ -2449,37 +2449,6 @@ create index ab_a3_b3_a_idx on ab_a3_b3 (a);
2449
2449
set enable_hashjoin = 0;
2450
2450
set enable_mergejoin = 0;
2451
2451
set enable_memoize = 0;
2452
- -- Temporarily install some debugging to investigate plan instability.
2453
- select c.relname,c.relpages,c.reltuples,i.indisvalid,s.autovacuum_count,s.autoanalyze_count
2454
- from pg_class c
2455
- left join pg_stat_all_tables s on c.oid = s.relid
2456
- left join pg_index i on c.oid = i.indexrelid
2457
- where c.relname like 'ab\_%' order by c.relname;
2458
- relname | relpages | reltuples | indisvalid | autovacuum_count | autoanalyze_count
2459
- ----------------+----------+-----------+------------+------------------+-------------------
2460
- ab_a1 | 0 | -1 | | 0 | 0
2461
- ab_a1_b1 | 0 | -1 | | 0 | 0
2462
- ab_a1_b1_a_idx | 1 | 0 | t | |
2463
- ab_a1_b2 | 0 | -1 | | 0 | 0
2464
- ab_a1_b2_a_idx | 1 | 0 | t | |
2465
- ab_a1_b3 | 0 | -1 | | 0 | 0
2466
- ab_a1_b3_a_idx | 1 | 0 | t | |
2467
- ab_a2 | 0 | -1 | | 0 | 0
2468
- ab_a2_b1 | 0 | -1 | | 0 | 0
2469
- ab_a2_b1_a_idx | 1 | 0 | t | |
2470
- ab_a2_b2 | 0 | -1 | | 0 | 0
2471
- ab_a2_b2_a_idx | 1 | 0 | t | |
2472
- ab_a2_b3 | 0 | -1 | | 0 | 0
2473
- ab_a2_b3_a_idx | 1 | 0 | t | |
2474
- ab_a3 | 0 | -1 | | 0 | 0
2475
- ab_a3_b1 | 0 | -1 | | 0 | 0
2476
- ab_a3_b1_a_idx | 1 | 0 | t | |
2477
- ab_a3_b2 | 0 | -1 | | 0 | 0
2478
- ab_a3_b2_a_idx | 1 | 0 | t | |
2479
- ab_a3_b3 | 0 | -1 | | 0 | 0
2480
- ab_a3_b3_a_idx | 1 | 0 | t | |
2481
- (21 rows)
2482
-
2483
2452
select explain_parallel_append('select avg(ab.a) from ab inner join lprt_a a on ab.a = a.a where a.a in(0, 0, 1)');
2484
2453
explain_parallel_append
2485
2454
--------------------------------------------------------------------------------------------------------
@@ -2855,37 +2824,6 @@ deallocate ab_q3;
2855
2824
deallocate ab_q4;
2856
2825
deallocate ab_q5;
2857
2826
deallocate ab_q6;
2858
- -- Temporarily install some debugging to investigate plan instability.
2859
- select c.relname,c.relpages,c.reltuples,i.indisvalid,s.autovacuum_count,s.autoanalyze_count
2860
- from pg_class c
2861
- left join pg_stat_all_tables s on c.oid = s.relid
2862
- left join pg_index i on c.oid = i.indexrelid
2863
- where c.relname like 'ab\_%' order by c.relname;
2864
- relname | relpages | reltuples | indisvalid | autovacuum_count | autoanalyze_count
2865
- ----------------+----------+-----------+------------+------------------+-------------------
2866
- ab_a1 | 0 | -1 | | 0 | 0
2867
- ab_a1_b1 | 0 | -1 | | 0 | 0
2868
- ab_a1_b1_a_idx | 1 | 0 | t | |
2869
- ab_a1_b2 | 0 | -1 | | 0 | 0
2870
- ab_a1_b2_a_idx | 1 | 0 | t | |
2871
- ab_a1_b3 | 0 | -1 | | 0 | 0
2872
- ab_a1_b3_a_idx | 1 | 0 | t | |
2873
- ab_a2 | 0 | -1 | | 0 | 0
2874
- ab_a2_b1 | 0 | -1 | | 0 | 0
2875
- ab_a2_b1_a_idx | 1 | 0 | t | |
2876
- ab_a2_b2 | 0 | -1 | | 0 | 0
2877
- ab_a2_b2_a_idx | 1 | 0 | t | |
2878
- ab_a2_b3 | 0 | -1 | | 0 | 0
2879
- ab_a2_b3_a_idx | 1 | 0 | t | |
2880
- ab_a3 | 0 | -1 | | 0 | 0
2881
- ab_a3_b1 | 0 | -1 | | 0 | 0
2882
- ab_a3_b1_a_idx | 1 | 0 | t | |
2883
- ab_a3_b2 | 0 | -1 | | 0 | 0
2884
- ab_a3_b2_a_idx | 1 | 0 | t | |
2885
- ab_a3_b3 | 0 | -1 | | 0 | 0
2886
- ab_a3_b3_a_idx | 1 | 0 | t | |
2887
- (21 rows)
2888
-
2889
2827
-- UPDATE on a partition subtree has been seen to have problems.
2890
2828
insert into ab values (1,2);
2891
2829
explain (analyze, costs off, summary off, timing off)
0 commit comments