]> granicus.if.org Git - postgresql/commit
Fixes:
authorMarc G. Fournier <scrappy@hub.org>
Tue, 6 Aug 1996 16:38:03 +0000 (16:38 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Tue, 6 Aug 1996 16:38:03 +0000 (16:38 +0000)
commit6c684b18474d1b0ac58365a1634b1f365d1080be
treee201629ffc6c54167a012061a7459a85b8011bfa
parentab22b34891b9b9002f302710facd110ac4af7657
Fixes:

Previously Postgres95 wouldn't accept 'order by' clauses with fields
referred to as '<table>.<field>', e.g.:

        select t1.field1, t2.field2 from table1 t1, table2 t2
                order by t2.field2;

This syntax is required by the ODBC SQL spec.

Submitted by: Dan McGuirk <mcguirk@indirect.com>
src/backend/nodes/parsenodes.h
src/backend/parser/analyze.c
src/backend/parser/gram.y