@@ -2449,37 +2449,6 @@ create index ab_a3_b3_a_idx on ab_a3_b3 (a);
24492449set enable_hashjoin = 0;
24502450set enable_mergejoin = 0;
24512451set 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-
24832452select 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)');
24842453 explain_parallel_append
24852454--------------------------------------------------------------------------------------------------------
@@ -2855,37 +2824,6 @@ deallocate ab_q3;
28552824deallocate ab_q4;
28562825deallocate ab_q5;
28572826deallocate 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-
28892827-- UPDATE on a partition subtree has been seen to have problems.
28902828insert into ab values (1,2);
28912829explain (analyze, costs off, summary off, timing off)
0 commit comments