[COMMITTERS] pgsql: Fix obsolescent C declaration syntax

2012-05-12 Thread Peter Eisentraut
Fix obsolescent C declaration syntax gcc -Wextra/-Wold-style-declaration thinks that "inline" should go before the function return type. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/afe86a9e73b0d30f34dfdc196a6b52ce1306a95e Modified Files -- src/backen

[COMMITTERS] pgsql: Ensure backwards compatibility for GetStableLatestTransactionId(

2012-05-12 Thread Simon Riggs
Ensure backwards compatibility for GetStableLatestTransactionId() Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/pg/commitdiff/37edecfdfe21c2d20431109e9d1aeb18485bbf0a Modified Files -- src/backend/access/transam/xact.c | 14 -- 1 files changed, 8

[COMMITTERS] pgsql: Ensure backwards compatibility for GetStableLatestTransactionId(

2012-05-12 Thread Simon Riggs
Ensure backwards compatibility for GetStableLatestTransactionId() Branch -- REL9_1_STABLE Details --- http://git.postgresql.org/pg/commitdiff/436af241c88a2f9b971dbe248e6ec6360438033c Modified Files -- src/backend/access/transam/xact.c | 14 -- 1 files changed, 8

[COMMITTERS] pgsql: Ensure backwards compatibility for GetStableLatestTransactionId(

2012-05-12 Thread Simon Riggs
Ensure backwards compatibility for GetStableLatestTransactionId() Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/867540b49cd248ea867cfcf04d3dbb2ba4f506b8 Modified Files -- src/backend/access/transam/xact.c | 14 -- 1 files changed, 8 inserti

[COMMITTERS] psqlodbc - psqlodbc: missing end character.

2012-05-12 Thread Hiroshi Saito
Log Message: --- missing end character. Modified Files: -- psqlodbc: version.h (r1.217 -> r1.218) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/version.h?r1=1.217&r2=1.218) -- Sent via pgsql-committers mailing list (pgsql-committers@postg

[COMMITTERS] pgsql: Update group commit release note item.

2012-05-12 Thread Bruce Momjian
Update group commit release note item. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/d36eaa2167c4baaa654a19432035f47fdf6fbe7d Modified Files -- doc/src/sgml/release-9.2.sgml |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) -- Sent via pgs

[COMMITTERS] psqlodbc - psqlodbc: add change history.

2012-05-12 Thread Hiroshi Saito
Log Message: --- add change history. Modified Files: -- psqlodbc/docs: release.html (r1.83 -> r1.84) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/docs/release.html?r1=1.83&r2=1.84) -- Sent via pgsql-committers mailing list (pgsql-committ

[COMMITTERS] pgsql: Tag refs/tags/REL9_2_BETA1 was created

2012-05-12 Thread pgsql
Tag refs/tags/REL9_2_BETA1 was created. -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Fix WaitLatchOrSocket to handle EOF on socket correctly.

2012-05-12 Thread Tom Lane
Fix WaitLatchOrSocket to handle EOF on socket correctly. When using poll(), EOF on a socket is reported with the POLLHUP not POLLIN flag (at least on Linux). WaitLatchOrSocket failed to check this bit, causing it to go into a busy-wait loop if EOF occurs. We earlier fixed the same mistake in the

[COMMITTERS] pgsql: Remove unused AC_SUBST variables

2012-05-12 Thread Peter Eisentraut
Remove unused AC_SUBST variables These were apparently never used. The AC_SUBST was probably just added in a copy-and-paste manner. (The shell variables continue to be used inside configure. The change is just that we don't need them outside of configure.) Branch -- master Details ---

[COMMITTERS] pgsql: Avoid unnecessary process wakeups in the log collector.

2012-05-12 Thread Tom Lane
Avoid unnecessary process wakeups in the log collector. syslogger was coded to wake up once per second whether there was anything useful to do or not. As part of our campaign to reduce the server's idle power consumption, change it to use a latch for waiting. Now, in the absence of any data to l

[COMMITTERS] pgsql: Fix bogus declaration of local variable.

2012-05-12 Thread Tom Lane
Fix bogus declaration of local variable. rc should be an int here, not a pgsocket. Fairly harmless as long as pgsocket is an integer type, but nonetheless wrong. Error introduced in commit 87091cb1f1ed914e2ddca424fa28f94fdf8461d2. Branch -- master Details --- http://git.postgresql.org/