Re: 'natural join' core dump

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Mark Hollomon" <mhh(at)nortelnetworks(dot)com>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: 'natural join' core dump
Date: 2000-06-26 22:33:56
Message-ID: 19455.962058836@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

"Mark Hollomon" <mhh(at)nortelnetworks(dot)com> writes:
> -- core dumps
> select * from a natural join b natural join c;
> -- so does this
> select * from a join b using (b) join c using (c);
> -- this seems to work
> select * from a join b on a.b = b.b join c on b.c = c.c;

This is a previously reported problem that's on Thomas' todo list.

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Fraley 2000-06-26 22:40:55 ERROR: fmgr_info: function 19104: cache lookup failed
Previous Message Mikheev, Vadim 2000-06-26 22:15:39 RE: Big 7.1 open items