pgsql: Use pg_dump's --quote-all-identifiers option in pg_upgrade.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Use pg_dump's --quote-all-identifiers option in pg_upgrade.
Date: 2013-05-09 21:35:03
Message-ID: E1UaYUR-0001oi-5r@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use pg_dump's --quote-all-identifiers option in pg_upgrade.

This helps guard against changes in the set of reserved keywords from
one version to another. In theory it should only be an issue if we
de-reserve a keyword in a newer release, since that can create the type
of problem shown in bug #8128.

Back-patch to 9.1 where the --quote-all-identifiers option was added.

Branch
------
REL9_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/44f5bb245ce497ef052d93b5c17e368ffaac83a8

Modified Files
--------------
contrib/pg_upgrade/dump.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)

--
Sent via pgsql-committers mailing list (pgsql-committers(at)postgresql(dot)org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2013-05-10 02:27:17 pgsql: Update key words table for 9.3
Previous Message Bruce Momjian 2013-05-09 20:05:31 pgsql: pg_upgrade docs: give tips on automation