Re: [HACKERS] Adding support for Default partition in partitioning - Mailing list pgsql-hackers

From amul sul
Subject Re: [HACKERS] Adding support for Default partition in partitioning
Date
Msg-id CAAJ_b949rfMenBZvydHfr_=y1cpKkdEuFu1fWHyz-9+6w3KndQ@mail.gmail.com
Whole thread Raw
In response to Re: [HACKERS] Adding support for Default partition in partitioning  (Rahila Syed <rahilasyed90@gmail.com>)
Responses Re: [HACKERS] Adding support for Default partition in partitioning  (Rahila Syed <rahilasyed90@gmail.com>)
List pgsql-hackers
On Tue, May 2, 2017 at 9:33 PM, Rahila Syed <rahilasyed90@gmail.com> wrote:
> Please find attached updated patch with review comments by Robert and Jeevan
> implemented.
>
Patch v8 got clean apply on latest head but server got crash at data
insert in the following test:

-- Create test table
CREATE TABLE test ( a int, b date) PARTITION BY LIST (a);
CREATE TABLE p1 PARTITION OF test FOR VALUES IN  (DEFAULT) PARTITION BY LIST(b);
CREATE TABLE p11 PARTITION OF p1 FOR VALUES IN (DEFAULT);

-- crash
INSERT INTO test VALUES (210,'1/1/2002');

Regards,
Amul



pgsql-hackers by date:

Previous
From: tushar
Date:
Subject: Re: [HACKERS] statement_timeout is not working as expected withpostgres_fdw
Next
From: tushar
Date:
Subject: Re: [HACKERS] statement_timeout is not working as expected withpostgres_fdw