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');