Re: [COMMITTERS] pgsql: Doc: write some for adminpack.

2016-08-11 Thread Peter Eisentraut
On 8/10/16 9:40 PM, Tom Lane wrote: > Doc: write some for adminpack. > > Previous contents of adminpack.sgml were rather far short of project norms. > Not to mention being outright wrong about the signature of pg_file_read(). > > Branch > -- > REL9_1_STABLE The 9.1 branch (only) fails with

Re: [COMMITTERS] pgsql: Doc: write some for adminpack.

2016-08-11 Thread Tom Lane
Peter Eisentraut writes: > The 9.1 branch (only) fails with > openjade:adminpack.sgml:21:30:X: reference to non-existent ID > "FUNCTIONS-ADMIN-GENFILE-TABLE" Drat, will fix. Looks like somebody renamed that table. regards, tom lane -- Sent via pgsql-committers mailing

[COMMITTERS] pgsql: Doc: fix bad link in 9.1 branch only.

2016-08-11 Thread Tom Lane
Doc: fix bad link in 9.1 branch only. This table apparently got renamed somewhere between 9.1 and 9.2. Per buildfarm. Branch -- REL9_1_STABLE Details --- http://git.postgresql.org/pg/commitdiff/74ffae95347562c31578dea153ba9aa6b0f2fa44 Modified Files -- doc/src/sgml/adminpack

[COMMITTERS] pgsql: Fix busted Assert for CREATE MATVIEW ... WITH NO DATA.

2016-08-11 Thread Tom Lane
Fix busted Assert for CREATE MATVIEW ... WITH NO DATA. Commit 874fe3aea changed the command tag returned for CREATE MATVIEW/CREATE TABLE AS ... WITH NO DATA, but missed that there was code in spi.c that expected the command tag to always be "SELECT". Fortunately, the consequence was only an Asser

[COMMITTERS] pgsql: Fix busted Assert for CREATE MATVIEW ... WITH NO DATA.

2016-08-11 Thread Tom Lane
Fix busted Assert for CREATE MATVIEW ... WITH NO DATA. Commit 874fe3aea changed the command tag returned for CREATE MATVIEW/CREATE TABLE AS ... WITH NO DATA, but missed that there was code in spi.c that expected the command tag to always be "SELECT". Fortunately, the consequence was only an Asser

[COMMITTERS] pgsql: Fix busted Assert for CREATE MATVIEW ... WITH NO DATA.

2016-08-11 Thread Tom Lane
Fix busted Assert for CREATE MATVIEW ... WITH NO DATA. Commit 874fe3aea changed the command tag returned for CREATE MATVIEW/CREATE TABLE AS ... WITH NO DATA, but missed that there was code in spi.c that expected the command tag to always be "SELECT". Fortunately, the consequence was only an Asser

[COMMITTERS] pgsql: Fix busted Assert for CREATE MATVIEW ... WITH NO DATA.

2016-08-11 Thread Tom Lane
Fix busted Assert for CREATE MATVIEW ... WITH NO DATA. Commit 874fe3aea changed the command tag returned for CREATE MATVIEW/CREATE TABLE AS ... WITH NO DATA, but missed that there was code in spi.c that expected the command tag to always be "SELECT". Fortunately, the consequence was only an Asser

[COMMITTERS] pgsql: Trivial cosmetic cleanup in bloom/blutils.c.

2016-08-11 Thread Tom Lane
Trivial cosmetic cleanup in bloom/blutils.c. Don't spell "InvalidOid" as "0". Initialize method fields in the same order as amapi.h declares them (and every other AM handler initializes them). Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/e3049285a3b8790e26e584fdf

[COMMITTERS] pgsql: Field conninfo strings throughout src/bin/scripts.

2016-08-11 Thread Noah Misch
Field conninfo strings throughout src/bin/scripts. These programs nominally accepted conninfo strings, but they would proceed to use the original dbname parameter as though it were an unadorned database name. This caused "reindexdb dbname=foo" to issue an SQL command that always failed, and other

[COMMITTERS] pgsql: Reject, in pg_dumpall, names containing CR or LF.

