[COMMITTERS] pgsql: Improve PL/Python database access function documentation

2012-03-26 Thread Peter Eisentraut
Improve PL/Python database access function documentation Organize the function descriptions as a list instead of running text, for easier access. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/206bec11bd9214873e3703898958789324480b1f Modified Files -- d

[COMMITTERS] pgsql: Remove dead assignment

2012-03-26 Thread Peter Eisentraut
Remove dead assignment found by Coverity Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/dcb33b1c6417cbeaf2c7d24eece0edf7cc0adfa7 Modified Files -- src/backend/commands/sequence.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent via

[COMMITTERS] pgsql: Code cleanup for heap_freeze_tuple.

2012-03-26 Thread Robert Haas
Code cleanup for heap_freeze_tuple. It used to be case that lazy vacuum could call this function with only a shared lock on the buffer, but neither lazy vacuum nor any other code path does that any more. Simplify the code accordingly and clean up some related, obsolete comments. Branch -- ma