pgsql: Use qualified_name instead of relation_expr for commands that

From: petere(at)postgresql(dot)org (Peter Eisentraut)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Use qualified_name instead of relation_expr for commands that
Date: 2009-01-12 09:38:31
Message-ID: 20090112093831.39F2F754877@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Use qualified_name instead of relation_expr for commands that have no
business with inheritance recursion: ALTER INDEX, ALTER SEQUENCE, ALTER
TRIGGER, ALTER VIEW. They would just silently ignore the ONLY.

ALTER TABLE has mixed behavior and cannot be dealt with this way because
of the resulting shift/reduce conflicts.

Modified Files:
--------------
pgsql/src/backend/parser:
gram.y (r2.653 -> r2.654)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/gram.y?r1=2.653&r2=2.654)

Browse pgsql-committers by date

  From Date Subject
Next Message User Talliesin 2009-01-12 11:26:41 npgsql - Npgsql2: Use Kana-width-insensitive comparisons supplied by
Previous Message Peter Eisentraut 2009-01-12 08:54:27 pgsql: Add ONLY support to LOCK and TRUNCATE.