2016-08-11 Thread Noah Misch
Reject, in pg_dumpall, names containing CR or LF. These characters prematurely terminate Windows shell command processing, causing the shell to execute a prefix of the intended command. The chief alternative to rejecting these characters was to bypass the Windows shell with CreateProcess(), but t

[COMMITTERS] pgsql: Obstruct shell, SQL, and conninfo injection via database and rol

2016-08-11 Thread Noah Misch
Obstruct shell, SQL, and conninfo injection via database and role names. Due to simplistic quoting and confusion of database names with conninfo strings, roles with the CREATEDB or CREATEROLE option could escalate to superuser privileges when a superuser next ran certain maintenance commands. The

[COMMITTERS] pgsql: Fix Windows shell argument quoting.

2016-08-11 Thread Noah Misch
Fix Windows shell argument quoting. The incorrect quoting may have permitted arbitrary command execution. At a minimum, it gave broader control over the command line to actors supposed to have control over a single argument. Back-patch to 9.1 (all supported versions). Security: CVE-2016-5424 Br

[COMMITTERS] pgsql: Obstruct shell, SQL, and conninfo injection via database and rol

2016-08-11 Thread Noah Misch
Obstruct shell, SQL, and conninfo injection via database and role names. Due to simplistic quoting and confusion of database names with conninfo strings, roles with the CREATEDB or CREATEROLE option could escalate to superuser privileges when a superuser next ran certain maintenance commands. The

[COMMITTERS] pgsql: Promote pg_dumpall shell/connstr quoting functions to src/fe_uti

2016-08-11 Thread Noah Misch
Promote pg_dumpall shell/connstr quoting functions to src/fe_utils. Rename these newly-extern functions with terms more typical of their new neighbors. No functional changes; a subsequent commit will use them in more places. Back-patch to 9.1 (all supported versions). Back branches lack src/fe_

[COMMITTERS] pgsql: Back-patch "Only quote libpq connection string values that need

2016-08-11 Thread Noah Misch
Back-patch "Only quote libpq connection string values that need quoting." Back-patch commit 2953cd6d17210935098c803c52c6df5b12a725b9 and certain runPgDump() bits of 3dee636e0404885d07885d41c0d70e50c784f324 to 9.2 and 9.1. This synchronizes their doConnStrQuoting() implementations with later relea

[COMMITTERS] pgsql: Reject, in pg_dumpall, names containing CR or LF.

2016-08-11 Thread Noah Misch
Reject, in pg_dumpall, names containing CR or LF. These characters prematurely terminate Windows shell command processing, causing the shell to execute a prefix of the intended command. The chief alternative to rejecting these characters was to bypass the Windows shell with CreateProcess(), but t

[COMMITTERS] pgsql: Fix Windows shell argument quoting.

2016-08-11 Thread Noah Misch
Fix Windows shell argument quoting. The incorrect quoting may have permitted arbitrary command execution. At a minimum, it gave broader control over the command line to actors supposed to have control over a single argument. Back-patch to 9.1 (all supported versions). Security: CVE-2016-5424 Br

[COMMITTERS] pgsql: Sort out paired double quotes in \connect, \password and \crosst

2016-08-11 Thread Noah Misch
Sort out paired double quotes in \connect, \password and \crosstabview. In arguments, these meta-commands wrongly treated each pair as closing the double quoted string. Make the behavior match the documentation. This is a compatibility break, but I more expect to find software with untested relia

[COMMITTERS] pgsql: Fix Windows shell argument quoting.

2016-08-11 Thread Noah Misch
Fix Windows shell argument quoting. The incorrect quoting may have permitted arbitrary command execution. At a minimum, it gave broader control over the command line to actors supposed to have control over a single argument. Back-patch to 9.1 (all supported versions). Security: CVE-2016-5424 Br

[COMMITTERS] pgsql: Field conninfo strings throughout src/bin/scripts.

2016-08-11 Thread Noah Misch
Field conninfo strings throughout src/bin/scripts. These programs nominally accepted conninfo strings, but they would proceed to use the original dbname parameter as though it were an unadorned database name. This caused "reindexdb dbname=foo" to issue an SQL command that always failed, and other

[COMMITTERS] pgsql: Promote pg_dumpall shell/connstr quoting functions to src/fe_uti

