[COMMITTERS] pgsql: Remove duplicate variable initializations identified by clang

2009-08-30 Thread Tom Lane
Log Message: --- Remove duplicate variable initializations identified by clang static checker. One of these represents a nontrivial bug (a promptly-leaked palloc), so backpatch. Greg Stark Modified Files: -- pgsql/src/backend/tsearch: regis.c (r1.7 -> r1.8)

[COMMITTERS] pgsql: Remove duplicate variable initializations identified by clang

2009-08-30 Thread Tom Lane
Log Message: --- Remove duplicate variable initializations identified by clang static checker. One of these represents a nontrivial bug (a promptly-leaked palloc), so backpatch. Greg Stark Tags: REL8_4_STABLE Modified Files: -- pgsql/src/backend/tsearch: regi

[COMMITTERS] pgsql: Remove duplicate variable initializations identified by clang

2009-08-30 Thread Tom Lane
Log Message: --- Remove duplicate variable initializations identified by clang static checker. One of these represents a nontrivial bug (a promptly-leaked palloc), so backpatch. Greg Stark Tags: REL8_3_STABLE Modified Files: -- pgsql/src/backend/tsearch: regi

[COMMITTERS] pgsql: Remove some useless assignments of the result of fread().

2009-08-30 Thread Tom Lane
Log Message: --- Remove some useless assignments of the result of fread(). Quiets warnings from clang static checker, and makes the code more readable anyway IMO. Modified Files: -- pgsql/src/backend/utils/cache: relcache.c (r1.289 -> r1.290) (http://anonc

[COMMITTERS] pgsql: Fix broken markup Jan Urbański

2009-08-30 Thread Alvaro Herrera
Log Message: --- Fix broken markup Jan Urbański Tags: REL8_4_STABLE Modified Files: -- pgsql/doc/src/sgml: release-8.4.sgml (r1.12.2.1 -> r1.12.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release-8.4.sgml?r1=1.12.2.1&r2=1.12.2.

[COMMITTERS] pgsql: Fix broken markup Jan Urbański

2009-08-30 Thread Alvaro Herrera
Log Message: --- Fix broken markup Jan Urbański Modified Files: -- pgsql/doc/src/sgml: release-8.4.sgml (r1.13 -> r1.14) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release-8.4.sgml?r1=1.13&r2=1.14) -- Sent via pgsql-committers mailing

[COMMITTERS] pgsql: Track the current XID wrap limit (or more accurately, the oldest

2009-08-30 Thread Tom Lane
Log Message: --- Track the current XID wrap limit (or more accurately, the oldest unfrozen XID) in checkpoint records. This eliminates the need to recompute the value from scratch during database startup, which is one of the two remaining reasons for the flatfile code to exist. It should