Re: psql 7.3.4 disagrees with NATURAL CROSS JOIN

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: psql 7.3.4 disagrees with NATURAL CROSS JOIN
Дата
Msg-id 27528.1083896773@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: psql 7.3.4 disagrees with NATURAL CROSS JOIN  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Ответы Re: psql 7.3.4 disagrees with NATURAL CROSS JOIN
Re: psql 7.3.4 disagrees with NATURAL CROSS JOIN
Список pgsql-hackers
Christopher Kings-Lynne <chriskl@familyhealth.com.au> writes:
> Just a note for the hackers, Jonathan (I think :) ) talked to me about 
> this on the irc channel - we couldn't figure this one out.  Seems that 
> pg_dump produces NATURAL CROSS JOIN in the dump of a view, but the pgsql 
> grammar does not appear to allow it.

Hm.  The syntax NATURAL CROSS JOIN is specifically disallowed by SQL99
and our parser (see attached SQL99 excerpt).  If pg_dump produces that
in a view dump then that's a bug, but this test case doesn't let me see
it happen, because the parser rejects the given view definition.  Do
you happen to have the original input that created the view?
        regards, tom lane

        <joined table> ::=               <cross join>             | <qualified join>             | <natural join>
     | <union join>
 
        <cross join> ::=             <table reference> CROSS JOIN <table primary>
        <qualified join> ::=             <table reference> [ <join type> ] JOIN <table reference>                 <join
specification>
        <natural join> ::=             <table reference> NATURAL [ <join type> ] JOIN <table primary>
        ...
        <join type> ::=               INNER             | <outer join type> [ OUTER ]
        <outer join type> ::=               LEFT             | RIGHT             | FULL


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: ALTER TABLE TODO items
Следующее
От: Jonathan Scott
Дата:
Сообщение: Re: psql 7.3.4 disagrees with NATURAL CROSS JOIN