[COMMITTERS] pgsql: Fix infinite loop while checking of partial match in pending

2009-04-05 Thread Teodor Sigaev
Log Message:
---
Fix infinite loop while checking of partial match in pending list.
Improve comments. Now GIN-indexable operators should be strict.
Per Tom's questions/suggestions.

Modified Files:
--
pgsql/src/backend/access/gin:
ginget.c (r1.24 -> r1.25)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/gin/ginget.c?r1=1.24&r2=1.25)
ginscan.c (r1.22 -> r1.23)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/gin/ginscan.c?r1=1.22&r2=1.23)

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


[COMMITTERS] pgsql: Change EXPLAIN output so that subplans and initplans

2009-04-05 Thread Tom Lane
Log Message:
---
Change EXPLAIN output so that subplans and initplans (particularly CTEs)
are individually labeled, rather than just grouped under an "InitPlan"
or "SubPlan" heading.  This in turn makes it possible for decompilation of
a subplan reference to usefully identify which subplan it's referencing.
I also made InitPlans identify which parameter symbol(s) they compute,
so that references to those parameters elsewhere in the plan tree can
be connected to the initplan that will be executed.  Per a gripe from
Robert Haas about EXPLAIN output of a WITH query being inadequate,
plus some longstanding pet peeves of my own.

Modified Files:
--
pgsql/src/backend/commands:
explain.c (r1.184 -> r1.185)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/explain.c?r1=1.184&r2=1.185)
pgsql/src/backend/nodes:
copyfuncs.c (r1.428 -> r1.429)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/nodes/copyfuncs.c?r1=1.428&r2=1.429)
equalfuncs.c (r1.351 -> r1.352)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/nodes/equalfuncs.c?r1=1.351&r2=1.352)
outfuncs.c (r1.357 -> r1.358)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/nodes/outfuncs.c?r1=1.357&r2=1.358)
pgsql/src/backend/optimizer/plan:
subselect.c (r1.147 -> r1.148)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/plan/subselect.c?r1=1.147&r2=1.148)
pgsql/src/backend/utils/adt:
ruleutils.c (r1.296 -> r1.297)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/ruleutils.c?r1=1.296&r2=1.297)
pgsql/src/include/nodes:
primnodes.h (r1.147 -> r1.148)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/nodes/primnodes.h?r1=1.147&r2=1.148)

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


[COMMITTERS] pgfouine - pgfouine: applied [#1010529] Error in normalize for bigint

2009-04-05 Thread User Gsmet
Log Message:
---
applied [#1010529] Error in normalize for bigint (or numeric) numbers (length > 
10) by Oleg Serov

Modified Files:
--
pgfouine:
ChangeLog (r1.77 -> r1.78)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgfouine/pgfouine/ChangeLog.diff?r1=1.77&r2=1.78)
pgfouine/include:
LogObject.class.php (r1.15 -> r1.16)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgfouine/pgfouine/include/LogObject.class.php.diff?r1=1.15&r2=1.16)

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


[COMMITTERS] pgfouine - pgfouine: applied a patch from Max Valjanski to support large

2009-04-05 Thread User Gsmet
Log Message:
---
applied a patch from Max Valjanski to support large pids on 64 bits servers

Modified Files:
--
pgfouine:
ChangeLog (r1.78 -> r1.79)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgfouine/pgfouine/ChangeLog.diff?r1=1.78&r2=1.79)
pgfouine/include/postgresql/parsers:
StderrPostgreSQLParser.class.php (r1.4 -> r1.5)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgfouine/pgfouine/include/postgresql/parsers/StderrPostgreSQLParser.class.php.diff?r1=1.4&r2=1.5)
SyslogPostgreSQLParser.class.php (r1.18 -> r1.19)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgfouine/pgfouine/include/postgresql/parsers/SyslogPostgreSQLParser.class.php.diff?r1=1.18&r2=1.19)

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


[COMMITTERS] pgsql: Make ExecInitExpr build the list of SubPlans found in a plan tree

