aboutsummaryrefslogtreecommitdiff
path: root/contrib
Commit message (Collapse)AuthorAge
* Update tsearch2 README.Bruce Momjian2006-10-02
| | | | Robert Treat
* Remove accented characters in comments, to avoid failures when thisTom Lane2006-10-01
| | | | | file is read with an incompatible client_encoding setting. Per report from Tim N. van der Leeuw.
* Suppress compiler warnings.Tom Lane2006-09-30
|
* uninstall script for sslinfoTom Lane2006-09-30
|
* uninstall script for pg_freespacemapTom Lane2006-09-30
|
* uninstall script for pgrowlocks - Josh DrakeTom Lane2006-09-30
|
* Add uninstall script for adminpack - Josh DrakeTom Lane2006-09-30
|
* Fix bugs in plpgsql and ecpg caused by assuming that isspace() would onlyTom Lane2006-09-22
| | | | | | | | | return true for exactly the characters treated as whitespace by their flex scanners. Per report from Victor Snezhko and subsequent investigation. Also fix a passel of unsafe usages of <ctype.h> functions, that is, ye olde char-vs-unsigned-char issue. I won't miss <ctype.h> when we are finally able to stop using it.
* Fix free space map to correctly track the total amount of FSM space neededTom Lane2006-09-21
| | | | | | | even when a single relation requires more than max_fsm_pages pages. Also, make VACUUM emit a warning in this case, since it likely means that VACUUM FULL or other drastic corrective measure is needed. Per reports from Jeff Frost and others of unexpected changes in the claimed max_fsm_pages need.
* Change patternsel (LIKE/regex selectivity estimation) so that if thereTom Lane2006-09-20
| | | | | | | | | is a large enough histogram, it will use the number of matches in the histogram to derive a selectivity estimate, rather than the admittedly pretty bogus heuristics involving examining the pattern contents. I set 'large enough' at 100, but perhaps we should change that later. Also apply the same technique in contrib/ltree's <@ and @> estimator. Per discussion with Stefan Kaltenbrunner and Matteo Beccati.
* Rename xml_valid() to xml_is_well_formed(), but provide a temporaryTom Lane2006-09-16
| | | | | | alias with the old name for backwards compatibility. Per discussion, the old name is actively wrong because validity and well-formedness have different meanings in XML.
* Fix some more uses of str[n]casecmp that should be pg_str[n]casecmp.Tom Lane2006-09-16
|
* Fix some uses of str[n]casecmp that should be pg_str[n]casecmp.Tom Lane2006-09-15
|
* Remove sslinfo copyright with author permission, keep author attribution.Bruce Momjian2006-09-14
| | | | Victor Wagner
* Change "tps" to "scale" to avoid confusionTatsuo Ishii2006-09-13
| | | | | Fix bug with handling default scaling factor in the default scenarios
* Add uninstall scriptTeodor Sigaev2006-09-12
|
* Spell readme file's name correctly, per buildfarm reports.Tom Lane2006-09-12
|
* Small fix for the README install for contrib/sslinfo.Peter Eisentraut2006-09-12
| | | | Dave Page
* Move xml2's PG_MODULE_MAGIC block to the right source file, per Michael Fuhr.Tom Lane2006-09-11
|
* Rename the uninstall scripts for contrib/lo and contrib/tsearch2 toTom Lane2006-09-11
| | | | | | | 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-11
|
* Install a cleaner solution to the AIX libpq linking problem, as perTom Lane2006-09-10
| | | | | | | 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-10
| | | | Per Chris Browne.
* contrib/isn updates from Jeremy Kronuz.Tom Lane2006-09-10
|
* Rename contrib contains/contained-by operators to @> and <@, per discussion.Tom Lane2006-09-10
|
* Add contrib/isn module for ISBN/ISSN/EAN13/etc product numbers, andTom Lane2006-09-09
| | | | | | 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-06
| | | | Per buildfarm results.
* Fix compiler warnings on 64-bit boxes: difference betweenTeodor Sigaev2006-09-06
| | | | | 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-05
|
* Silence compiler warning about signed vs unsigned chars.Tom Lane2006-09-05
|
* Silence compiler warnings about incompatible function pointer types.Tom Lane2006-09-05
|
* Remove pgcrypto functions that were deprecated and slated for removal.Tom Lane2006-09-05
| | | | Marko Kreen
* Fix markup and license.Teodor Sigaev2006-09-05
|
* Add hstore contrib module.Teodor Sigaev2006-09-05
| | | | | 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-05
| | | | | dbase, dbmirror, fulltextindex, mac, userlock; or abandoned: mSQL-interface, tips.
* Bring sslinfo Makefile up to speed for VPATH and pgxs builds.Tom Lane2006-09-04
|
* sslinfo contrib module - information about current SSL certificatePeter Eisentraut2006-09-04
| | | | Author: Victor Wagner <vitus@cryptocom.ru>
* Update Japanese readme for pgstattuple.Bruce Momjian2006-09-04
|
* Clean up some leftover problems in pgstattuple: remove unwanted andTom Lane2006-09-04
| | | | | unportable elog(NOTICE) report, fix install/uninstall sequence. Itagaki Takahiro
* Use '' rather than \' for literal single quotes in strings inBruce Momjian2006-09-02
| | | | | | /contrib/tsearch2. Teodor Sigaev
* Added async query capability. Original patch byJoe Conway2006-09-02
| | | | Kai Londenberg, modified by Joe Conway
* Add functions to /contrib/pgstattuple that show index statistics andBruce Momjian2006-09-02
| | | | | | index page contents. Satoshi Nagayasu
* Add description of tsvector type layoutTeodor Sigaev2006-08-29
|
* Remove pos comparison in silly_cmp_tsvector(): it is not a semantically ↵Teodor Sigaev2006-08-29
| | | | significant
* Fix incorrect length of lexemes in silly_cmp_tsvector()Teodor Sigaev2006-08-29
|
* Add blank line.Bruce Momjian2006-08-25
|
* Add 'feedback' section heading to xml2.Bruce Momjian2006-08-25
|
* Fix regression tests: after changing comparing functionTeodor Sigaev2006-08-25
| | | | order is changed.
* Fix compare bug for tsvector: problem was in aligment. Per Stefan ↵Teodor Sigaev2006-08-24
| | | | Kaltenbrunner <stefan@kaltenbrunner.cc> and Phil Frost <indigo@bitglue.com>
* Update XML2 documentation for xpath_table().Bruce Momjian2006-08-24
| | | | John Gray