1. 16 3月, 2016 1 次提交
    • T
      Add word_similarity to pg_trgm contrib module. · f576b17c
      Teodor Sigaev 提交于
      Patch introduces a concept of similarity over string and just a word from
      another string.
      
      Version of extension is not changed because 1.2 was already introduced in 9.6
      release cycle, so, there wasn't a public version.
      
      Author: Alexander Korotkov, Artur Zakirov
      f576b17c
  2. 20 7月, 2015 1 次提交
  3. 15 7月, 2014 1 次提交
  4. 09 4月, 2013 1 次提交
    • T
      Support indexing of regular-expression searches in contrib/pg_trgm. · 3ccae48f
      Tom Lane 提交于
      This works by extracting trigrams from the given regular expression,
      in generally the same spirit as the previously-existing support for
      LIKE searches, though of course the details are far more complicated.
      
      Currently, only GIN indexes are supported.  We might be able to make
      it work with GiST indexes later.
      
      The implementation includes adding API functions to backend/regex/
      to provide a view of the search NFA created from a regular expression.
      These functions are meant to be generic enough to be supportable in
      a standalone version of the regex library, should that ever happen.
      
      Alexander Korotkov, reviewed by Heikki Linnakangas and Tom Lane
      3ccae48f
  5. 14 2月, 2011 1 次提交
    • T
      Convert contrib modules to use the extension facility. · 629b3af2
      Tom Lane 提交于
      This isn't fully tested as yet, in particular I'm not sure that the
      "foo--unpackaged--1.0.sql" scripts are OK.  But it's time to get some
      buildfarm cycles on it.
      
      sepgsql is not converted to an extension, mainly because it seems to
      require a very nonstandard installation process.
      
      Dimitri Fontaine and Tom Lane
      629b3af2
  6. 21 9月, 2010 1 次提交
  7. 29 4月, 2009 1 次提交
  8. 11 11月, 2007 1 次提交
  9. 27 6月, 2007 1 次提交
  10. 14 3月, 2007 1 次提交
  11. 10 2月, 2007 2 次提交
  12. 27 2月, 2006 1 次提交
  13. 28 9月, 2005 1 次提交
  14. 21 8月, 2004 1 次提交
    • B
      > Please find enclose a submission to fix these problems. · ee85595d
      Bruce Momjian 提交于
      >
      > The patch adds missing the "libpgport.a" file to the installation under
      > "install-all-headers". It is needed by some contribs. I install the
      > library in "pkglibdir", but I was wondering whether it should be "libdir"?
      > I was wondering also whether it would make sense to have a "libpgport.so"?
      >
      > It fixes various macros which are used by contrib makefiles, especially
      > libpq_*dir and LDFLAGS when used under PGXS. It seems to me that they are
      > needed to
      >
      > It adds the ability to test and use PGXS with contribs, with "make
      > USE_PGXS=1". Without the macro, this is exactly as before, there should be
      > no difference, esp. wrt the vpath feature that seemed broken by previous
      > submission. So it should not harm anybody, and it is useful at least to me.
      >
      > It fixes some inconsistencies in various contrib makefiles
      > (useless override, ":=" instead of "=").
      
      Fabien COELHO
      ee85595d
  15. 01 6月, 2004 1 次提交
    • T
      trgm - Trigram matching for PostgreSQL · cbfa4092
      Teodor Sigaev 提交于
      --------------------------------------
      
      	The pg_trgm contrib module provides functions and index classes
      	for determining the similarity of text based on trigram
      	matching.
      cbfa4092