Re: ExecEvalExpr: unknown expression type 704 problems...

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Eric D Nielsen <nielsene(at)MIT(dot)EDU>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: ExecEvalExpr: unknown expression type 704 problems...
Date: 2002-07-27 23:12:10
Message-ID: 7721.1027811530@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Eric D Nielsen <nielsene(at)MIT(dot)EDU> writes:
> Sample query causing the problem:
> SELECT distinct title, collections.collectionid FROM collections
> LEFT OUTER JOIN team_items ON
> (collections.collectionid=team_items.collectionid)
> LEFT OUTER JOIN item_status ON
> (team_items.statusid=item_status.statusid)
> WHERE libraryid=1 AND (item_status IS NULL
> OR item_status.name<>'REFERENCE')
> ORDER BY title LIMIT 20 OFFSET 0;

> Resulting error message:
> ERROR: ExecEvalExpr: unknown expression type 704

I'm not really interested in trying to reverse-engineer your schema.
Could you supply a complete runnable example, rather than a fragment?

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Oliver Kohll 2002-07-27 23:53:30 Re: Evolving databases (eg deleting columns)
Previous Message Tom Lane 2002-07-27 23:05:39 Re: Execution plan caching