Bruce Momjian <[EMAIL PROTECTED]> writes:
> Is there a TODO here?
I've committed a fix for the immediate problem. I want to take a very
hard look at the other heap_mark4update calls, though.
regards, tom lane
---(end of broadcast)
Is there a TODO here?
---
Tom Lane wrote:
> Peter Eisentraut <[EMAIL PROTECTED]> writes:
> > The following happens in latest CVS and a fresh database:
> > create table test (a int);
> > insert into test values (1);
> > alte
Peter Eisentraut <[EMAIL PROTECTED]> writes:
> The following happens in latest CVS and a fresh database:
> create table test (a int);
> insert into test values (1);
> alter table test add column b text check (b <> '');
This bug's been there awhile I fear. The failure occurs when
AlterTableAddCol
On Thu, 5 Sep 2002, Stephan Szabo wrote:
>
> On Thu, 5 Sep 2002, Peter Eisentraut wrote:
>
> > The following happens in latest CVS and a fresh database:
> >
> > create table test (a int);
> > insert into test values (1);
> > alter table test add column b text check (b <> '');
> > alter table te
On Thu, 5 Sep 2002, Peter Eisentraut wrote:
> The following happens in latest CVS and a fresh database:
>
> create table test (a int);
> insert into test values (1);
> alter table test add column b text check (b <> '');
> alter table test add check (a > 0);
> alter table test add check (a <> 1);