2009-04-05 Thread Tom Lane
Log Message:
---
Make ExecInitExpr build the list of SubPlans found in a plan tree in order
of discovery, rather than reverse order.  This doesn't matter functionally
(I suppose the previous coding dates from the time when lcons was markedly
cheaper than lappend).  However now that EXPLAIN is labeling subplans with
IDs that are based on order of creation, this may help produce a slightly
less surprising printout.

Modified Files:
--
pgsql/src/backend/executor:
execQual.c (r1.244 -> r1.245)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/executor/execQual.c?r1=1.244&r2=1.245)

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


[COMMITTERS] pgfouine - pgfouine: applied a patch from Steve Woodcock to fix a long

2009-04-05 Thread User Gsmet
Log Message:
---
applied a patch from Steve Woodcock to fix a long standing problem resulting in 
leading "statement: " in the query text for some queries

Modified Files:
--
pgfouine:
ChangeLog (r1.79 -> r1.80)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgfouine/pgfouine/ChangeLog.diff?r1=1.79&r2=1.80)
pgfouine/include/postgresql:
PostgreSQLRegexps.lib.php (r1.14 -> r1.15)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgfouine/pgfouine/include/postgresql/PostgreSQLRegexps.lib.php.diff?r1=1.14&r2=1.15)

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


[COMMITTERS] pgsql: Change cardinality() into a C-code function, instead of a

2009-04-05 Thread Tom Lane
Log Message:
---
Change cardinality() into a C-code function, instead of a SQL-language
alias for array_length(v,1).  The efficiency gain here is doubtless
negligible --- what I'm interested in is making sure that if we have
second thoughts about the definition, we will not have to force a
post-beta initdb to change the implementation.

Modified Files:
--
pgsql/src/backend/utils/adt:
arrayfuncs.c (r1.153 -> r1.154)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/arrayfuncs.c?r1=1.153&r2=1.154)
pgsql/src/include/catalog:
catversion.h (r1.527 -> r1.528)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/catversion.h?r1=1.527&r2=1.528)
pg_proc.h (r1.539 -> r1.540)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_proc.h?r1=1.539&r2=1.540)
pgsql/src/include/utils:
array.h (r1.74 -> r1.75)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/array.h?r1=1.74&r2=1.75)

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


[COMMITTERS] textsearch-ja - textsearch-ja: Remove trailing dashes for 4 charactor

2009-04-05 Thread User Itagaki
Log Message:
---

Remove trailing dashes for 4 charactor or more words.

Modified Files:
--
textsearch-ja:
encoding_eucjp.c (r1.5 -> r1.6)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch-ja/encoding_eucjp.c.diff?r1=1.5&r2=1.6)
encoding_utf8.c (r1.6 -> r1.7)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch-ja/encoding_utf8.c.diff?r1=1.6&r2=1.7)
textsearch_ja.c (r1.9 -> r1.10)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch-ja/textsearch_ja.c.diff?r1=1.9&r2=1.10)
textsearch_ja.h (r1.5 -> r1.6)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch-ja/textsearch_ja.h.diff?r1=1.5&r2=1.6)
textsearch-ja/doc:
index-ja.html (r1.5 -> r1.6)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch-ja/doc/index-ja.html.diff?r1=1.5&r2=1.6)
textsearch-ja/expected:
init.out (r1.1 -> r1.2)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch-ja/expected/init.out.diff?r1=1.1&r2=1.2)
textsearch_ja.out (r1.1 -> r1.2)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch-ja/expected/textsearch_ja.out.diff?r1=1.1&r2=1.2)
textsearch-ja/sql:
textsearch_ja.sql (r1.1 -> r1.2)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch-ja/sql/textsearch_ja.sql.diff?r1=1.1&r2=1.2)

Added Files:
---
textsearch-ja/doc:
textsearch_ja.html (r1.1)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/textsearch-ja/textsearch-ja/doc/textsearch_ja.html?rev=1.1&content-type=text/x-cvsweb-markup)

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