pgsql: Fix pg_dump to handle collations applied to columns of composite

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix pg_dump to handle collations applied to columns of composite
Date: 2011-04-17 20:55:13
Message-ID: E1QBYzx-0005UG-Vz@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix pg_dump to handle collations applied to columns of composite types.

CREATE TYPE and ALTER TYPE ADD ATTRIBUTE handle this, so I suppose it's
an intended feature, but pg_dump didn't know about it.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/acfa1f45ed3ee2144581954c77769056bd149f5c

Modified Files
--------------
src/bin/pg_dump/pg_dump.c | 68 +++++++++++++++++++++++++++++++++++++-------
1 files changed, 57 insertions(+), 11 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2011-04-17 21:06:13 pgsql: Document COLLATE option in CREATE TYPE reference page.
Previous Message Tom Lane 2011-04-17 20:22:36 pgsql: Add check for matching column collations in ALTER TABLE ... INHE