relispartition for index partitions - Mailing list pgsql-hackers

From Amit Langote
Subject relispartition for index partitions
Date
Msg-id 12085bc4-0bc6-0f3a-4c43-57fe0681772b@lab.ntt.co.jp
Whole thread Raw
Responses Re: relispartition for index partitions
Re: relispartition for index partitions
List pgsql-hackers
Hi.

I noticed that relispartition isn't set for index's partitions.

create table p (a int) partition by list (a);
create table p12 partition of p for values in (1, 2);
create index on p (a);
select relname, relkind from pg_class where relnamespace =
'public'::regnamespace and relispartition is true;
 relname | relkind
---------+---------
 p12     | r
(1 row)

Is that intentional?

Thanks,
Amit



pgsql-hackers by date:

Previous
From: Laurenz Albe
Date:
Subject: Re: \describe*
Next
From: Amit Langote
Date:
Subject: Re: [Sender Address Forgery]Re: pg_(total_)relation_size andpartitioned tables