Lists: | pgsql-generalpgsql-in-general |
---|
From: | Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com> |
---|---|
To: | pgsql-general(at)lists(dot)postgresql(dot)org, pgsql-in-general(at)postgresql(dot)org |
Subject: | Regarding use of single column as primary key on partitioned table |
Date: | 2024-09-28 04:25:57 |
Message-ID: | CAJCZko+pA8o3HDBuGzxzYjMo=Gm_8yBLk7Sod3Fdo-i0WAwLuA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-general pgsql-in-general |
Hi Team
test=> CREATE TABLE public.bet (
betid int4 NOT NULL,
externalbetid text NULL,
externalsystem text NULL,
placedon timestamptz NULL,
createdon timestamptz NULL
) partition by list (placedon) ;
CREATE TABLE
test=> alter table public.bet add primary key (betid);
ERROR: unique constraint on partitioned table must include all
partitioning columns
DETAIL: PRIMARY KEY constraint on table "bet" lacks column "placedon"
which is part of the partition key.
test=>
Can't we use primary key on singal column(betid) on partitioned table
rather than using composite key (placedon,betid)?
Regards,
Durga Mahesh
From: | "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com> |
---|---|
To: | Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com> |
Cc: | "pgsql-general(at)lists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>, "pgsql-in-general(at)postgresql(dot)org" <pgsql-in-general(at)postgresql(dot)org> |
Subject: | Re: Regarding use of single column as primary key on partitioned table |
Date: | 2024-09-28 04:39:21 |
Message-ID: | CAKFQuwarcToEtVZHOo5O_CBe4ZD2mGZM35R28kLn=MNi0D6X2w@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-general pgsql-in-general |
On Friday, September 27, 2024, Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com>
wrote:
>
> ERROR: unique constraint on partitioned table must include all
> partitioning columns
> DETAIL: PRIMARY KEY constraint on table "bet" lacks column "placedon"
> which is part of the partition key.
> test=>
>
> Can't we use primary key on singal column(betid) on partitioned table
> rather than using composite key (placedon,betid)?
>
No. It would be misleading to allow such a thing because a unique index
can only span a single partition.
David J.
From: | Christophe Pettus <xof(at)thebuild(dot)com> |
---|---|
To: | Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com> |
Cc: | pgsql-general(at)lists(dot)postgresql(dot)org, pgsql-in-general(at)postgresql(dot)org |
Subject: | Re: Regarding use of single column as primary key on partitioned table |
Date: | 2024-09-28 04:39:40 |
Message-ID: | 9841DB8A-C3D7-42F4-9AE1-83076CAB1576@thebuild.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-general pgsql-in-general |
> On Sep 27, 2024, at 21:25, Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com> wrote:
>
> Can't we use primary key on singal column(betid) on partitioned table rather than using composite key (placedon,betid)?
No. Any unique constraint on a partitioned table must include the partition key, including a primary key constraint.
From: | Ron Johnson <ronljohnsonjr(at)gmail(dot)com> |
---|---|
To: | pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Regarding use of single column as primary key on partitioned table |
Date: | 2024-09-28 04:49:35 |
Message-ID: | CANzqJaAknAV3vhxQ3tnJkGbHEmQJwWhi5jVW7wYkwZx4WQh2DA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-general pgsql-in-general |
On Sat, Sep 28, 2024 at 12:39 AM David G. Johnston <
david(dot)g(dot)johnston(at)gmail(dot)com> wrote:
> On Friday, September 27, 2024, Durgamahesh Manne <
> maheshpostgres9(at)gmail(dot)com> wrote:
>
>>
>> ERROR: unique constraint on partitioned table must include all
>> partitioning columns
>> DETAIL: PRIMARY KEY constraint on table "bet" lacks column "placedon"
>> which is part of the partition key.
>> test=>
>>
>> Can't we use primary key on singal column(betid) on partitioned table
>> rather than using composite key (placedon,betid)?
>>
>
> No. It would be misleading to allow such a thing because a unique index
> can only span a single partition.
>
That is IMO a serious (and probably unfixable, given how PG stores tables)
flaw in PG's partitioning design.
--
Death to <Redacted>, and butter sauce.
Don't boil me, I'm still alive.
<Redacted> crustacean!
From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Ron Johnson <ronljohnsonjr(at)gmail(dot)com> |
Cc: | pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Regarding use of single column as primary key on partitioned table |
Date: | 2024-09-28 04:55:06 |
Message-ID: | 771900.1727499306@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-general pgsql-in-general |
Ron Johnson <ronljohnsonjr(at)gmail(dot)com> writes:
> On Sat, Sep 28, 2024 at 12:39 AM David G. Johnston <
> david(dot)g(dot)johnston(at)gmail(dot)com> wrote:
>> On Friday, September 27, 2024, Durgamahesh Manne <
>>> Can't we use primary key on singal column(betid) on partitioned table
>>> rather than using composite key (placedon,betid)?
>> No. It would be misleading to allow such a thing because a unique index
>> can only span a single partition.
> That is IMO a serious (and probably unfixable, given how PG stores tables)
> flaw in PG's partitioning design.
You can call it a flaw if you want, but it's an intentional design
limitation. The only way to relax it would be to invent global
indexes (that is, single indexes covering the entire partitioning
tree), which would basically throw away every advantage of making
a partitioned structure in the first place. If that's what you
want, don't partition your table.
regards, tom lane
From: | Ron Johnson <ronljohnsonjr(at)gmail(dot)com> |
---|---|
To: | pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Regarding use of single column as primary key on partitioned table |
Date: | 2024-09-28 05:15:49 |
Message-ID: | CANzqJaD1AEf-cb9s1-OaOetx-VTboZJ=YhkhSKu+LDJ9x-2_7g@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-general pgsql-in-general |
On Sat, Sep 28, 2024 at 12:55 AM Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Ron Johnson <ronljohnsonjr(at)gmail(dot)com> writes:
> > On Sat, Sep 28, 2024 at 12:39 AM David G. Johnston <
> > david(dot)g(dot)johnston(at)gmail(dot)com> wrote:
> >> On Friday, September 27, 2024, Durgamahesh Manne <
> >>> Can't we use primary key on singal column(betid) on partitioned table
> >>> rather than using composite key (placedon,betid)?
>
> >> No. It would be misleading to allow such a thing because a unique index
> >> can only span a single partition.
>
> > That is IMO a serious (and probably unfixable, given how PG stores
> tables)
> > flaw in PG's partitioning design.
>
> You can call it a flaw if you want, but it's an intentional design
> limitation. The only way to relax it would be to invent global
> indexes (that is, single indexes covering the entire partitioning
> tree), which would basically throw away every advantage of making
> a partitioned structure in the first place.
We've had this discussion before. As a DBA, I don't think that requiring
that global indices be dropped before, and recreated after, ATTACH or
DETACH is onerous, but you do.
(I did that every six months for 15 years on a legacy system which supports
global indices. One other feature that it had was the ability to create
multiple indices on the same table, at the same time, in different
transactions, by setting the isolation level to SHARED DATA DEFINITION,
which was specifically and only for that situation.)
If that's what you want, don't partition your table.
>
Or accept partitioning by the synthetic PK (which is often -- though not
always -- a reasonable approximation of timestamp).
--
Death to <Redacted>, and butter sauce.
Don't boil me, I'm still alive.
<Redacted> crustacean!