Re: tsearch2 in PostgreSQL 8.3? - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: tsearch2 in PostgreSQL 8.3?
Date
Msg-id 200708181948.l7IJmNp13151@momjian.us
Whole thread Raw
In response to Re: tsearch2 in PostgreSQL 8.3?  ("Joshua D. Drake" <jd@commandprompt.com>)
List pgsql-hackers
Joshua D. Drake wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Bruce Momjian wrote:
> > Trevor Talbot wrote:
> >> On 8/18/07, Bruce Momjian <bruce@momjian.us> wrote:
> >>
> >>> Remember an expression index can be a user-created function so you can
> >>> embed whatever you want in your function and just index it's output,
> >>> just like you would with a trigger creating a separate column.
> >> Well, you could create a function that returns a tsvector, but how do
> >> you get that to work with queries?  I've been under the impression the
> >> expressions need to match (in the normal case, be the same function
> >> with the same arguments) in order to use the index.
> > 
> > Yes, so you create a function called complex_ts and create the index:
> > 
> >     CREATE INDEX ii on x USING GIT(complex_ts(col1, col2))
> 
> GIN?

Yes, sorry, GIN.

--  Bruce Momjian  <bruce@momjian.us>          http://momjian.us EnterpriseDB
http://www.enterprisedb.com
 + If your life is a hard drive, Christ can be your backup. +


pgsql-hackers by date:

Previous
From: "Trevor Talbot"
Date:
Subject: Re: text search vs schemas
Next
From: Bruce Momjian
Date:
Subject: Re: tsearch2 in PostgreSQL 8.3?