2016-08-11 Thread Noah Misch
Promote pg_dumpall shell/connstr quoting functions to src/fe_utils. Rename these newly-extern functions with terms more typical of their new neighbors. No functional changes; a subsequent commit will use them in more places. Back-patch to 9.1 (all supported versions). Back branches lack src/fe_

[COMMITTERS] pgsql: Reject, in pg_dumpall, names containing CR or LF.

2016-08-11 Thread Noah Misch
Reject, in pg_dumpall, names containing CR or LF. These characters prematurely terminate Windows shell command processing, causing the shell to execute a prefix of the intended command. The chief alternative to rejecting these characters was to bypass the Windows shell with CreateProcess(), but t

[COMMITTERS] pgsql: Sort out paired double quotes in \connect, \password and \crosst

2016-08-11 Thread Noah Misch
Sort out paired double quotes in \connect, \password and \crosstabview. In arguments, these meta-commands wrongly treated each pair as closing the double quoted string. Make the behavior match the documentation. This is a compatibility break, but I more expect to find software with untested relia

[COMMITTERS] pgsql: Reject, in pg_dumpall, names containing CR or LF.

2016-08-11 Thread Noah Misch
Reject, in pg_dumpall, names containing CR or LF. These characters prematurely terminate Windows shell command processing, causing the shell to execute a prefix of the intended command. The chief alternative to rejecting these characters was to bypass the Windows shell with CreateProcess(), but t

[COMMITTERS] pgsql: Reject, in pg_dumpall, names containing CR or LF.

2016-08-11 Thread Noah Misch
Reject, in pg_dumpall, names containing CR or LF. These characters prematurely terminate Windows shell command processing, causing the shell to execute a prefix of the intended command. The chief alternative to rejecting these characters was to bypass the Windows shell with CreateProcess(), but t

[COMMITTERS] pgsql: Introduce a psql "\connect -reuse-previous=on|off" option.

2016-08-11 Thread Noah Misch
Introduce a psql "\connect -reuse-previous=on|off" option. The decision to reuse values of parameters from a previous connection has been based on whether the new target is a conninfo string. Add this means of overriding that default. This feature arose as one component of a fix for security vul

[COMMITTERS] pgsql: Obstruct shell, SQL, and conninfo injection via database and rol

2016-08-11 Thread Noah Misch
Obstruct shell, SQL, and conninfo injection via database and role names. Due to simplistic quoting and confusion of database names with conninfo strings, roles with the CREATEDB or CREATEROLE option could escalate to superuser privileges when a superuser next ran certain maintenance commands. The

[COMMITTERS] pgsql: Field conninfo strings throughout src/bin/scripts.

2016-08-11 Thread Noah Misch
Field conninfo strings throughout src/bin/scripts. These programs nominally accepted conninfo strings, but they would proceed to use the original dbname parameter as though it were an unadorned database name. This caused "reindexdb dbname=foo" to issue an SQL command that always failed, and other

[COMMITTERS] pgsql: Sort out paired double quotes in \connect, \password and \crosst

2016-08-11 Thread Noah Misch
Sort out paired double quotes in \connect, \password and \crosstabview. In arguments, these meta-commands wrongly treated each pair as closing the double quoted string. Make the behavior match the documentation. This is a compatibility break, but I more expect to find software with untested relia

[COMMITTERS] pgsql: Sort out paired double quotes in \connect, \password and \crosst

2016-08-11 Thread Noah Misch
Sort out paired double quotes in \connect, \password and \crosstabview. In arguments, these meta-commands wrongly treated each pair as closing the double quoted string. Make the behavior match the documentation. This is a compatibility break, but I more expect to find software with untested relia

[COMMITTERS] pgsql: Last-minute updates for release notes.

2016-08-11 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2016-5423, CVE-2016-5424 Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/2183966c6d00a16cc307f8563da469b14ed07b6f Modified Files -- doc/src/sgml/release-9.1.sgml | 80 +++ do

[COMMITTERS] pgsql: Field conninfo strings throughout src/bin/scripts.

2016-08-11 Thread Noah Misch
Field conninfo strings throughout src/bin/scripts. These programs nominally accepted conninfo strings, but they would proceed to use the original dbname parameter as though it were an unadorned database name. This caused "reindexdb dbname=foo" to issue an SQL command that always failed, and other

