[COMMITTERS] pgsql: Small punctuation editing of postgresql.conf.sample

2012-05-13 Thread Peter Eisentraut
Small punctuation editing of postgresql.conf.sample Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/6bf1e7668dbdb5f97ae3b06f63bc0525be9d5387 Modified Files -- src/backend/utils/misc/postgresql.conf.sample |9 + 1 files changed, 5 insertions(+),

[COMMITTERS] pgsql: Remove leftovers of BeOS port

2012-05-13 Thread Peter Eisentraut
Remove leftovers of BeOS port These should have been removed when the BeOS port was removed in 44f90212236bfb6fc1279e95dc8fa315104d964e. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/64f09ca38600ef0471683491f7735001b72c0f39 Modified Files -- configure

[COMMITTERS] pgsql: pg_ctl: Improve --help output

2012-05-13 Thread Peter Eisentraut
pg_ctl: Improve --help output All other --help output has = signs between long options and their arguments, so do it here as well. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/2a7f6366409d54e9a61e2b7ba0277b7cdf15dbdc Modified Files -- src/bin/pg_ctl/p

[COMMITTERS] pgsql: Add some temporary instrumentation to pgstat.c.

2012-05-13 Thread Tom Lane
Add some temporary instrumentation to pgstat.c. Log main-loop blocking events and the results of inquiry messages. This is to get some clarity as to what's happening on those Windows buildfarm members that still don't like the latch-ified stats collector. This bulks up the postmaster log a tad, so

[COMMITTERS] pgsql: Fix DROP TABLESPACE to unlink symlink when directory is not ther

2012-05-13 Thread Tom Lane
Fix DROP TABLESPACE to unlink symlink when directory is not there. If the tablespace directory is missing entirely, we allow DROP TABLESPACE to go through, on the grounds that it should be possible to clean up the catalog entry in such a situation. However, we forgot that the pg_tblspc symlink mi

[COMMITTERS] pgsql: Fix DROP TABLESPACE to unlink symlink when directory is not ther

2012-05-13 Thread Tom Lane
Fix DROP TABLESPACE to unlink symlink when directory is not there. If the tablespace directory is missing entirely, we allow DROP TABLESPACE to go through, on the grounds that it should be possible to clean up the catalog entry in such a situation. However, we forgot that the pg_tblspc symlink mi

[COMMITTERS] pgsql: Fix DROP TABLESPACE to unlink symlink when directory is not ther

2012-05-13 Thread Tom Lane
Fix DROP TABLESPACE to unlink symlink when directory is not there. If the tablespace directory is missing entirely, we allow DROP TABLESPACE to go through, on the grounds that it should be possible to clean up the catalog entry in such a situation. However, we forgot that the pg_tblspc symlink mi

[COMMITTERS] pgsql: Re-revert stats collector latch changes.

2012-05-13 Thread Tom Lane
Re-revert stats collector latch changes. This reverts commit cb2f2873d6b81ad7f0a9733ba738bfac0746fb7b, restoring the latch-ified stats collector logic. We'll soon see if this works any better on the Windows buildfarm machines. Branch -- master Details --- http://git.postgresql.org/pg/co

[COMMITTERS] pgsql: Attempt to fix some issues in our Windows socket code.

2012-05-13 Thread Tom Lane
Attempt to fix some issues in our Windows socket code. Make sure WaitLatchOrSocket regards FD_CLOSE as a read-ready condition. We might want to tweak this further, but it was surely wrong as-is. Make pgwin32_waitforsinglesocket detach its private event object from the passed socket before returni