Re: problem with NOTICE: _outNode: don't know how to print type

From: Joseph Shraibman <jks(at)selectacast(dot)net>
To: Martijn van Oosterhout <kleptog(at)cupid(dot)suninternet(dot)com>
Cc: Ari Jolma <ajolma(at)water(dot)hut(dot)fi>, pgsql-general(at)postgresql(dot)org
Subject: Re: problem with NOTICE: _outNode: don't know how to print type
Date: 2000-05-25 21:05:48
Message-ID: 392D95AC.8E813279@selectacast.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Martijn van Oosterhout wrote:
>
> Ari Jolma wrote:
> > template1=> select a from a union select a from a where a in (select a from
> > a);
> > NOTICE: _outNode: don't know how to print type 1044119613
> > NOTICE: _outNode: don't know how to print type 1044119613
> > a
> > -
> > (0 rows)
>
> Hmm, I may be missing something, but "select a from a" is not
> a legal statement.

Why not?
playpen=> create table a ( a int ) ;
CREATE
playpen=> insert into a values(1);
INSERT 28310 1
playpen=> insert into a values(2);
INSERT 28311 1
playpen=> select a from a union select a from a where a in (select a
from a);
a
-
1
2
(2 rows)

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Peter Landis 2000-05-25 21:16:36 postgresql and perl?
Previous Message Alfred Perlstein 2000-05-25 20:44:28 Re: What distribution?