[COMMITTERS] pgsql: Fix typo in comment.

2015-03-08 Thread Fujii Masao
Fix typo in comment. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/828599acecdb2929f9b66d6f590c2abbc751b58b Modified Files -- src/include/access/xlogrecord.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgsql-committers mailing

[COMMITTERS] pgsql: Add missing "goto err" statements in xlogreader.c.

2015-03-08 Thread Fujii Masao
Add missing "goto err" statements in xlogreader.c. Spotted by Andres Freund. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/c74c04b8aa03f05983f940ee94c86a5cc1945393 Modified Files -- src/backend/access/transam/xlogreader.c |6 ++ 1 file changed,

[COMMITTERS] pgsql: Sort SUBDIRS variable in src/bin/Makefile

2015-03-08 Thread Peter Eisentraut
Sort SUBDIRS variable in src/bin/Makefile The previous order appears to have been historically grown randomness. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5a2a48f0367e24f8f12cfe0a90a886dae0db1ce2 Modified Files -- src/bin/Makefile | 12 ++

[COMMITTERS] pgsql: Cast to (void *) rather than (int *) when passing int64's to PQf

2015-03-08 Thread Tom Lane
Cast to (void *) rather than (int *) when passing int64's to PQfn(). This is a possibly-vain effort to silence a Coverity warning about bogus endianness dependency. The code's fine, because it takes care of endianness issues for itself, but Coverity sees an int64 being passed to an int* argument

[COMMITTERS] pgsql: Cast to (void *) rather than (int *) when passing int64's to PQf

2015-03-08 Thread Tom Lane
Cast to (void *) rather than (int *) when passing int64's to PQfn(). This is a possibly-vain effort to silence a Coverity warning about bogus endianness dependency. The code's fine, because it takes care of endianness issues for itself, but Coverity sees an int64 being passed to an int* argument

[COMMITTERS] pgsql: Cast to (void *) rather than (int *) when passing int64's to PQf

2015-03-08 Thread Tom Lane
Cast to (void *) rather than (int *) when passing int64's to PQfn(). This is a possibly-vain effort to silence a Coverity warning about bogus endianness dependency. The code's fine, because it takes care of endianness issues for itself, but Coverity sees an int64 being passed to an int* argument

[COMMITTERS] pgsql: Remove struct PQArgBlock from server-side header libpq/libpq.h.

2015-03-08 Thread Tom Lane
Remove struct PQArgBlock from server-side header libpq/libpq.h. This struct is purely a client-side artifact. Perhaps there was once reason for the server to know it, but any such reason is lost in the mists of time. We certainly don't need two independent declarations of it. Branch -- mast

[COMMITTERS] pgsql: Fix documentation for libpq's PQfn().

2015-03-08 Thread Tom Lane
Fix documentation for libpq's PQfn(). The SGML docs claimed that 1-byte integers could be sent or received with the "isint" options, but no such behavior has ever been implemented in pqGetInt() or pqPutInt(). The in-code documentation header for PQfn() was even less in tune with reality, and the

[COMMITTERS] pgsql: Fix documentation for libpq's PQfn().

2015-03-08 Thread Tom Lane
Fix documentation for libpq's PQfn(). The SGML docs claimed that 1-byte integers could be sent or received with the "isint" options, but no such behavior has ever been implemented in pqGetInt() or pqPutInt(). The in-code documentation header for PQfn() was even less in tune with reality, and the

[COMMITTERS] pgsql: Fix documentation for libpq's PQfn().

2015-03-08 Thread Tom Lane
Fix documentation for libpq's PQfn(). The SGML docs claimed that 1-byte integers could be sent or received with the "isint" options, but no such behavior has ever been implemented in pqGetInt() or pqPutInt(). The in-code documentation header for PQfn() was even less in tune with reality, and the

[COMMITTERS] pgsql: Fix documentation for libpq's PQfn().

2015-03-08 Thread Tom Lane
Fix documentation for libpq's PQfn(). The SGML docs claimed that 1-byte integers could be sent or received with the "isint" options, but no such behavior has ever been implemented in pqGetInt() or pqPutInt(). The in-code documentation header for PQfn() was even less in tune with reality, and the

[COMMITTERS] pgsql: Fix documentation for libpq's PQfn().

2015-03-08 Thread Tom Lane
Fix documentation for libpq's PQfn(). The SGML docs claimed that 1-byte integers could be sent or received with the "isint" options, but no such behavior has ever been implemented in pqGetInt() or pqPutInt(). The in-code documentation header for PQfn() was even less in tune with reality, and the

[COMMITTERS] pgsql: Fix documentation for libpq's PQfn().

2015-03-08 Thread Tom Lane
Fix documentation for libpq's PQfn(). The SGML docs claimed that 1-byte integers could be sent or received with the "isint" options, but no such behavior has ever been implemented in pqGetInt() or pqPutInt(). The in-code documentation header for PQfn() was even less in tune with reality, and the

[COMMITTERS] pgsql: Code cleanup for REINDEX DATABASE/SCHEMA/SYSTEM.

2015-03-08 Thread Tom Lane
Code cleanup for REINDEX DATABASE/SCHEMA/SYSTEM. Fix some minor infelicities. Some of these things were introduced in commit fe263d115a7dd16095b8b8f1e943aff2bb4574d2, and some are older. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/90c35a9ed06c1353a0d3818c259e629

[COMMITTERS] pgsql: Fix erroneous error message for REINDEX SYSTEM.

2015-03-08 Thread Tom Lane
Fix erroneous error message for REINDEX SYSTEM. Missed case in commit fe263d115a7dd16095b8b8f1e943aff2bb4574d2. Sawada Masahiko Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/ac0914285ac90bd411730c3219f226c57f3a Modified Files -- src/backend/tcop/u