Re: pg_partition_tree crashes for a non-defined relation
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Amit Langote <Langote_Amit_f8@lab.ntt.co.jp>
Cc: Michael Paquier <michael@paquier.xyz>,
Alvaro Herrera <alvherre@2ndquadrant.com>,
Stephen Frost <sfrost@snowman.net>,
Postgres hackers <pgsql-hackers@postgresql.org>
Date: 2019-03-01T04:50:16Z
Lists: pgsql-hackers
Amit Langote <Langote_Amit_f8@lab.ntt.co.jp> writes: > On 2019/03/01 9:22, Michael Paquier wrote: >> What I am writing next sounds perhaps a bit fancy, but in my opinion a >> normal table is itself a partition tree, made of one single member: >> itself. > That's what we discussed, but it seems that we ended up allowing regular > standalone tables (possibly in inheritance trees) only because it > *appeared* to work. Alvaro already pointed out what appears to be a bug > in how we compute the value of level. Instead of trying to fix it, I > agree we should just disallow tables that are not a partitioned > table/index or a partition (relispartition). FWIW, I don't agree with Michael's suggestion above. A plain table is significantly different from a partitioned table with no children: you can store rows in the former but not the latter, and you can add partitions to the latter but not the former. So conflating the two doesn't seem likely to lead to any good outcome. But, having said that, we've learned that it's generally bad for catalog-query functions to fail outright just because they're pointed at the wrong kind of catalog object. So I think that what we want here is for pg_partition_tree to return NULL or an empty set or some such for a plain table, while its output for a childless partitioned table should be visibly different from that. I'm not wedded to details beyond that idea. regards, tom lane
Commits
-
Test partition functions with legacy inheritance children, too
- d12fbe2f8e5d 12.0 landed
-
Consider only relations part of partition trees in partition functions
- 3422955735d9 12.0 landed
-
Make pg_partition_tree return no rows on unsupported and undefined objects
- 0f3cdf873e7d 12.0 landed
-
Tweak pg_partition_tree for undefined relations and unsupported relkinds
- cc53123bcc9d 12.0 landed