NOTICE: This package has been removed from pkgsrc

./databases/postgresql81-tsearch2, Tsearch2 contrib module for fulltext indexing in PostgreSQL

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 8.1.17, Package name: postgresql81-tsearch2-8.1.17, Maintainer: jlam

The Tsearch2 contrib module contains an implementation of a new data
type tsvector - a searchable data type with indexed access. In a
nutshell, tsvector is a set of unique words along with their
positional information in the document, organized in a special
structure optimized for fast access and lookup. This data type can
be used as backend for efficient full text search engines.


Required to run:
[databases/postgresql81-client] [databases/postgresql81-server]

Required to build:
[devel/gmake] [devel/libtool-base] [devel/bison]

Master sites: (Expand)

SHA1: c2ff35d867007ebed1c7974025cad7a4c48095eb
RMD160: ddbfff887bdb1a1d3c80e9bd116810e619b72e7a
Filesize: 11504.664 KB

Version history: (Expand)


CVS history: (Expand)


   2009-06-14 19:43:27 by Joerg Sonnenberger | Files touched by this commit (120)
Log message:
Remove @dirrm entries from PLISTs
   2008-06-20 10:27:58 by Adam Ciarcinski | Files touched by this commit (12) | Package updated
Log message:
Changes 8.1.13:
* Make pg_get_ruledef() parenthesize negative constants (Tom)
  Before this fix, a negative constant in a view or rule might be
  dumped as, say, -42::integer, which is subtly incorrect: it should
  be (-42)::integer due to operator precedence rules. Usually this
  would make little difference, but it could interact with another
  recent patch to cause PostgreSQL to reject what had been a valid
  "SELECT DISTINCT" view query. Since this could result in pg_dump
  output failing to reload, it is being treated as a high-priority
  fix. The only released versions in which dump output is actually
  incorrect are 8.3.1 and 8.2.7.
* Make "ALTER AGGREGATE ... OWNER TO" update pg_shdepend (Tom)
  This oversight could lead to problems if the aggregate was later
  involved in a "DROP OWNED" or "REASSIGN OWNED" operation.
   2008-06-12 04:14:58 by Joerg Sonnenberger | Files touched by this commit (1134)
Log message:
Add DESTDIR support.
   2008-01-18 06:06:45 by Tobias Nygren | Files touched by this commit (191)
Log message:
Per the process outlined in revbump(1), perform a recursive revbump
on packages that are affected by the switch from the openssl 0.9.7
branch to the 0.9.8 branch. ok jlam@
   2007-01-08 19:55:39 by Adam Ciarcinski | Files touched by this commit (12)
Log message:
Changes 8.1.6:
* Improve handling of getaddrinfo() on AIX
  This fixes a problem with starting the statistics collector, among
  other things.
* Fix pg_restore to handle a tar-format backup that contains large
  objects (blobs) with comments
* Fix "failed to re-find parent key" errors in "VACUUM"
* Clean out "pg_internal.init" cache files during server restart
  This avoids a hazard that the cache files might contain stale data
  after PITR recovery.
* Fix race condition for truncation of a large relation across a
  gigabyte boundary by "VACUUM"
* Fix bug causing needless deadlock errors on row-level locks
* Fix bugs affecting multi-gigabyte hash indexes
* Fix possible deadlock in Windows signal handling
* Fix error when constructing an ARRAY[] made up of multiple empty
  elements
* Fix ecpg memory leak during connection
* Fix for Darwin (OS X) compilation
* to_number() and to_char(numeric) are now STABLE, not IMMUTABLE, for
  new initdb installs
  This is because lc_numeric can potentially change the output of
  these functions.
* Improve index usage of regular expressions that use parentheses
  This improves psql \d performance also.
* Update timezone database
  This affects Australian and Canadian daylight-savings rules in
  particular.
   2006-12-01 21:15:12 by Joerg Sonnenberger | Files touched by this commit (1)
Log message:
Don't forget to fill in a sensible COMMENT.
   2006-12-01 21:13:50 by Joerg Sonnenberger | Files touched by this commit (3) | Imported package
Log message:
By popular demand, add a package for the tsearch2 contrib module of
PostgreSQL 8.1. It can be used to implement efficient fulltext search
engines.