[COMMITTERS] pgsql: If primary_conninfo is not set, don't try to establish streaming

2010-02-11 Thread Heikki Linnakangas
Log Message: --- If primary_conninfo is not set, don't try to establish streaming connection. Modified Files: -- pgsql/src/backend/access/transam: xlog.c (r1.371 -> r1.372) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xlog.c?r1

[COMMITTERS] pgsql: Check for partial WAL files in standby mode.

2010-02-11 Thread Heikki Linnakangas
Log Message: --- Check for partial WAL files in standby mode. If restore_command restores a partial WAL file, assume it's because the file is just being copied to the archive and treat it the same as "file not found" in standby mode. pg_standby has a similar check, so it seems reasonable to

[COMMITTERS] pgsql: Free reference in correct Perl context.

2010-02-11 Thread Andrew Dunstan
Log Message: --- Free reference in correct Perl context. Backpatch to release 8.2. Patch from Tim Bunce. Tags: REL8_2_STABLE Modified Files: -- pgsql/src/pl/plperl: plperl.c (r1.123.2.10 -> r1.123.2.11) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql

[COMMITTERS] pgsql: Free reference in correct Perl context.

2010-02-11 Thread Andrew Dunstan
Log Message: --- Free reference in correct Perl context. Backpatch to release 8.2. Patch from Tim Bunce. Tags: REL8_3_STABLE Modified Files: -- pgsql/src/pl/plperl: plperl.c (r1.136.2.6 -> r1.136.2.7) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/s

[COMMITTERS] pgsql: Free reference in correct Perl context.

2010-02-11 Thread Andrew Dunstan
Log Message: --- Free reference in correct Perl context. Backpatch to release 8.2. Patch from Tim Bunce. Tags: REL8_4_STABLE Modified Files: -- pgsql/src/pl/plperl: plperl.c (r1.150.2.4 -> r1.150.2.5) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/s

[COMMITTERS] pgsql: Free reference in correct Perl context.

2010-02-11 Thread Andrew Dunstan
Log Message: --- Free reference in correct Perl context. Backpatch to release 8.2. Patch from Tim Bunce. Modified Files: -- pgsql/src/pl/plperl: plperl.c (r1.163 -> r1.164) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plperl/plperl.c?r1=1.163&r2=

[COMMITTERS] pgstatsinfo - pg_statsinfo: Add utility functions for pg_reporter.

2010-02-11 Thread User Itagaki
Log Message: --- Add utility functions for pg_reporter. Modified Files: -- pg_statsinfo/bin: logger.c (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgstatsinfo/pg_statsinfo/bin/logger.c?r1=1.2&r2=1.3) pg_statsrepo.sql (r1.1 -> r1.2)

[COMMITTERS] pgstatsinfo - pg_reporter: Add templates for pg_statsinfo v2.

2010-02-11 Thread User Itagaki
Log Message: --- Add templates for pg_statsinfo v2. Modified Files: -- pg_reporter/htdocs/template: index.xml (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgstatsinfo/pg_reporter/htdocs/template/index.xml?r1=1.2&r2=1.3) schema.xml (r1

[COMMITTERS] pgsql: Suppress uninitialized-variable warning.

2010-02-11 Thread Tom Lane
Log Message: --- Suppress uninitialized-variable warning. Modified Files: -- pgsql/src/backend/utils/misc: rbtree.c (r1.1 -> r1.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/rbtree.c?r1=1.1&r2=1.2) -- Sent via pgsql-committers

[COMMITTERS] pgsimilarity - pg_similarity: Imported Sources

2010-02-11 Thread User Eulerto
Update of /cvsroot/pgsimilarity/pg_similarity In directory pgfoundry.org:/tmp/cvs-serv36973 Log Message: importing files Status: Vendor Tag: INITIAL Release Tags: start N pg_similarity/qgram.c N pg_similarity/smithwatermangotoh.c N pg_similarity/COPYRIGHT N pg_similarity/c

[COMMITTERS] pgspy - pg_similarity: Imported Sources

2010-02-11 Thread User Eulerto
Update of /cvsroot/pgspy/pg_similarity In directory pgfoundry.org:/tmp/cvs-serv35508 Log Message: importing files Status: Vendor Tag: INITIAL Release Tags: start N pg_similarity/qgram.c N pg_similarity/smithwatermangotoh.c N pg_similarity/COPYRIGHT N pg_similarity/cosine.c

[COMMITTERS] pgsql: Fix typo bug in Hot Standby from recent refactoring.

2010-02-11 Thread Simon Riggs
Log Message: --- Fix typo bug in Hot Standby from recent refactoring. Bug introduced into code recently patched by Andres Freund, so quickly fixed by him when bug report from Tatsuo Ishii arrived. Modified Files: -- pgsql/src/backend/storage/ipc: standby.c (r1.10 ->

[COMMITTERS] pgsql: Generic implementation of red-black binary tree.

2010-02-11 Thread Teodor Sigaev
Log Message: --- Generic implementation of red-black binary tree. It's planned to use in several places, but for now only GIN uses it during index creation. Using self-balanced tree greatly speeds up index creation in corner cases with preordered data. Modified Files: -- pg