Re: small bug? "ERROR: exprType: Do not know how to get type for 711 node"

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Ian Barwick <barwick(at)gmx(dot)net>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: small bug? "ERROR: exprType: Do not know how to get type for 711 node"
Date: 2002-12-27 17:41:31
Message-ID: 25329.1041010891@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Ian Barwick <barwick(at)gmx(dot)net> writes:
> test=# create table foo (bar int);
> CREATE TABLE
> test=# update foo set foo=1 where foo=1;
> ERROR: exprType: Do not know how to get type for 711 node

Hmm, that used to behave properly in 7.2:

regression=# create table foo (bar int);
CREATE
regression=# update foo set foo=1 where foo=1;
ERROR: Attribute 'foo' not found

Looks like we rearranged the order of operations and error checks in a
bad way. Will look into it.

regards, tom lane

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2002-12-27 20:08:01 Re: small bug? "ERROR: exprType: Do not know how to get type for 711 node"
Previous Message Tom Lane 2002-12-27 17:30:19 Re: Bug #860: [7.3.x] pg_config --configure not readily usable