From: | Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp> |
---|---|
To: | Pg Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | RENAME RULE doesn't work with partitioned tables |
Date: | 2017-04-11 09:54:34 |
Message-ID: | 52d9c443-ec78-5c8a-7a77-0f34aad12b82@lab.ntt.co.jp |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Just noticed that RangeVarCallbackForRenameRule() was not updated to
handle partitioned tables, causing the following bug:
create table parted_table (a int) partition by list (a);
create table part partition of parted_table for values in (1);
create rule parted_table_insert as on insert to parted_table
do instead insert into part values (new.*);
alter rule parted_table_insert on parted_table
rename to parted_table_insert_redirect;
-- ERROR: "parted_table" is not a table or view
Attached fixes this and adds a test. Added to open items list.
Thanks,
Amit
Attachment | Content-Type | Size |
---|---|---|
0001-Fix-RENAME-RULE-to-consider-partitioned-tables.patch | text/x-diff | 2.7 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Heikki Linnakangas | 2017-04-11 10:23:29 | Re: Letting the client choose the protocol to use during a SASL exchange |
Previous Message | Ashutosh Bapat | 2017-04-11 09:53:13 | Re: [sqlsmith] ERROR: badly formatted node string "RESTRICTINFO... |