[COMMITTERS] pgsql: Fix Windows shell argument quoting.

2016-08-11 Thread Noah Misch
Fix Windows shell argument quoting. The incorrect quoting may have permitted arbitrary command execution. At a minimum, it gave broader control over the command line to actors supposed to have control over a single argument. Back-patch to 9.1 (all supported versions). Security: CVE-2016-5424 Br

[COMMITTERS] pgsql: Field conninfo strings throughout src/bin/scripts.

2016-08-11 Thread Noah Misch
Field conninfo strings throughout src/bin/scripts. These programs nominally accepted conninfo strings, but they would proceed to use the original dbname parameter as though it were an unadorned database name. This caused "reindexdb dbname=foo" to issue an SQL command that always failed, and other

[COMMITTERS] pgsql: Reject, in pg_dumpall, names containing CR or LF.

2016-08-11 Thread Noah Misch
Reject, in pg_dumpall, names containing CR or LF. These characters prematurely terminate Windows shell command processing, causing the shell to execute a prefix of the intended command. The chief alternative to rejecting these characters was to bypass the Windows shell with CreateProcess(), but t

[COMMITTERS] pgsql: Last-minute updates for release notes.

2016-08-11 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2016-5423, CVE-2016-5424 Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/9b8271c5a655ef1c35141b266d5039da8d3b2337 Modified Files -- doc/src/sgml/release-9.1.sgml | 80 +++ doc/src/s

[COMMITTERS] pgsql: Fix Windows shell argument quoting.

2016-08-11 Thread Noah Misch
Fix Windows shell argument quoting. The incorrect quoting may have permitted arbitrary command execution. At a minimum, it gave broader control over the command line to actors supposed to have control over a single argument. Back-patch to 9.1 (all supported versions). Security: CVE-2016-5424 Br

[COMMITTERS] pgsql: Fix two errors with nested CASE/WHEN constructs.

2016-08-11 Thread Tom Lane
Fix two errors with nested CASE/WHEN constructs. ExecEvalCase() tried to save a cycle or two by passing &econtext->caseValue_isNull as the isNull argument to its sub-evaluation of the CASE value expression. If that subexpression itself contained a CASE, then *isNull was an alias for econtext->cas

[COMMITTERS] pgsql: Obstruct shell, SQL, and conninfo injection via database and rol

2016-08-11 Thread Noah Misch
Obstruct shell, SQL, and conninfo injection via database and role names. Due to simplistic quoting and confusion of database names with conninfo strings, roles with the CREATEDB or CREATEROLE option could escalate to superuser privileges when a superuser next ran certain maintenance commands. The

[COMMITTERS] pgsql: Fix Windows shell argument quoting.

2016-08-11 Thread Noah Misch
Fix Windows shell argument quoting. The incorrect quoting may have permitted arbitrary command execution. At a minimum, it gave broader control over the command line to actors supposed to have control over a single argument. Back-patch to 9.1 (all supported versions). Security: CVE-2016-5424 Br

[COMMITTERS] pgsql: Promote pg_dumpall shell/connstr quoting functions to src/fe_uti

2016-08-11 Thread Noah Misch
Promote pg_dumpall shell/connstr quoting functions to src/fe_utils. Rename these newly-extern functions with terms more typical of their new neighbors. No functional changes; a subsequent commit will use them in more places. Back-patch to 9.1 (all supported versions). Back branches lack src/fe_

[COMMITTERS] pgsql: Last-minute updates for release notes.

2016-08-11 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2016-5423, CVE-2016-5424 Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c5081941f921bd342529b255ed2af1adccc253ed Modified Files -- doc/src/sgml/release-9.1.sgml | 80 +++

[COMMITTERS] pgsql: Promote pg_dumpall shell/connstr quoting functions to src/fe_uti

2016-08-11 Thread Noah Misch
Promote pg_dumpall shell/connstr quoting functions to src/fe_utils. Rename these newly-extern functions with terms more typical of their new neighbors. No functional changes; a subsequent commit will use them in more places. Back-patch to 9.1 (all supported versions). Back branches lack src/fe_

[COMMITTERS] pgsql: Promote pg_dumpall shell/connstr quoting functions to src/fe_uti

