From: | Robert Haas <robertmhaas(at)gmail(dot)com> |
---|---|
To: | Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp> |
Cc: | Rajkumar Raghuwanshi <rajkumar(dot)raghuwanshi(at)enterprisedb(dot)com>, Amit Langote <amitlangote09(at)gmail(dot)com>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org>, pgsql-hackers-owner(at)postgresql(dot)org |
Subject: | Re: Declarative partitioning - another take |
Date: | 2017-05-01 12:30:37 |
Message-ID: | CA+Tgmoadpcs3=mMgdyqVX7L7L_PwO_Dn5j-98a6Tj7ByBuimUQ@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Mon, May 1, 2017 at 12:18 AM, Amit Langote
<Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp> wrote:
> Attached updated patch.
Committed, except for this bit:
+ A statement-level trigger defined on partitioned tables is fired only
+ once for the table itself, not once for every table in the partitioning
+ hierarchy. However, row-level triggers of any affected leaf partitions
+ will be fired.
The first sentence there has a number of issues. Grammatically, there
is an agreement problem: trigger is singular, but partitioned table is
plural, and one trigger isn't defined across multiple tables. It
would have to say something like "A statement-level trigger defined on
a partitioned table". But even with that correction, it's not really
saying what you want it to say. Nobody would expect that the same
statement-level trigger would be fired multiple times. The issue is
whether statement-level triggers on the partitions themselves will be
fired, not the statement-level trigger on the partitioned table.
Also, if this applies to inheritance as well as partitioning, then why
mention only partitioning? I think we might want to document
something more here, but not like this.
--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2017-05-01 12:40:07 | Re: PG 10 release notes |
Previous Message | Robert Haas | 2017-05-01 12:12:51 | Re: SCRAM in the PG 10 release notes |