Re: Auto creation of Partitions

Поиск
Список
Период
Сортировка
От Simon Riggs
Тема Re: Auto creation of Partitions
Дата
Msg-id 1173263201.3760.2278.camel@silverbirch.site
обсуждение исходный текст
Ответ на Re: Auto creation of Partitions  (NikhilS <nikkhils@gmail.com>)
Ответы Re: Auto creation of Partitions  (NikhilS <nikkhils@gmail.com>)
Re: Auto creation of Partitions  ("Luke Lonergan" <llonergan@greenplum.com>)
Re: Auto creation of Partitions  (Jim Nasby <decibel@decibel.org>)
Список pgsql-hackers
On Tue, 2007-03-06 at 18:31 +0530, NikhilS wrote:

> On 3/6/07, Peter Eisentraut <peter_e@gmx.net> wrote:
>         NikhilS wrote:
>         > iv) Based on the PRIMARY, UNIQUE, REFERENCES information
>         specified,
>         > pass it on to the children tables.
>         
>         How will you maintain a primary key in such a table,
>         considering that
>         indexes can't span multiple tables?
> 
> We will not (I know its a hard thing to do :) ), the intention is to
> use this information from the parent and make it a property of the
> child table. This will avoid the step for the user having to manually
> specify CREATE INDEX and the likes on all the children tables
> one-by-one. 

If you know that the constraints on each of the tables is distinct, then
building a UNIQUE index on each of the partitions is sufficient to prove
that all rows in the combined partitioned table are distinct also.

The hard part there is checking that the partition constraints are
distinct. If the partition constraints are added one at a time, you can
use the predicate testing logic to compare the to-be-added partition's
constraint against each of the already added constraints. That becomes
an O(N) problem.

What is really needed is a data structure that allows range partitions
to be accessed more efficiently. This could make adding partitions and
deciding in which partition a specific value goes an O(logN) operation.

--  Simon Riggs              EnterpriseDB   http://www.enterprisedb.com




В списке pgsql-hackers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: Auto creation of Partitions
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: Grouped Index Tuples / Clustered Indexes