2016-08-11 Thread Noah Misch
Promote pg_dumpall shell/connstr quoting functions to src/fe_utils. Rename these newly-extern functions with terms more typical of their new neighbors. No functional changes; a subsequent commit will use them in more places. Back-patch to 9.1 (all supported versions). Back branches lack src/fe_

[COMMITTERS] pgsql: Obstruct shell, SQL, and conninfo injection via database and rol

2016-08-11 Thread Noah Misch
Obstruct shell, SQL, and conninfo injection via database and role names. Due to simplistic quoting and confusion of database names with conninfo strings, roles with the CREATEDB or CREATEROLE option could escalate to superuser privileges when a superuser next ran certain maintenance commands. The

[COMMITTERS] pgsql: Sort out paired double quotes in \connect, \password and \crosst

2016-08-11 Thread Noah Misch
Sort out paired double quotes in \connect, \password and \crosstabview. In arguments, these meta-commands wrongly treated each pair as closing the double quoted string. Make the behavior match the documentation. This is a compatibility break, but I more expect to find software with untested relia

[COMMITTERS] pgsql: Sort out paired double quotes in \connect, \password and \crosst

2016-08-11 Thread Noah Misch
Sort out paired double quotes in \connect, \password and \crosstabview. In arguments, these meta-commands wrongly treated each pair as closing the double quoted string. Make the behavior match the documentation. This is a compatibility break, but I more expect to find software with untested relia

[COMMITTERS] pgsql: Introduce a psql "\connect -reuse-previous=on|off" option.

2016-08-11 Thread Noah Misch
Introduce a psql "\connect -reuse-previous=on|off" option. The decision to reuse values of parameters from a previous connection has been based on whether the new target is a conninfo string. Add this means of overriding that default. This feature arose as one component of a fix for security vul

[COMMITTERS] pgsql: Fix two errors with nested CASE/WHEN constructs.

2016-08-11 Thread Tom Lane
Fix two errors with nested CASE/WHEN constructs. ExecEvalCase() tried to save a cycle or two by passing &econtext->caseValue_isNull as the isNull argument to its sub-evaluation of the CASE value expression. If that subexpression itself contained a CASE, then *isNull was an alias for econtext->cas

[COMMITTERS] pgsql: Introduce a psql "\connect -reuse-previous=on|off" option.

2016-08-11 Thread Noah Misch
Introduce a psql "\connect -reuse-previous=on|off" option. The decision to reuse values of parameters from a previous connection has been based on whether the new target is a conninfo string. Add this means of overriding that default. This feature arose as one component of a fix for security vul

[COMMITTERS] pgsql: Last-minute updates for release notes.

2016-08-11 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2016-5423, CVE-2016-5424 Branch -- REL9_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/43957e873d22ce5d279a91d3acda6fc9e848fda7 Modified Files -- doc/src/sgml/release-9.1.sgml | 80 +++

[COMMITTERS] pgsql: Introduce a psql "\connect -reuse-previous=on|off" option.

2016-08-11 Thread Noah Misch
Introduce a psql "\connect -reuse-previous=on|off" option. The decision to reuse values of parameters from a previous connection has been based on whether the new target is a conninfo string. Add this means of overriding that default. This feature arose as one component of a fix for security vul

[COMMITTERS] pgsql: Fix two errors with nested CASE/WHEN constructs.

2016-08-11 Thread Tom Lane
Fix two errors with nested CASE/WHEN constructs. ExecEvalCase() tried to save a cycle or two by passing &econtext->caseValue_isNull as the isNull argument to its sub-evaluation of the CASE value expression. If that subexpression itself contained a CASE, then *isNull was an alias for econtext->cas

[COMMITTERS] pgsql: Field conninfo strings throughout src/bin/scripts.

2016-08-11 Thread Noah Misch
Field conninfo strings throughout src/bin/scripts. These programs nominally accepted conninfo strings, but they would proceed to use the original dbname parameter as though it were an unadorned database name. This caused "reindexdb dbname=foo" to issue an SQL command that always failed, and other

[COMMITTERS] pgsql: Last-minute updates for release notes.

2016-08-11 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2016-5423, CVE-2016-5424 Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/cf21e6f7e9448b9f0964e9864f570ade9d672496 Modified Files -- doc/src/sgml/release-9.1.sgml | 80 +++

