[COMMITTERS] pgsql: Use E, not e, for escaping in example docs

2014-01-26 Thread Stephen Frost
Use E, not e, for escaping in example docs From the Department of Nitpicking, be consistent with other escaping and use 'E' instead of 'e' to escape the string in the example docs for GET DISAGNOSTICS stack = PG_CONTEXT. Noticed by Department Chief Magnus Hagander. Branch -- master Details

[COMMITTERS] pgsql: Enable building with Visual Studion 2013.

2014-01-26 Thread Andrew Dunstan
Enable building with Visual Studion 2013. Backpatch to 9.3. Brar Piening. Branch -- REL9_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/56c08df55be5a3f12ddc45edcf29b6ecc4111e59 Modified Files -- doc/src/sgml/install-windows.sgml | 16 +++--- src/backe

[COMMITTERS] pgsql: Enable building with Visual Studion 2013.

2014-01-26 Thread Andrew Dunstan
Enable building with Visual Studion 2013. Backpatch to 9.3. Brar Piening. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cec8394b5ccd32259e446f963690dd4784646b4d Modified Files -- doc/src/sgml/install-windows.sgml | 16 +++--- src/backend/util

[COMMITTERS] pgsql: Include tablespace options in verbose output of \db

2014-01-26 Thread Magnus Hagander
Include tablespace options in verbose output of \db Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cae10ca27e5d478353b9b053073e5f2a1cf97659 Modified Files -- src/bin/psql/describe.c |5 + 1 file changed, 5 insertions(+) -- Sent via pgsql-commit

Re: [COMMITTERS] pgsql: Include tablespace options in verbose output of \db

2014-01-26 Thread Tom Lane
Magnus Hagander writes: > Include tablespace options in verbose output of \db Generally we put the description column at the end. Is there a reason why this patch is ignoring that convention? regards, tom lane -- Sent via pgsql-committers mailing list (pgsql-committer

Re: [COMMITTERS] pgsql: Include tablespace options in verbose output of \db

2014-01-26 Thread Magnus Hagander
On Sun, Jan 26, 2014 at 9:10 PM, Tom Lane wrote: > Magnus Hagander writes: > > Include tablespace options in verbose output of \db > > Generally we put the description column at the end. Is there a reason > why this patch is ignoring that convention? > None other than that I wasn't aware of th

[COMMITTERS] pgsql: Move the options column of \db+ before the description

2014-01-26 Thread Magnus Hagander
Move the options column of \db+ before the description The convention is to have the description field at the end. Noted by Tom Lane Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/f2795f8b5393005ab2d2438fadce116b032bea6e Modified Files -- src/bin/psql/

[COMMITTERS] pgsql: Check dup2() results in syslogger

2014-01-26 Thread Stephen Frost
Check dup2() results in syslogger Consistently check the dup2() call results throughout syslogger.c. It's pretty unlikely that they'll error out, but if they do, ereport(FATAL) instead of blissfully continuing on. Spotted by the Coverity scanner. Branch -- master Details --- http://git.

[COMMITTERS] pgsql: Provide for client-only installs with MSVC.

2014-01-26 Thread Andrew Dunstan
Provide for client-only installs with MSVC. MauMau. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/a7e5f7bf6890fdf14a6c6ecd0854ac3f5f308ccd Modified Files -- doc/src/sgml/install-windows.sgml |8 +++ src/tools/msvc/Install.pm | 134 +

[COMMITTERS] pgsql: Fix minor leak in pg_dump

2014-01-26 Thread Stephen Frost
Fix minor leak in pg_dump Move allocation to after we check the remote server version, to avoid a possible, very minor, memory leak. This makes us more consistent throughout as most places in pg_dump are done in the same way (due, in part, to previous fixes like this). Spotted by the Coverity sc

[COMMITTERS] pgsql: Fix typos in comments for ALTER SYSTEM.

2014-01-26 Thread Fujii Masao
Fix typos in comments for ALTER SYSTEM. Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/7c619be623237f3fee3222bc171a6a0afb0ce7a5 Modified Files -- src/backend/utils/misc/guc-file.l |2 +- src/backend/utils/misc/guc.c | 31 ++

[COMMITTERS] pgsql: Change the suffix of auto conf temporary file from "temp" to "tm

2014-01-26 Thread Fujii Masao
Change the suffix of auto conf temporary file from "temp" to "tmp". Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/dd515d4082876f9fcc0b6eed421dd3b6d43579be Modified Files -- src/backend/replication/basebackup.c |2 +- src/backend/util

[COMMITTERS] pgsql: Code review for auto-tuned effective_cache_size.

2014-01-26 Thread Tom Lane
Code review for auto-tuned effective_cache_size. Fix integer overflow issue noted by Magnus Hagander, as well as a bunch of other infelicities in commit ee1e5662d8d8330726eaef7d3110cb7add24d058 and its unreasonably large number of followups. Branch -- master Details --- http://git.postgr

[COMMITTERS] pgsql: Fix typo in README

2014-01-26 Thread Heikki Linnakangas
Fix typo in README Amit Langote Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/f62eba204f367acbfea7e63991524bf981b307f8 Modified Files -- src/backend/catalog/README |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgsql-committers