Re: ALTER TABLE .. DETACH PARTITION CONCURRENTLY

From: Justin Pryzby <pryzby(at)telsasoft(dot)com>
To: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
Cc: Amit Langote <amitlangote09(at)gmail(dot)com>, pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: ALTER TABLE .. DETACH PARTITION CONCURRENTLY
Date: 2021-04-13 17:58:48
Message-ID: 20210413175848.GH6091@telsasoft.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Sat, Apr 10, 2021 at 01:42:26PM -0500, Justin Pryzby wrote:
> On Sun, Mar 21, 2021 at 03:01:15PM -0300, Alvaro Herrera wrote:
> > > But note that it doesn't check if an existing constraint "implies" the new
> > > constraint - maybe it should.
> >
> > Hm, I'm not sure I want to do that, because that means that if I later
> > have to attach the partition again with the same partition bounds, then
> > I might have to incur a scan to recheck the constraint. I think we want
> > to make the new constraint be as tight as possible ...
>
> If it *implies* the partition constraint, then it's at least as tight (and
> maybe tighter), yes ?
>
> I think you're concerned with the case that someone has a partition with
> "tight" bounds like (a>=200 and a<300) and a check constraint that's "less
> tight" like (a>=100 AND a<400). In that case, the loose check constraint
> doesn't imply the tighter partition constraint, so your patch would add a
> non-redundant constraint.
>
> I'm interested in the case that someone has a check constraint that almost but
> not exactly matches the partition constraint, like (a<300 AND a>=200). In that
> case, your patch adds a redundant constraint.
>
> I wrote a patch which seems to effect my preferred behavior - please check.

On Sat, Apr 10, 2021 at 02:13:26PM -0500, Justin Pryzby wrote:
> I suppose the docs should be updated for the exact behavior, maybe even without
> this patch:
>
> |A <literal>CHECK</literal> constraint
> |that duplicates the partition constraint is added to the partition.

I added this as an Opened Item, since it affects user-visible behavior:
whether or not a redundant, non-equal constraint is added.

--
Justin

Browse pgsql-hackers by date

  From Date Subject
Next Message Nhi Dang 2021-04-13 18:01:16 GSoC 2021 Proposal Document
Previous Message Bryn Llewellyn 2021-04-13 17:55:31 Re: Have I found an interval arithmetic bug?