[COMMITTERS] pgsql: Introduce a psql "\connect -reuse-previous=on|off" option.

2016-08-11 Thread Noah Misch
Introduce a psql "\connect -reuse-previous=on|off" option. The decision to reuse values of parameters from a previous connection has been based on whether the new target is a conninfo string. Add this means of overriding that default. This feature arose as one component of a fix for security vul

[COMMITTERS] pgsql: Back-patch "Only quote libpq connection string values that need

2016-08-11 Thread Noah Misch
Back-patch "Only quote libpq connection string values that need quoting." Back-patch commit 2953cd6d17210935098c803c52c6df5b12a725b9 and certain runPgDump() bits of 3dee636e0404885d07885d41c0d70e50c784f324 to 9.2 and 9.1. This synchronizes their doConnStrQuoting() implementations with later relea

[COMMITTERS] pgsql: Introduce a psql "\connect -reuse-previous=on|off" option.

2016-08-11 Thread Noah Misch
Introduce a psql "\connect -reuse-previous=on|off" option. The decision to reuse values of parameters from a previous connection has been based on whether the new target is a conninfo string. Add this means of overriding that default. This feature arose as one component of a fix for security vul

[COMMITTERS] pgsql: Fix two errors with nested CASE/WHEN constructs.

2016-08-11 Thread Tom Lane
Fix two errors with nested CASE/WHEN constructs. ExecEvalCase() tried to save a cycle or two by passing &econtext->caseValue_isNull as the isNull argument to its sub-evaluation of the CASE value expression. If that subexpression itself contained a CASE, then *isNull was an alias for econtext->cas

[COMMITTERS] pgsql: Obstruct shell, SQL, and conninfo injection via database and rol

2016-08-11 Thread Noah Misch
Obstruct shell, SQL, and conninfo injection via database and role names. Due to simplistic quoting and confusion of database names with conninfo strings, roles with the CREATEDB or CREATEROLE option could escalate to superuser privileges when a superuser next ran certain maintenance commands. The

[COMMITTERS] pgsql: Fix two errors with nested CASE/WHEN constructs.

2016-08-11 Thread Tom Lane
Fix two errors with nested CASE/WHEN constructs. ExecEvalCase() tried to save a cycle or two by passing &econtext->caseValue_isNull as the isNull argument to its sub-evaluation of the CASE value expression. If that subexpression itself contained a CASE, then *isNull was an alias for econtext->cas

[COMMITTERS] pgsql: Promote pg_dumpall shell/connstr quoting functions to src/fe_uti

2016-08-11 Thread Noah Misch
Promote pg_dumpall shell/connstr quoting functions to src/fe_utils. Rename these newly-extern functions with terms more typical of their new neighbors. No functional changes; a subsequent commit will use them in more places. Back-patch to 9.1 (all supported versions). Back branches lack src/fe_

[COMMITTERS] pgsql: Fix two errors with nested CASE/WHEN constructs.

2016-08-11 Thread Tom Lane
Fix two errors with nested CASE/WHEN constructs. ExecEvalCase() tried to save a cycle or two by passing &econtext->caseValue_isNull as the isNull argument to its sub-evaluation of the CASE value expression. If that subexpression itself contained a CASE, then *isNull was an alias for econtext->cas

[COMMITTERS] pgsql: Last-minute updates for release notes.

2016-08-11 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2016-5423, CVE-2016-5424 Branch -- REL9_1_STABLE Details --- http://git.postgresql.org/pg/commitdiff/6bb96c0a0699444ead4746e483fd56de3be5539c Modified Files -- doc/src/sgml/release-9.1.sgml | 80 +++

[COMMITTERS] pgsql: Add ID property to replication slots' sect2

2016-08-11 Thread Alvaro Herrera
Add ID property to replication slots' sect2 Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/371b572df2d7e24750f8d0fc2e45d673ac70beec Modified Files -- doc/src/sgml/logicaldecoding.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pg

[COMMITTERS] pgsql: Add ID property to replication slots' sect2

2016-08-11 Thread Alvaro Herrera
Add ID property to replication slots' sect2 Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c4bf83017f90eb5a1959e4394381442f75509740 Modified Files -- doc/src/sgml/logicaldecoding.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent