Re: " Adding missing FROM-clause entry for table .... " problem.

From: Christoph Haller <ch(at)rodos(dot)fzk(dot)de>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: " Adding missing FROM-clause entry for table .... " problem.
Date: 2003-02-18 11:51:27
Message-ID: 3E521E3F.C5E4251B@rodos.fzk.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

>
> Christoph Haller wrote:
> <cut>
> > is not valid SQL syntax. What will actually happen (this is a
PostgreSQL
> > extension to the standard) is that an implicit table
> > reference is added to the FROM clause, so the query is processed as
if
> > it were written as
> I think this extension should be removed. I found all "Adding missing
> FROM..." were just results of mistake. Does anyone use this feature?
> What does other Postgres users think about it?
>
No, I do not use the feature.
And I agree it's prone to mistakes.
But I think mentioning it within the documentation and sending a NOTICE:
is enough.
What about side-effects on WHERE-clauses using a second table as
reference?
AFAIK, statements like

DELETE FROM t1 where t1.id = t2.id ;

are legal. Could the parser still work on this, if the feature is
removed?

Regards, Christoph

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Bruno Wolff III 2003-02-18 13:43:11 Re: How to make sequence skip existing key in table?
Previous Message betty 2003-02-18 11:37:04 Re: trigger after with cursor