Re: partition tree inspection functions

From: Jesper Pedersen <jesper(dot)pedersen(at)redhat(dot)com>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp>, Michael Paquier <michael(at)paquier(dot)xyz>, Jeevan Ladhe <jeevan(dot)ladhe(at)enterprisedb(dot)com>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: partition tree inspection functions
Date: 2018-08-03 13:11:50
Message-ID: be99c5e5-2b2b-f29c-6674-11561ce6a31f@redhat.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

On 08/03/2018 08:59 AM, Robert Haas wrote:
> On Fri, Aug 3, 2018 at 8:35 AM, Jesper Pedersen
> <jesper(dot)pedersen(at)redhat(dot)com> wrote:
>> If you are given a leaf partition as input, then you will have to keep
>> executing the query until you find the root, and count those. So, I think it
>> should be either be the level to the root, or there should be another column
>> that lists that (rootlevel).
>
> I disagree. I think Amit has got the right semantics -- it gives you
> everything rooted at the partition you name, relative to that root.
> We could have another function which, given the OID of a partition,
> returns the topmost parent (or the immediate parent), but I think that
> if you say "tell me all the partitions of X", it should just tell you
> about stuff that's under X, regardless of what's over X.
>

We had the 2 pg_partition_level() functions and
pg_partition_leaf_children() in v8, so it would be good to get those back.

Best regards,
Jesper

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Etsuro Fujita 2018-08-03 13:18:34 Re: Expression errors with "FOR UPDATE" and postgres_fdw with partition wise join enabled.
Previous Message Alexandra Ryzhevich 2018-08-03 13:08:27 Re: [PATCH] Add regress test for pg_read_all_stats role