Comment 3 for bug 322972

Revision history for this message
James Henstridge (jamesh) wrote : Re: Is should be possible to create queries with 'FROM table1 USING table2' syntax

Thanks for making the branch public. It looks like one of your team memberships causes all your Storm branches to be private by default, so it might be worth checking if there is anything else that was meant to be public.

Looking at the grammar for PostgreSQL's select statement, it defines one form of from_item as:

    from_item [ NATURAL ] join_type from_item [ ON join_condition | USING ( join_column [, ...] ) ]

So this looks like it should be an option on the join itself (an alternative to "ON") rather than a separate type of join expression. Am I missing something?