summaryrefslogtreecommitdiff
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* Change "tps" to "scale" to avoid confusionTatsuo Ishii2006-09-133-36/+56
| | | | | Fix bug with handling default scaling factor in the default scenarios
* Add uninstall scriptTeodor Sigaev2006-09-122-0/+40
|
* Spell readme file's name correctly, per buildfarm reports.Tom Lane2006-09-121-1/+1
|
* Small fix for the README install for contrib/sslinfo.Peter Eisentraut2006-09-121-1/+1
| | | | Dave Page
* Move xml2's PG_MODULE_MAGIC block to the right source file, per Michael Fuhr.Tom Lane2006-09-112-2/+3
|
* Rename the uninstall scripts for contrib/lo and contrib/tsearch2 toTom Lane2006-09-113-5/+5
| | | | | | | match the convention that foo's uninstall script is uninstall_foo.sql. Also, stop installing lo_test.sql, which really ought to be made into a regression test anyway (though it's unclear how to avoid a dependency on the current OID counter...)
* Fix omissions in contrib uninstall scripts. Michael FuhrTom Lane2006-09-112-0/+16
|
* Install a cleaner solution to the AIX libpq linking problem, as perTom Lane2006-09-101-4/+1
| | | | | | | an earlier discussion. Centralize assumptions about what libpq depends on in one place in Makefile.global. I am unconvinced that this list is complete, but since ecpg seems to have gotten along with just these entries, we'll try it this way and see what happens.
* Fix dblink build for --enable-nls or --enable-openssl on AIX.Tom Lane2006-09-101-1/+4
| | | | Per Chris Browne.
* contrib/isn updates from Jeremy Kronuz.Tom Lane2006-09-104-73/+224
|
* Rename contrib contains/contained-by operators to @> and <@, per discussion.Tom Lane2006-09-1035-1108/+1287
|
* Add contrib/isn module for ISBN/ISSN/EAN13/etc product numbers, andTom Lane2006-09-0918-752/+4582
| | | | | | remove the old isbn_issn module which is about to be obsoleted by EAN13. contrib/isn is by Germán Méndez Bravo. Our thanks to Garrett A. Wollman for having written the original isbn_issn module.
* Be more wary about which LIBS elements to pull into sslinfo link.Tom Lane2006-09-061-1/+1
| | | | Per buildfarm results.
* Fix compiler warnings on 64-bit boxes: difference betweenTeodor Sigaev2006-09-061-4/+4
| | | | | pointers are int64, but warnings are emitted for position info in error messages in parser, so, just cast it to int32
* Fix sslinfo so it builds on Darwin.Tom Lane2006-09-051-1/+4
|
* Silence compiler warning about signed vs unsigned chars.Tom Lane2006-09-051-2/+8
|
* Silence compiler warnings about incompatible function pointer types.Tom Lane2006-09-051-2/+4
|
* Remove pgcrypto functions that were deprecated and slated for removal.Tom Lane2006-09-055-106/+6
| | | | Marko Kreen
* Fix markup and license.Teodor Sigaev2006-09-051-9/+14
|
* Add hstore contrib module.Teodor Sigaev2006-09-0514-1/+3701
| | | | | Per discussion http://archives.postgresql.org/pgsql-hackers/2006-08/msg01409.php
* Remove contrib modules that have been migrated to pgfoundry: adddepend,Tom Lane2006-09-0544-7063/+6
| | | | | dbase, dbmirror, fulltextindex, mac, userlock; or abandoned: mSQL-interface, tips.
* Bring sslinfo Makefile up to speed for VPATH and pgxs builds.Tom Lane2006-09-041-5/+9
|
* sslinfo contrib module - information about current SSL certificatePeter Eisentraut2006-09-045-1/+503
| | | | Author: Victor Wagner <vitus@cryptocom.ru>
* Update Japanese readme for pgstattuple.Bruce Momjian2006-09-041-27/+103
|
* Clean up some leftover problems in pgstattuple: remove unwanted andTom Lane2006-09-044-93/+32
| | | | | unportable elog(NOTICE) report, fix install/uninstall sequence. Itagaki Takahiro
* Use '' rather than \' for literal single quotes in strings inBruce Momjian2006-09-023-28/+43
| | | | | | /contrib/tsearch2. Teodor Sigaev
* Added async query capability. Original patch byJoe Conway2006-09-028-166/+686
| | | | Kai Londenberg, modified by Joe Conway
* Add functions to /contrib/pgstattuple that show index statistics andBruce Momjian2006-09-024-45/+919
| | | | | | index page contents. Satoshi Nagayasu
* Add description of tsvector type layoutTeodor Sigaev2006-08-291-0/+14
|
* Remove pos comparison in silly_cmp_tsvector(): it is not a semantically ↵Teodor Sigaev2006-08-291-2/+0
| | | | significant
* Fix incorrect length of lexemes in silly_cmp_tsvector()Teodor Sigaev2006-08-291-1/+1
|
* Add blank line.Bruce Momjian2006-08-251-0/+1
|
* Add 'feedback' section heading to xml2.Bruce Momjian2006-08-251-0/+3
|
* Fix regression tests: after changing comparing functionTeodor Sigaev2006-08-251-1/+1
| | | | order is changed.
* Fix compare bug for tsvector: problem was in aligment. Per Stefan ↵Teodor Sigaev2006-08-241-8/+34
| | | | Kaltenbrunner <stefan@kaltenbrunner.cc> and Phil Frost <indigo@bitglue.com>
* Update XML2 documentation for xpath_table().Bruce Momjian2006-08-241-1/+75
| | | | John Gray
* Fix pgbench to handle empty lines in script files as documented.Tatsuo Ishii2006-08-151-3/+3
| | | | patches contributed by Itagaki Takahiro.
* Fix bug introduced by last patch, thanks again to Mario Weilguni ↵Teodor Sigaev2006-08-081-6/+26
| | | | <mweilguni@sime.com>
* fix bug about modifying value in shared buffer,Teodor Sigaev2006-08-071-41/+13
| | | | | | what was a reason to corrupt index. Thank to Mario Weilguni <mweilguni@sime.com> to discover a bug.
* Fix references to the Options section in the pgcrypto documentation.Neil Conway2006-08-051-5/+5
| | | | Patch from Michael Fuhr.
* Change the relation_open protocol so that we obtain lock on a relationTom Lane2006-07-311-2/+1
| | | | | | | | | | | | (table or index) before trying to open its relcache entry. This fixes race conditions in which someone else commits a change to the relation's catalog entries while we are in process of doing relcache load. Problems of that ilk have been reported sporadically for years, but it was not really practical to fix until recently --- for instance, the recent addition of WAL-log support for in-place updates helped. Along the way, remove pg_am.amconcurrent: all AMs are now expected to support concurrent update.
* Fix memory allocation bug in pgbench.Tatsuo Ishii2006-07-311-2/+2
| | | | patches submitted by ITAGAKI Takahiro.
* Change the delta val from 0 and 10000 to -5000 and 5000 per recentTatsuo Ishii2006-07-281-30/+25
| | | | | discussion in hackers list. Also enhance predefined benchmark scenarios to reflect the scaling factor parameter flexibly.
* Fix incorrect function return code in cube_cmp and cube_dim;Tom Lane2006-07-274-27/+55
| | | | update regression expected files to what I think is correct.
* revert last change - broke non-AIX platforms.Andrew Dunstan2006-07-271-4/+4
|
* another try at keeping AIX/ppc happy on cube test.Andrew Dunstan2006-07-271-4/+4
|
* fix most regression tests for new cube code.Andrew Dunstan2006-07-275-19/+49
|
* New features contributed by Tomoaki Sato.Tatsuo Ishii2006-07-263-61/+333
| | | | | | | | | | | - predefined variable "tps" The value of variable tps is taken from the scaling factor specified by -s option. - -D option Variable values can be defined by -D option. - \set command now allows arithmetic calculations.
* /contrib/cube improvements:Bruce Momjian2006-07-257-196/+662
| | | | | | | | | | | | | | | | | | | | Update the calling convention for all external facing functions. By external facing, I mean all functions that are directly referenced in cube.sql. Prior to my update, all functions used the older V0 calling convention. They now use V1. New Functions: cube(float[]), which makes a zero volume cube from a float array cube(float[], float[]), which allows the user to create a cube from two float arrays; one for the upper right and one for the lower left coordinate. cube_subset(cube, int4[]), to allow you to reorder or choose a subset of dimensions from a cube, using index values specified in the array. Joshua Reich
* Split the buffer mapping table into multiple separately lockableTom Lane2006-07-231-10/+13
| | | | | partitions, as per discussion. Passes functionality checks, but I don't have any performance data yet.