Re: Assertion failure when ATTACH partition followed by CREATE PARTITION.

2020-10-30 Thread Tom Lane
Justin Pryzby writes: > Not sure if Tom saw this yet. Indeed, I'd not been paying attention. Fix looks good, pushed. regards, tom lane

Re: Assertion failure when ATTACH partition followed by CREATE PARTITION.

2020-10-30 Thread Justin Pryzby
Not sure if Tom saw this yet. On Tue, Oct 27, 2020 at 10:56:01AM +0530, Amul Sul wrote: > On Mon, Oct 19, 2020 at 4:58 PM Amul Sul wrote: > > > > Hi, > > > > Assertion added in commits 6b2c4e59d016 is failing with following test: > > > > CREATE TABLE sales > > ( > > prod_id int, > >

Re: Assertion failure when ATTACH partition followed by CREATE PARTITION.

2020-10-26 Thread Amul Sul
Hi, On Mon, Oct 19, 2020 at 4:58 PM Amul Sul wrote: > > Hi, > > Assertion added in commits 6b2c4e59d016 is failing with following test: > > CREATE TABLE sales > ( > prod_id int, > prod_quantity int, > sold_monthdate > ) PARTITION BY RANGE(sold_month); > > CREATE TABLE

Assertion failure when ATTACH partition followed by CREATE PARTITION.

2020-10-19 Thread Amul Sul
Hi, Assertion added in commits 6b2c4e59d016 is failing with following test: CREATE TABLE sales ( prod_id int, prod_quantity int, sold_monthdate ) PARTITION BY RANGE(sold_month); CREATE TABLE public.sales_p1 PARTITION OF public.sales FOR VALUES FROM (MINVALUE) TO