RE: Internal error XX000 with enable_partition_pruning=on, pg 11beta1 on Debian
От | Phil Florent |
---|---|
Тема | RE: Internal error XX000 with enable_partition_pruning=on, pg 11beta1 on Debian |
Дата | |
Msg-id | DB7PR03MB47306F095D2E0BFA4B2D140CBA5D0@DB7PR03MB4730.eurprd03.prod.outlook.com обсуждение исходный текст |
Ответ на | Re: Internal error XX000 with enable_partition_pruning=on, pg 11beta1 on Debian (David Rowley <david.rowley@2ndquadrant.com>) |
Ответы |
Re: Internal error XX000 with enable_partition_pruning=on, pg 11beta1 on Debian
|
Список | pgsql-hackers |
Hi,
I should post that in the general section but I am confused by the sentence "A parent partition is always going to have a lower relid than its children"
www.postgresql.org Michael Fuhr <mike(at)fuhr(dot)org> writes: > On Thu, Mar 24, 2005 at 11:01:23PM -0300, Edson Vilhena de Carvalho wrote: >> Can anyone tell me what is a relid, a relname and |
In fact, I want to be sure I can say to the developers they will always be able to create tables and partitions in any order :
create table midparent1(c1 int, c2 int) partition by list(c2);
alter table midparent1 attach partition child1 for values in (1);
create table child2 partition of midparent1 for values in (2);
create table topparent(c1 int, c2 int) partition by list(c1);
alter table topparent attach partition midparent1 for values in (1);
relname | relkind | oid
------------+---------+--------
child1 | r | 123989
midparent1 | p | 123992
child2 | r | 123995
topparent | p | 123998
(4 lignes)
В списке pgsql-hackers по дате отправления: