[COMMITTERS] pgsql: Fix readfuncs/outfuncs problems in last night's Gather patch.

2015-10-01 Thread Robert Haas
Fix readfuncs/outfuncs problems in last night's Gather patch. KaiGai Kohei, with one correction by me. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/286a3a68dcafa15f28a169daac38659816911940 Modified Files -- src/backend/nodes/outfuncs.c |4 ++-- sr

[COMMITTERS] pgsql: Fix mention of htup.h in storage.sgml

2015-10-01 Thread Fujii Masao
Fix mention of htup.h in storage.sgml Previously it was documented that the details on HeapTupleHeaderData struct could be found in htup.h. This is not correct because it's now defined in htup_details.h. Back-patch to 9.3 where the definition of HeapTupleHeaderData struct was moved from htup.h to

[COMMITTERS] pgsql: Fix mention of htup.h in storage.sgml

2015-10-01 Thread Fujii Masao
Fix mention of htup.h in storage.sgml Previously it was documented that the details on HeapTupleHeaderData struct could be found in htup.h. This is not correct because it's now defined in htup_details.h. Back-patch to 9.3 where the definition of HeapTupleHeaderData struct was moved from htup.h to

[COMMITTERS] pgsql: Fix mention of htup.h in storage.sgml

2015-10-01 Thread Fujii Masao
Fix mention of htup.h in storage.sgml Previously it was documented that the details on HeapTupleHeaderData struct could be found in htup.h. This is not correct because it's now defined in htup_details.h. Back-patch to 9.3 where the definition of HeapTupleHeaderData struct was moved from htup.h to

[COMMITTERS] pgsql: Fix mention of htup.h in storage.sgml

2015-10-01 Thread Fujii Masao
Fix mention of htup.h in storage.sgml Previously it was documented that the details on HeapTupleHeaderData struct could be found in htup.h. This is not correct because it's now defined in htup_details.h. Back-patch to 9.3 where the definition of HeapTupleHeaderData struct was moved from htup.h to

[COMMITTERS] pgsql: Fix documentation error in commit 8703059c6b55c427100e00a09f6653

2015-10-01 Thread Tom Lane
Fix documentation error in commit 8703059c6b55c427100e00a09f66534b6ccbfaa1. Etsuro Fujita spotted a thinko in the README commentary. Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/pg/commitdiff/a1c4afaafbc8fac540357e6c193ab1a971d2129a Modified Files -- src/bac

[COMMITTERS] pgsql: Fix documentation error in commit 8703059c6b55c427100e00a09f6653

2015-10-01 Thread Tom Lane
Fix documentation error in commit 8703059c6b55c427100e00a09f66534b6ccbfaa1. Etsuro Fujita spotted a thinko in the README commentary. Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c4a1039fdfd9543498810873ea1d4cbfa1d06c9e Modified Files -- src/bac

[COMMITTERS] pgsql: Fix documentation error in commit 8703059c6b55c427100e00a09f6653

2015-10-01 Thread Tom Lane
Fix documentation error in commit 8703059c6b55c427100e00a09f66534b6ccbfaa1. Etsuro Fujita spotted a thinko in the README commentary. Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/d312cc37e4e4081149d3874974d9d7618ca574af Modified Files -- src/bac

[COMMITTERS] pgsql: Fix documentation error in commit 8703059c6b55c427100e00a09f6653

2015-10-01 Thread Tom Lane
Fix documentation error in commit 8703059c6b55c427100e00a09f66534b6ccbfaa1. Etsuro Fujita spotted a thinko in the README commentary. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/21995d3f6d69670b5bc5b3654970701f8abb6d9f Modified Files -- src/backend/op

[COMMITTERS] pgsql: Fix documentation error in commit 8703059c6b55c427100e00a09f6653

2015-10-01 Thread Tom Lane
Fix documentation error in commit 8703059c6b55c427100e00a09f66534b6ccbfaa1. Etsuro Fujita spotted a thinko in the README commentary. Branch -- REL9_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c3e847902fce46c44cd733506646bf19eaeecb6e Modified Files -- src/bac

[COMMITTERS] pgsql: Fix documentation error in commit 8703059c6b55c427100e00a09f6653

2015-10-01 Thread Tom Lane
Fix documentation error in commit 8703059c6b55c427100e00a09f66534b6ccbfaa1. Etsuro Fujita spotted a thinko in the README commentary. Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/1128b7735dd23dc9dedf034f7e8236d84f22fd51 Modified Files -- src/bac

[COMMITTERS] pgsql: Fix documentation error in commit 8703059c6b55c427100e00a09f6653

