pgsql: Code + docs review for escaping of option values (commit 11a020e

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Code + docs review for escaping of option values (commit 11a020e
Date: 2015-06-29 16:43:00
Message-ID: E1Z9c96-0002rW-1U@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Code + docs review for escaping of option values (commit 11a020eb6).

Avoid memory leak from incorrect choice of how to free a StringInfo
(resetStringInfo doesn't do it). Now that pg_split_opts doesn't scribble
on the optstr, mark that as "const" for clarity. Attach the commentary in
protocol.sgml to the right place, and add documentation about the
user-visible effects of this change on postgres' -o option and libpq's
PGOPTIONS option.

Branch
------
master

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

Modified Files
--------------
doc/src/sgml/libpq.sgml | 9 ++++++---
doc/src/sgml/protocol.sgml | 12 ++++++------
doc/src/sgml/ref/postgres-ref.sgml | 14 ++++++++++----
src/backend/utils/init/postinit.c | 11 ++++++-----
src/include/miscadmin.h | 2 +-
5 files changed, 29 insertions(+), 19 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2015-06-29 19:38:54 pgsql: Desultory review of 9.5 release notes.
Previous Message Andrew Dunstan 2015-06-29 14:02:32 Re: pgsql: Run the C portions of guc-file.l through pgindent.