Re: recovering from "found xmin ... from before relfrozenxid ..."

2020-07-28 Thread MBeena Emerson
Hello Ashutosh, On Fri, 24 Jul 2020 at 14:35, Ashutosh Sharma wrote: > > Hi All, > > Attached is the patch that adds heap_force_kill(regclass, tid[]) and > heap_force_freeze(regclass, tid[]) functions which Robert mentioned in the > first email in this thread. The patch basically adds an extens

Re: Error message inconsistency

2020-01-22 Thread MBeena Emerson
Hi Mahendra, Thanks for working on this. On Wed, 22 Jan 2020 at 13:26, Mahendra Singh Thalor wrote: > > On Tue, 21 Jan 2020 at 10:51, Amit Kapila wrote: > > > > On Mon, Jan 6, 2020 at 6:31 PM Mahendra Singh Thalor > > wrote: > > > > > > On Sat, 6 Jul 2019 at 09:53, Amit Kapila wrote: > > > >

Re: Error message inconsistency

2020-01-20 Thread MBeena Emerson
Hi Amit, On Tue, 21 Jan 2020 at 10:49, Amit Kapila wrote: > On Thu, Jan 9, 2020 at 5:42 PM MBeena Emerson > wrote: > > > > Hi Beena, > > It is better to reply inline. > > > Hi Mahendra, > > > > Thanks for the patch. > > I am not sure but

Re: Error message inconsistency

2020-01-09 Thread MBeena Emerson
Hi Mahendra, Thanks for the patch. I am not sure but maybe the relation name should also be added to the following test case? create table t4 (id int); insert into t4 values (1); ALTER TABLE t4 ADD CONSTRAINT c1 CHECK (id > 10) NOT VALID; -- succeeds ALTER TABLE t4 VALIDATE CONSTRAINT c1; *ERROR: