Fixes:

Marc G. Fournier <scrappy@hub.org>

Commit: 6c684b18474d1b0ac58365a1634b1f365d1080be
Author: Marc G. Fournier <scrappy@hub.org>
Date: 1996-08-06T16:38:03Z
Releases: 7.1.1
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>

Files

PathChange+/−
src/backend/nodes/parsenodes.h modified +2 −1
src/backend/parser/analyze.c modified +30 −11
src/backend/parser/gram.y modified +11 −3