2015-10-01 Thread Tom Lane
Fix documentation error in commit 8703059c6b55c427100e00a09f66534b6ccbfaa1. Etsuro Fujita spotted a thinko in the README commentary. Branch -- REL9_1_STABLE Details --- http://git.postgresql.org/pg/commitdiff/b44a55fa9563afcee05fda28fc9f0b0204d46d4d Modified Files -- src/bac

[COMMITTERS] pgsql: Fix incorrect tab-completion for GRANT and REVOKE

2015-10-01 Thread Fujii Masao
Fix incorrect tab-completion for GRANT and REVOKE Previously "GRANT * ON * TO " was tab-completed to add an extra "TO", rather than with a list of roles. This is the bug that commit 2f88807 introduced unexpectedly. This commit fixes that incorrect tab-completion. Thomas Munro, reviewed by Jeff Ja

[COMMITTERS] pgsql: Fix commit_ts for standby

2015-10-01 Thread Alvaro Herrera
Fix commit_ts for standby Module initialization was still not completely correct after commit 6b61955135e9, per crash report from Takashi Ohnishi. To fix, instead of trying to monkey around with the value of the GUC setting directly, add a separate boolean flag that enables the feature on a stand

[COMMITTERS] pgsql: Fix commit_ts for standby

2015-10-01 Thread Alvaro Herrera
Fix commit_ts for standby Module initialization was still not completely correct after commit 6b61955135e9, per crash report from Takashi Ohnishi. To fix, instead of trying to monkey around with the value of the GUC setting directly, add a separate boolean flag that enables the feature on a stand

[COMMITTERS] pgsql: Fix pg_dump to handle inherited NOT VALID check constraints corr

2015-10-01 Thread Tom Lane
Fix pg_dump to handle inherited NOT VALID check constraints correctly. This case seems to have been overlooked when unvalidated check constraints were introduced, in 9.2. The code would attempt to dump such constraints over again for each child table, even though adding them to the parent table i

[COMMITTERS] pgsql: Fix pg_dump to handle inherited NOT VALID check constraints corr

2015-10-01 Thread Tom Lane
Fix pg_dump to handle inherited NOT VALID check constraints correctly. This case seems to have been overlooked when unvalidated check constraints were introduced, in 9.2. The code would attempt to dump such constraints over again for each child table, even though adding them to the parent table i

[COMMITTERS] pgsql: Fix pg_dump to handle inherited NOT VALID check constraints corr

2015-10-01 Thread Tom Lane
Fix pg_dump to handle inherited NOT VALID check constraints correctly. This case seems to have been overlooked when unvalidated check constraints were introduced, in 9.2. The code would attempt to dump such constraints over again for each child table, even though adding them to the parent table i

[COMMITTERS] pgsql: Fix pg_dump to handle inherited NOT VALID check constraints corr

2015-10-01 Thread Tom Lane
Fix pg_dump to handle inherited NOT VALID check constraints correctly. This case seems to have been overlooked when unvalidated check constraints were introduced, in 9.2. The code would attempt to dump such constraints over again for each child table, even though adding them to the parent table i

[COMMITTERS] pgsql: Fix pg_dump to handle inherited NOT VALID check constraints corr

2015-10-01 Thread Tom Lane
Fix pg_dump to handle inherited NOT VALID check constraints correctly. This case seems to have been overlooked when unvalidated check constraints were introduced, in 9.2. The code would attempt to dump such constraints over again for each child table, even though adding them to the parent table i

[COMMITTERS] pgsql: pg_rewind: Improve some messages

2015-10-01 Thread Peter Eisentraut
pg_rewind: Improve some messages The output of a typical pg_rewind run contained a mix of capitalized and not-capitalized and punctuated and not-punctuated phrases for no apparent reason. Make that consistent. Also fix some problems in other messages. Branch -- REL9_5_STABLE Details --

[COMMITTERS] pgsql: pg_rewind: Improve some messages

2015-10-01 Thread Peter Eisentraut
pg_rewind: Improve some messages The output of a typical pg_rewind run contained a mix of capitalized and not-capitalized and punctuated and not-punctuated phrases for no apparent reason. Make that consistent. Also fix some problems in other messages. Branch -- master Details --- http:

[COMMITTERS] pgsql: Fix message punctuation according to style guide

2015-10-01 Thread Peter Eisentraut
Fix message punctuation according to style guide Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/87c2b517accf287cb746b58af570e7a29b5ad26a Modified Files -- src/backend/access/transam/xlogreader.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(

[COMMITTERS] pgsql: Fix message punctuation according to style guide

2015-10-01 Thread Peter Eisentraut
Fix message punctuation according to style guide Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/867bc6849f141e17cd4d3b416f48cc46839f2d76 Modified Files -- src/backend/access/transam/xlogreader.c |6 +++--- 1 file changed, 3 insertions(+), 3 del