[COMMITTERS] pgsql: Correct mistaken claims about EXPLAIN ANALYZE's handling of trig

2011-03-02 Thread Tom Lane
Correct mistaken claims about EXPLAIN ANALYZE's handling of triggers. Time spent executing AFTER triggers is not included in the runtime of the associated ModifyTable node; in my patch of yesterday I confused queuing of these triggers with their actual execution. Spotted by Marko Tiikkaja. Branc

[COMMITTERS] pgsql: Correct mistaken claims about EXPLAIN ANALYZE's handling of trig

2011-03-02 Thread Tom Lane
Correct mistaken claims about EXPLAIN ANALYZE's handling of triggers. Time spent executing AFTER triggers is not included in the runtime of the associated ModifyTable node; in my patch of yesterday I confused queuing of these triggers with their actual execution. Spotted by Marko Tiikkaja. Branc

[COMMITTERS] pgsql: Fix erroneous documentation of the syntax of CREATE CONSTRAINT T

2011-03-02 Thread Tom Lane
Fix erroneous documentation of the syntax of CREATE CONSTRAINT TRIGGER. The grammar requires a specific ordering of the clauses, but the documentation showed a different order. This error was introduced in commit b47953f9c69d48a9261bd643e3170017b93f6337, which merged the CREATE CONSTRAINT TRIGGER

[COMMITTERS] pgsql: Support for DragonFly BSD

2011-03-02 Thread Peter Eisentraut
Support for DragonFly BSD Mapped to NetBSD, the closest existing match. (Even though DragonFly BSD is derived from FreeBSD, the shared library version numbering matches NetBSD, and the rest is mostly the same among all BSD variants.) per "Rumko" Branch -- master Details --- http://git.

[COMMITTERS] pgsql: Add KNNGIST support to contrib/btree_gist.

2011-03-02 Thread Tom Lane
Add KNNGIST support to contrib/btree_gist. This extends GiST's support for nearest-neighbor searches to many of the standard data types. Teodor Sigaev Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8436489c81c23af637696ac69cdaafddcc907ee1 Modified Files --

[COMMITTERS] pgsql: Add 'collatable' to the Parameters section of CREATE TYPE.

2011-03-02 Thread Tom Lane
Add 'collatable' to the Parameters section of CREATE TYPE. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/43bdf3583a9a5912e1800ab140b8ca495ae69d85 Modified Files -- doc/src/sgml/ref/create_type.sgml | 10 ++ 1 files changed, 10 insertions(+), 0

[COMMITTERS] pgsql: Add collations to information_schema.usage_privileges

2011-03-02 Thread Peter Eisentraut
Add collations to information_schema.usage_privileges This is faked information like for domains. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/091bda0188250c9802cebca066b4ca9e049616e6 Modified Files -- doc/src/sgml/information_schema.sgml | 10

[COMMITTERS] reorg - pg_reorg: work around for 9.1.

2011-03-02 Thread User Itagaki
Log Message: --- work around for 9.1. Modified Files: -- pg_reorg/lib: reorg.c (r1.21 -> r1.22) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/reorg/pg_reorg/lib/reorg.c?r1=1.21&r2=1.22) pg_reorg/lib/pgut: pgut-be.h (r1.7 -> r1.8) (http:/

[COMMITTERS] pgsql: Mark operator implementation functions as such in their comments

2011-03-02 Thread Tom Lane
Mark operator implementation functions as such in their comments. Historically, we've not had separate comments for built-in pg_operator entries, but relied on the comments for the underlying functions. The trouble with this approach is that there isn't much of anything to suggest to users that t

[COMMITTERS] pgsql: Add -lm to SHLIB_LINK for contrib/btree_gist.

2011-03-02 Thread Tom Lane
Add -lm to SHLIB_LINK for contrib/btree_gist. Now that btree_gist contains a reference to isinf(), this is necessary at least on some platforms. Per buildfarm. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8c4164540b30434845be02f84973663bfeb231ab Modified Files -

[COMMITTERS] pgsql: Add tab-completion for table name after JOIN.

2011-03-02 Thread Heikki Linnakangas
Add tab-completion for table name after JOIN. Andrey Popp Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8e2d8b1497ac64142bb7df05e39a58ebf3e62bf6 Modified Files -- src/bin/psql/tab-complete.c |4 1 files changed, 4 insertions(+), 0 deletions(-)