pgsql: Teach pg_dump to quote reloption values safely.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Teach pg_dump to quote reloption values safely.
Date: 2016-01-03 00:05:11
Message-ID: E1aFWAZ-0004Ma-7Q@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Teach pg_dump to quote reloption values safely.

Commit c7e27becd2e6eb93 fixed this on the backend side, but we neglected
the fact that several code paths in pg_dump were printing reloptions
values that had not gotten massaged by ruleutils. Apply essentially the
same quoting logic in those places, too.

Branch
------
master

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

Modified Files
--------------
src/bin/pg_dump/pg_dump.c | 169 ++++++++++++++++++++++++++++++++++-----------
src/bin/pg_dump/pg_dump.h | 4 +-
2 files changed, 132 insertions(+), 41 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2016-01-03 18:56:41 pgsql: Fix treatment of *lpNumberOfBytesRecvd == 0: that's a completion
Previous Message Tom Lane 2016-01-02 21:25:39 pgsql: Fix overly-strict assertions in spgtextproc.c.