[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/backend/access/gist/gistproc.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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 insertions(+), 6 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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 insertions(+), 6 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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 insertions(+), 6 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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 ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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 pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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 ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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 test for the state of the
postmaster_alive socket, but missed it for the caller-supplied socket.
Fortunately, this error is new in 9.2, since 9.1 only had a select()
based code path not a poll() based one.

Branch
--
master

Details
---
http://git.postgresql.org/pg/commitdiff/31ad6553646c81f3ce8fccf8aef1a1134a7864c7

Modified Files
--
src/backend/port/unix_latch.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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
---
http://git.postgresql.org/pg/commitdiff/7b85527eaee2cdcfc33d9f8c6c8e4a4908f7f58d

Modified Files
--
configure|   12 
configure.in |6 --
2 files changed, 0 insertions(+), 18 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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 log or any signals to service, it will only wake up
at the programmed logfile rotation times (if any).

Branch
--
master

Details
---
http://git.postgresql.org/pg/commitdiff/398b240151708d7e971631875760ddbad3a63e0e

Modified Files
--
src/backend/postmaster/syslogger.c |   95 +---
1 files changed, 66 insertions(+), 29 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[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/pg/commitdiff/fd350ef395b59e39bf419bd47e820b94dff23971

Modified Files
--
src/backend/libpq/auth.c |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers