On Thu, Jun 15, 2017 at 11:20 AM, Beena Emerson <[email protected]> wrote: > Hello, > > PFA the updated patch. > This is rebased over v21 patches of list partition. > (http://www.mail-archive.com/[email protected]/msg316818.html)
While testing I have noticed segmentation fault for a simple case. create table test(a int, b int) partition by range(a,b); create table test1 partition of test DEFAULT; postgres=# drop table test1; server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request. This is basically crashing in RelationBuildPartitionDesc, so I think we don't have any test case for testing DEFAULT range partition where partition key has more than one attribute. So I suggest we can add such test case. -- Regards, Dilip Kumar EnterpriseDB: http://www.enterprisedb.com -- Sent via pgsql-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
