[COMMITTERS] pgsql: Remove redundant DEF_PGPORT handling

2011-06-27 Thread Peter Eisentraut
Remove redundant DEF_PGPORT handling DEF_PGPORT already comes in from pg_config.h, so we don't need to pass it in again with a -D option. Apparently a leftover from the shell script conversion. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4635d3c527916555773a6eb1

[COMMITTERS] pgsql: Add some strings that were not marked for translation

2011-06-27 Thread Peter Eisentraut
Add some strings that were not marked for translation Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8c8745b298d20b49e64c77c1e4ba4c8ac300e9e6 Modified Files -- src/bin/pg_ctl/pg_ctl.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) -

[COMMITTERS] pgsql: Avoid having two copies of the HOT-chain search logic.

2011-06-27 Thread Robert Haas
Avoid having two copies of the HOT-chain search logic. It's been like this since HOT was originally introduced, but the logic is complex enough that this is a recipe for bugs, as we've already found out with SSI. So refactor heap_hot_search_buffer() so that it can satisfy the needs of index_getne

[COMMITTERS] pgsql: Mention that SSPI authentication can use GSSAPI on non-Windows s

2011-06-27 Thread Robert Haas
Mention that SSPI authentication can use GSSAPI on non-Windows systems. As noted by Christian Ullrich. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/66a36ef949e4e6b8dbcc8a024eecfeca967d1d9c Modified Files -- doc/src/sgml/client-auth.sgml |4 +++- 1

[COMMITTERS] pgsql: Mention that SSPI authentication can use GSSAPI on non-Windows s

2011-06-27 Thread Robert Haas
Mention that SSPI authentication can use GSSAPI on non-Windows systems. As noted by Christian Ullrich. Branch -- REL9_1_STABLE Details --- http://git.postgresql.org/pg/commitdiff/379352602ce1f247d1bed41b62baad4e1ee6d767 Modified Files -- doc/src/sgml/client-auth.sgml |4

[COMMITTERS] pgsql: Try again to make the visibility map crash safe.

2011-06-27 Thread Robert Haas
Try again to make the visibility map crash safe. My previous attempt was quite a bit less than half-baked with respect to heap_update(). Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/e16954f3d27fa8e16c379ff6623ae18d6250a39c Modified Files -- src/backen

[COMMITTERS] pgsql: Allow callers to pass a missing_ok flag when opening a relation.

2011-06-27 Thread Robert Haas
Allow callers to pass a missing_ok flag when opening a relation. Since the names try_relation_openrv() and try_heap_openrv() don't seem quite appropriate, rename the functions to relation_openrv_extended() and heap_openrv_extended(). This is also more general, if we have a future need for additio

[COMMITTERS] pgsql: Reduce impact of btree page reuse on Hot Standby by fixing off-b

2011-06-27 Thread Simon Riggs
Reduce impact of btree page reuse on Hot Standby by fixing off-by-1 error. WAL records of type XLOG_BTREE_REUSE_PAGE were generated using a latestRemovedXid one higher than actually needed because xid used was page opaque->btpo.xact rather than an actually removed xid. Noticed on an otherwise quiet

[COMMITTERS] pgsql: Reduce impact of btree page reuse on Hot Standby by fixing off-b

2011-06-27 Thread Simon Riggs
Reduce impact of btree page reuse on Hot Standby by fixing off-by-1 error. WAL records of type XLOG_BTREE_REUSE_PAGE were generated using a latestRemovedXid one higher than actually needed because xid used was page opaque->btpo.xact rather than an actually removed xid. Noticed on an otherwise quiet

[COMMITTERS] pgsql: Reduce impact of btree page reuse on Hot Standby by fixing off-b

2011-06-27 Thread Simon Riggs
Reduce impact of btree page reuse on Hot Standby by fixing off-by-1 error. WAL records of type XLOG_BTREE_REUSE_PAGE were generated using a latestRemovedXid one higher than actually needed because xid used was page opaque->btpo.xact rather than an actually removed xid. Noticed on an otherwise quiet

[COMMITTERS] pgsql: Add a missing_ok argument to get_object_address().

2011-06-27 Thread Robert Haas
Add a missing_ok argument to get_object_address(). This lays the groundwork for an upcoming patch to streamline the handling of DROP commands. KaiGai Kohei Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/c533c1477f6beede766034c1226a20ac08320b05 Modified Files -

Re: [COMMITTERS] pgsql: Branch refs/heads/REL9_1_STABLE was removed

2011-06-27 Thread Magnus Hagander
On Sun, Jun 26, 2011 at 02:00, Joe Conway wrote: > On 06/25/2011 04:44 PM, Andrew Dunstan wrote: >> On 06/25/2011 07:07 PM, Joe Conway wrote: >>> On 06/25/2011 04:02 PM, pg...@postgresql.org wrote: Branch refs/heads/REL9_1_STABLE was removed. >>> Umm, I was trying to follow the directions her