pgsql: pg_dump: Dump operators with the same name ordered by arity

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: pg_dump: Dump operators with the same name ordered by arity
Date: 2012-01-05 18:45:48
Message-ID: E1RisJw-0008R8-N2@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

pg_dump: Dump operators with the same name ordered by arity

pg_dump sorts operators by name, but operators with the same name come
out in random order. Now operators with the same name are dumped in
the order prefix, postfix, infix. (This is consistent with functions,
which are dumped in increasing number of argument order.)

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/15df037845d9d3d99e9e2b4370256b136b00c66a

Modified Files
--------------
src/bin/pg_dump/pg_dump.c | 6 ++++++
src/bin/pg_dump/pg_dump.h | 1 +
src/bin/pg_dump/pg_dump_sort.c | 10 ++++++++++
3 files changed, 17 insertions(+), 0 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2012-01-05 19:14:21 pgsql: pg_dump: Dump foreign options in prettier format
Previous Message Peter Eisentraut 2012-01-05 17:52:23 pgsql: Improve ALTER DOMAIN / DROP CONSTRAINT with nonexistent constrai