Thread

  1. tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-14T19:00:04Z

    A lot of work has been done to try to get /contrib/tsearch2 into the
    core backend for 8.3, but we have hit a roadblock in how to handle
    multiple text search configurations.  (FYI, the documentation is at
    http://momjian.us/expire/textsearch/HTML/textsearch.html.)
    
    There are three options for controlling text search configurations:
    
    	1) have a GUC variable which specifies the default configuration
    	2) require the configuration to be always specified
    	3) use the type system to automatically use the right configuration
    
    The problem with #1 is that is it error-prone (easy to mismatch
    configurations).  One idea was to have the GUC be super-user-only but
    then restoring a dump as non-super-user is a problem.
    
    The problem with #2 is that it makes implicit and explicit casting
    impossible (there is no place to specify the configuration).
    
    #3 requires more code and is probably not something we want to do at
    this stage in 8.3 development.  It requires passing typmod values
    between functions and operators (not something we have done easily in
    the past).
    
    Given this, should we decide to not include full text search in 8.3?
    
    -- 
      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. +
    
    
  2. Re: tsearch2 in PostgreSQL 8.3?

    Alvaro Herrera <alvherre@commandprompt.com> — 2007-08-14T19:15:44Z

    Bruce Momjian wrote:
    > A lot of work has been done to try to get /contrib/tsearch2 into the
    > core backend for 8.3, but we have hit a roadblock in how to handle
    > multiple text search configurations.  (FYI, the documentation is at
    > http://momjian.us/expire/textsearch/HTML/textsearch.html.)
    > 
    > There are three options for controlling text search configurations:
    > 
    > 	1) have a GUC variable which specifies the default configuration
    > 	2) require the configuration to be always specified
    > 	3) use the type system to automatically use the right configuration
    > 
    > The problem with #1 is that is it error-prone (easy to mismatch
    > configurations).  One idea was to have the GUC be super-user-only but
    > then restoring a dump as non-super-user is a problem.
    
    What is the worst consequence of mismatching configuration?  Does it
    cause a system crash?  A backend hang?  A corrupted index?  Lost data?
    Or does it, as I assume, just fail to return the exact result set that
    would be returned if the correct configuration was supplied?
    
    If the answer is the latter, I think this is not so huge a problem that
    FULL TEXT should be rejected for 8.3 on these grounds.  We just tell
    people to use the correct query and be done with it.
    
    -- 
    Alvaro Herrera                 http://www.amazon.com/gp/registry/CTMLCN8V17R4
    "La vida es para el que se aventura"
    
    
  3. Re: tsearch2 in PostgreSQL 8.3?

    Heikki Linnakangas <heikki@enterprisedb.com> — 2007-08-14T19:17:36Z

    Bruce Momjian wrote:
    > #3 requires more code and is probably not something we want to do at
    > this stage in 8.3 development.  It requires passing typmod values
    > between functions and operators (not something we have done easily in
    > the past).
    
    It does? I was thinking of implicitly creating a new type, with no
    typmod, when you create a new configuration. Similar to enums, I think.
    
    -- 
      Heikki Linnakangas
      EnterpriseDB   http://www.enterprisedb.com
    
    
  4. Re: tsearch2 in PostgreSQL 8.3?

    Heikki Linnakangas <heikki@enterprisedb.com> — 2007-08-14T19:26:17Z

    Alvaro Herrera wrote:
    > What is the worst consequence of mismatching configuration?  Does it
    > cause a system crash?  A backend hang?  A corrupted index?  Lost data?
    > Or does it, as I assume, just fail to return the exact result set that
    > would be returned if the correct configuration was supplied?
    
    Your assumption is correct.
    
    You can mismatch configurations not just by querying in a wrong
    configuration, but also by accidentally storing tsvectors generated with
    different configurations in the same column (with no additional column
    like Mike Rylander had to tell them apart), but it's still going to look
     OK from PostgreSQL's point of view.
    
    -- 
      Heikki Linnakangas
      EnterpriseDB   http://www.enterprisedb.com
    
    
  5. Re: tsearch2 in PostgreSQL 8.3?

    ktm@rice.edu <ktm@rice.edu> — 2007-08-14T20:04:37Z

    On Tue, Aug 14, 2007 at 03:15:44PM -0400, Alvaro Herrera wrote:
    > Bruce Momjian wrote:
    > > A lot of work has been done to try to get /contrib/tsearch2 into the
    > > core backend for 8.3, but we have hit a roadblock in how to handle
    > > multiple text search configurations.  (FYI, the documentation is at
    > > http://momjian.us/expire/textsearch/HTML/textsearch.html.)
    > > 
    > > There are three options for controlling text search configurations:
    > > 
    > > 	1) have a GUC variable which specifies the default configuration
    > > 	2) require the configuration to be always specified
    > > 	3) use the type system to automatically use the right configuration
    > > 
    > > The problem with #1 is that is it error-prone (easy to mismatch
    > > configurations).  One idea was to have the GUC be super-user-only but
    > > then restoring a dump as non-super-user is a problem.
    > 
    > What is the worst consequence of mismatching configuration?  Does it
    > cause a system crash?  A backend hang?  A corrupted index?  Lost data?
    > Or does it, as I assume, just fail to return the exact result set that
    > would be returned if the correct configuration was supplied?
    > 
    > If the answer is the latter, I think this is not so huge a problem that
    > FULL TEXT should be rejected for 8.3 on these grounds.  We just tell
    > people to use the correct query and be done with it.
    > 
    I think that users of the full-text option would need to read the
    documentation and we could include any needed caveats. This would
    certainly do for the 8.3 release and would give us time to simplify
    the management and use in the 8.4 release. I, for one, have been
    waiting a long time for it to be integrated into the database. 
    
    Ken
    
    
  6. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-14T20:29:26Z

    Heikki Linnakangas wrote:
    > Bruce Momjian wrote:
    > > #3 requires more code and is probably not something we want to do at
    > > this stage in 8.3 development.  It requires passing typmod values
    > > between functions and operators (not something we have done easily in
    > > the past).
    > 
    > It does? I was thinking of implicitly creating a new type, with no
    > typmod, when you create a new configuration. Similar to enums, I think.
    
    So each new configuration is a new data type?  How do the tsearch
    functions handle these new data types?  I also question if this can be
    completed soon.  I have seen no specification yet, let alone someone
    coding it.
    
    Basically, the default GUC doesn't work because of:
    
    	error prone
    	if super-user only, non-super-user doesn't work on restore
    	if non-super-user, can cause mismatch (perhaps this is the best
    	  option), and restore still a problem (no storage of config in
    	  indexes or tables)
    
    No one seems to like the always-specify the configuration (loses cast
    ability).  And I don't see the code for new type appearing anytime soon.
    
    Bottom line --- we better figure out something quick or it isn't going
    to be in 8.3, and at this point, I am starting to doubt a solution will
    magically appear.
    
    -- 
      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. +
    
    
  7. Re: tsearch2 in PostgreSQL 8.3?

    Alvaro Herrera <alvherre@commandprompt.com> — 2007-08-14T20:38:06Z

    Bruce Momjian wrote:
    
    > Basically, the default GUC doesn't work because of:
    > 
    > 	error prone
    > 	if super-user only, non-super-user doesn't work on restore
    > 	if non-super-user, can cause mismatch (perhaps this is the best
    > 	  option), and restore still a problem (no storage of config in
    > 	  indexes or tables)
    
    I haven't really seen anyone else arguing about this.  I wonder whether
    you are being overly zealous about it.
    
    -- 
    Alvaro Herrera                         http://www.flickr.com/photos/alvherre/
    "Doing what he did amounts to sticking his fingers under the hood of the
    implementation; if he gets his fingers burnt, it's his problem."  (Tom Lane)
    
    
  8. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-14T20:41:05Z

    Alvaro Herrera wrote:
    > Bruce Momjian wrote:
    > 
    > > Basically, the default GUC doesn't work because of:
    > > 
    > > 	error prone
    > > 	if super-user only, non-super-user doesn't work on restore
    > > 	if non-super-user, can cause mismatch (perhaps this is the best
    > > 	  option), and restore still a problem (no storage of config in
    > > 	  indexes or tables)
    > 
    > I haven't really seen anyone else arguing about this.  I wonder whether
    > you are being overly zealous about it.
    
    Uh, OK, but no one has told me how a database restore without a
    configuration name would work, so I am all ears.
    
    	CREATE INDEX ii on x(to_tsvector(col))
    
    There is nothing that says what configuration that index should use
    except the default setting, and if that is different in the restore
    database, you have problems.  Same for a trigger that calls to_tsvector
    and is restored into a different database.
    
    -- 
      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. +
    
    
  9. Re: tsearch2 in PostgreSQL 8.3?

    Mike Rylander <mrylander@gmail.com> — 2007-08-14T20:47:13Z

    On 8/14/07, Alvaro Herrera <alvherre@commandprompt.com> wrote:
    > Bruce Momjian wrote:
    >
    > > Basically, the default GUC doesn't work because of:
    > >
    > >       error prone
    > >       if super-user only, non-super-user doesn't work on restore
    > >       if non-super-user, can cause mismatch (perhaps this is the best
    > >         option), and restore still a problem (no storage of config in
    > >         indexes or tables)
    >
    > I haven't really seen anyone else arguing about this.  I wonder whether
    > you are being overly zealous about it.
    
    I hate to just pile on Bruce, but as a production user I tend to
    agree... let me shoot myself in the foot. :)
    
    --miker
    
    
  10. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-14T21:41:54Z

    Bruce Momjian <bruce@momjian.us> writes:
    > Alvaro Herrera wrote:
    >> I haven't really seen anyone else arguing about this.  I wonder whether
    >> you are being overly zealous about it.
    
    > Uh, OK, but no one has told me how a database restore without a
    > configuration name would work, so I am all ears.
    
    It's the dump/restore problem that really is the kicker here.  I don't
    mind so much a GUC that only controls the interpretation of queries, but
    if it determines how an index or a tsvector column gets rebuilt, we've
    got problems.
    
    I've just finished re-reading the prior thread, and here are what seem
    to me to be the salient points:
    
    * Oleg, Teodor, and all of the old-line users of tsearch2 are
    comfortable with setting up a trigger to maintain a materialized
    tsvector column for a table.  They argue that recomputing the tsvector
    (possibly more than once) during a query is more expensive than fetching
    it from disk.  My suspicion is that the latter argument gets weaker
    every year --- CPUs are getting faster lots faster than disks are.
    
    * Bruce (and I ... not sure about anyone else) want to support usage of
    text search via a functional index.  This is argued to be easier to set
    up (no fooling with triggers) and possibly faster depending on CPU vs
    I/O speeds.  I don't think there is any desire here to eliminate the
    trigger approach, just to provide an alternative.
    
    * For *either* the trigger or functional-index approach, I think it is
    unacceptable to rely on a GUC variable to determine how the tsvector is
    derived from the raw-document fields for storage or indexing.  It's just
    too error-prone, particularly when you consider dump-and-reload cases.
    What I think we should say is that the ts parsing configuration name
    can be either hardwired or taken from another field of the table.
    In the trigger case this would mean providing a couple of standard
    triggers, one taking the config name as a trigger parameter, and the
    other accepting a trigger parameter that's the name of the config name
    column.  In the index case this would mean that the index expression
    has to be either to_tsvector('constant', ...) or to_tsvector(field, ...).
    Note that all four cases boil down to saying that stored or indexed
    tsvectors have to be derived from the two-parameter form of to_tsvector.
    
    * For queries, there is not anything very wrong with having a default
    configuration, but the trick is how to get the planner to match that up
    with an index that's written with the two-parameter form of to_tsvector.
    One hackish possibility is to define the single-parameter form of
    to_tsvector like this:
    
      create function to_tsvector(text) returns tsvector as $$
        select to_tsvector(get_default_text_search_config(), $1)
      $$ language sql strict stable;
    
    where get_default_text_search_config() is essentially just
    current_setting('default_text_search_config') except it is
    misleadingly marked immutable.  Then, a query with
    
    	WHERE to_tsvector(document_col) @@ tsquery(...)
    
    will have the SQL function inlined, and the
    get_default_text_search_config() call const-folded, and suddenly
    it looks like
    
    	WHERE to_tsvector('english', document_col) @@ tsquery(...)
    
    and can be matched to a functional index that's declared using the
    explicit 'english' configuration name.  This is pretty grotty though
    ... can anyone think of a better way?  (The main objection I can see
    to it is that someone could shoot himself in the foot by using this
    function instead of two-parameter to_tsvector in a custom trigger
    function.  But hopefully, anyone writing a custom trigger function
    will have read the manual's warning not to do that.  Note that I
    suggest marking the function stable so that it can't be misused
    that way in a functional index.  Another possible objection is that
    get_default_text_search_config() is a foot-gun all by itself, since
    it could be used in a functional index.  Aside from not documenting
    it I'm not sure there's much to be done about that.)
    
    * I'm not enamored of Heikki's idea about a datatype-based solution,
    because I don't think that it will allow columns containing tsvectors
    derived with different configurations.  It's perfectly clear that
    advanced users want to be able to do that, and it's also clear that
    as long as the config name is coming from a stored column (or can be
    reconstructed somehow from the stored data) that it's perfectly
    well-defined.
    
    Since I don't think that a datatype solution is the way to go,
    I don't feel that we are as far away from an agreement as Bruce
    is worried about.
    
    			regards, tom lane
    
    
  11. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-14T21:43:13Z

    Mike Rylander wrote:
    > On 8/14/07, Alvaro Herrera <alvherre@commandprompt.com> wrote:
    > > Bruce Momjian wrote:
    > >
    > > > Basically, the default GUC doesn't work because of:
    > > >
    > > >       error prone
    > > >       if super-user only, non-super-user doesn't work on restore
    > > >       if non-super-user, can cause mismatch (perhaps this is the best
    > > >         option), and restore still a problem (no storage of config in
    > > >         indexes or tables)
    > >
    > > I haven't really seen anyone else arguing about this.  I wonder whether
    > > you are being overly zealous about it.
    > 
    > I hate to just pile on Bruce, but as a production user I tend to
    > agree... let me shoot myself in the foot. :)
    > 
    > --miker
    
    Sure, we can document hazards, but the larger problem is related to the
    fact that the default controls what gets stored in the database.  This is
    a similar problem to when we had an autocommit GUC which caused
    problems.
    
    Technically, this is like how the server encoding affects what is stored
    in the database.  If we allowed users to change the server encoding in a
    database that already had data in it, there would be no way to identify
    which data was using the old encoding and which was using the new one. 
    Now, the application might be able to identify them just fine, but a
    database restore would be unable to recreate the data the same way.
    
    If we want to keep the default GUC we would have to allow non-super-user
    changes so we can use it in pg_dump for restore, but even then if the
    default is different there is going to be a mix of old/new after the
    restore because table changes after the restore is going to use the new
    default config.
    
    Perhaps the best we could do is to tell people who change the default GUC
    that they are on their own in restoring the database, or they have to be
    very carful like with triggers to assign the configuration properly.  I
    can imagine how complex that part of the documentation will be, but it
    is doable.
    
    The other point is that we should have a good idea of the API because
    if it gets into 8.3 it will be harder to change.
    
    -- 
      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. +
    
    
  12. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-14T22:08:43Z

    Bruce Momjian <bruce@momjian.us> writes:
    > The other point is that we should have a good idea of the API because
    > if it gets into 8.3 it will be harder to change.
    
    Yeah, once it's in core we have a pretty strong backwards-compatibility
    restriction to deal with.  Someone upthread claimed "we can always
    simplify it later" but that's exactly backward --- we can add features
    later, but we can't subtract.
    
    Maybe we should be looking to implement just the minimum set of features
    for 8.3 and leave some of the more controversial stuff for 8.4.  I hate
    to admit it, but if we take that point of view then triggers are in
    and functional-index support is out.  We have to support the trigger
    approach because it's what is in tsearch2 now, and the existing users
    will expect to continue to have that option.
    
    However, allowing the standard triggers to pay attention to a
    configuration GUC variable is simply broken; that bit has to go away.
    
    			regards, tom lane
    
    
  13. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-15T03:05:34Z

    Tom Lane wrote:
    > * For queries, there is not anything very wrong with having a default
    > configuration, but the trick is how to get the planner to match that up
    > with an index that's written with the two-parameter form of to_tsvector.
    > One hackish possibility is to define the single-parameter form of
    > to_tsvector like this:
    > 
    >   create function to_tsvector(text) returns tsvector as $$
    >     select to_tsvector(get_default_text_search_config(), $1)
    >   $$ language sql strict stable;
    > 
    > where get_default_text_search_config() is essentially just
    > current_setting('default_text_search_config') except it is
    > misleadingly marked immutable.  Then, a query with
    > 
    > 	WHERE to_tsvector(document_col) @@ tsquery(...)
    > 
    > will have the SQL function inlined, and the
    > get_default_text_search_config() call const-folded, and suddenly
    > it looks like
    > 
    > 	WHERE to_tsvector('english', document_col) @@ tsquery(...)
    
    This is an interesting idea that would allow queries without a
    configuration to match an expression index.  The only trick is to train
    users not to use such tricks on triggers or expression index, but only
    in queries.  The idea of 'stable' helps to fix that for expression
    indexes, but not for trigger use, I assume.
    
    > * I'm not enamored of Heikki's idea about a datatype-based solution,
    > because I don't think that it will allow columns containing tsvectors
    > derived with different configurations.  It's perfectly clear that
    > advanced users want to be able to do that, and it's also clear that
    > as long as the config name is coming from a stored column (or can be
    > reconstructed somehow from the stored data) that it's perfectly
    > well-defined.
    > 
    > Since I don't think that a datatype solution is the way to go,
    > I don't feel that we are as far away from an agreement as Bruce
    > is worried about.
    
    Well, from where I sit, there is one person saying give me the foot gun,
    and Heikki saying he wants a bullet-proof type system, and you and I are
    in the middle, so the big problem is I don't see a concensus forming,
    and we have been discussing this for a while.
    
    -- 
      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. +
    
    
  14. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-15T03:13:23Z

    Bruce Momjian <bruce@momjian.us> writes:
    > Tom Lane wrote:
    >> Since I don't think that a datatype solution is the way to go,
    >> I don't feel that we are as far away from an agreement as Bruce
    >> is worried about.
    
    > Well, from where I sit, there is one person saying give me the foot gun,
    > and Heikki saying he wants a bullet-proof type system, and you and I are
    > in the middle, so the big problem is I don't see a concensus forming,
    > and we have been discussing this for a while.
    
    The people who actually use tsearch2 seem to all have the same opinion ...
    so I think we can't go too far in the bullet-proofing direction.
    
    But I would like a design that is bulletproof in dump/reload scenarios,
    and I think it's fair to question that aspect of the tsearch2 design
    because we've seen many reports of people having trouble updating
    databases that use tsearch2.
    
    			regards, tom lane
    
    
  15. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-15T03:13:34Z

    Tom Lane wrote:
    > Bruce Momjian <bruce@momjian.us> writes:
    > > The other point is that we should have a good idea of the API because
    > > if it gets into 8.3 it will be harder to change.
    > 
    > Yeah, once it's in core we have a pretty strong backwards-compatibility
    > restriction to deal with.  Someone upthread claimed "we can always
    > simplify it later" but that's exactly backward --- we can add features
    > later, but we can't subtract.
    > 
    > Maybe we should be looking to implement just the minimum set of features
    > for 8.3 and leave some of the more controversial stuff for 8.4.  I hate
    > to admit it, but if we take that point of view then triggers are in
    > and functional-index support is out.  We have to support the trigger
    > approach because it's what is in tsearch2 now, and the existing users
    > will expect to continue to have that option.
    
    Triggers and expression indexes were both in the documentation Oleg
    supplied, so I am sure both are being used.  I bet some users don't even
    know they are using expression indexes because creating a GIN index on a
    column automatically casts to tsvector.  (But GIST does not.)  I had to
    ask Oleg to find out this out.
    
    > However, allowing the standard triggers to pay attention to a
    > configuration GUC variable is simply broken; that bit has to go away.
    
    The only trigger example supplied by Oleg and Teodor is
    tsvector_update_trigger(), and that doesn't take a configuration name,
    meaning it uses the default GUC configuration.
    
    Uh, how are we going to prevent the auto-casting to tsvector from using
    the default GUC config, e.g. CREATE INDEX i ON x USING GIN(col)?
    
    This is where I started to see the need for education and error-prone
    nature of the default GUC just wasn't worth having it, though I know
    others disagree.
    
    -- 
      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. +
    
    
  16. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-15T03:14:35Z

    Tom Lane wrote:
    > Bruce Momjian <bruce@momjian.us> writes:
    > > Tom Lane wrote:
    > >> Since I don't think that a datatype solution is the way to go,
    > >> I don't feel that we are as far away from an agreement as Bruce
    > >> is worried about.
    > 
    > > Well, from where I sit, there is one person saying give me the foot gun,
    > > and Heikki saying he wants a bullet-proof type system, and you and I are
    > > in the middle, so the big problem is I don't see a concensus forming,
    > > and we have been discussing this for a while.
    > 
    > The people who actually use tsearch2 seem to all have the same opinion ...
    > so I think we can't go too far in the bullet-proofing direction.
    > 
    > But I would like a design that is bulletproof in dump/reload scenarios,
    > and I think it's fair to question that aspect of the tsearch2 design
    > because we've seen many reports of people having trouble updating
    > databases that use tsearch2.
    
    Yea, look at the trouble we are having trying to underestand it all.
    
    -- 
      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. +
    
    
  17. Re: tsearch2 in PostgreSQL 8.3?

    Andrew Dunstan <andrew@dunslane.net> — 2007-08-15T03:38:28Z

    
    Bruce Momjian wrote:
    >>
    >> The people who actually use tsearch2 seem to all have the same opinion ...
    >> so I think we can't go too far in the bullet-proofing direction.
    >>     
    
    Yeah.
    >> But I would like a design that is bulletproof in dump/reload scenarios,
    >> and I think it's fair to question that aspect of the tsearch2 design
    >> because we've seen many reports of people having trouble updating
    >> databases that use tsearch2.
    >>     
    >
    > Yea, look at the trouble we are having trying to underestand it all.
    
    True. But I wasn't too concerned about the forecast difficulties with 
    data only dumps. Those fail in plenty of circumstances. It is important 
    that there is *some* reliable dump/restore/upgrade path, though.
    
    cheers
    
    andrew
    
    
  18. Re: tsearch2 in PostgreSQL 8.3?

    Magnus Hagander <magnus@hagander.net> — 2007-08-15T06:10:47Z

    Tom Lane wrote:
    > Bruce Momjian <bruce@momjian.us> writes:
    >> Tom Lane wrote:
    >>> Since I don't think that a datatype solution is the way to go,
    >>> I don't feel that we are as far away from an agreement as Bruce
    >>> is worried about.
    > 
    >> Well, from where I sit, there is one person saying give me the foot gun,
    >> and Heikki saying he wants a bullet-proof type system, and you and I are
    >> in the middle, so the big problem is I don't see a concensus forming,
    >> and we have been discussing this for a while.
    > 
    > The people who actually use tsearch2 seem to all have the same opinion ...
    > so I think we can't go too far in the bullet-proofing direction.
    > 
    > But I would like a design that is bulletproof in dump/reload scenarios,
    > and I think it's fair to question that aspect of the tsearch2 design
    > because we've seen many reports of people having trouble updating
    > databases that use tsearch2.
    
    dump/reload is *the* biggest problem I've had with tsearch2 so far. But
    it hasn't been with the actual data - it's been the functions, and only
    when migrating between versions. But solving dump/reload reliably is one
    of the main things I'm hoping for in 8.3 ;-)
    
    As for a nother use-pointer, I use different configurations in the same
    database - but only one per table. I explicitly use the to_tsvector that
    specifies a configuration always - to avoid surprising myself.
    
    I don't use the functional index part, but for new users I can see how
    that's certainly a *lot* easier. Requiring the specification of the
    configuration explicitly when creating this index I don't see as a big
    problem at all - compared to the work needed to set up triggers. But
    it's nice not to have to do it when querying. But wouldn't that be
    solved by having to_tsvector() require the configuration, but
    to_tsquery() and plainto_tsquery() not require it?
    
    //Magnus
    
    
  19. Re: tsearch2 in PostgreSQL 8.3?

    Oleg Bartunov <oleg@sai.msu.su> — 2007-08-15T06:47:05Z

    On Wed, 15 Aug 2007, Magnus Hagander wrote:
    
    > Tom Lane wrote:
    >> Bruce Momjian <bruce@momjian.us> writes:
    >>> Tom Lane wrote:
    >>>> Since I don't think that a datatype solution is the way to go,
    >>>> I don't feel that we are as far away from an agreement as Bruce
    >>>> is worried about.
    >>
    >>> Well, from where I sit, there is one person saying give me the foot gun,
    >>> and Heikki saying he wants a bullet-proof type system, and you and I are
    >>> in the middle, so the big problem is I don't see a concensus forming,
    >>> and we have been discussing this for a while.
    >>
    >> The people who actually use tsearch2 seem to all have the same opinion ...
    >> so I think we can't go too far in the bullet-proofing direction.
    >>
    >> But I would like a design that is bulletproof in dump/reload scenarios,
    >> and I think it's fair to question that aspect of the tsearch2 design
    >> because we've seen many reports of people having trouble updating
    >> databases that use tsearch2.
    >
    > dump/reload is *the* biggest problem I've had with tsearch2 so far. But
    > it hasn't been with the actual data - it's been the functions, and only
    > when migrating between versions. But solving dump/reload reliably is one
    > of the main things I'm hoping for in 8.3 ;-)
    
    The dump/reload problem should be gone once tsearch2 became a part of core.
    the problem is an  inability to say what is a correct configuration in case 
    of expressional index when restoring. In any other case there are many
    use cases when tsvector could be intentionally obtained using different
    configurations.
    
    >
    > As for a nother use-pointer, I use different configurations in the same
    > database - but only one per table. I explicitly use the to_tsvector that
    > specifies a configuration always - to avoid surprising myself.
    >
    > I don't use the functional index part, but for new users I can see how
    > that's certainly a *lot* easier. Requiring the specification of the
    > configuration explicitly when creating this index I don't see as a big
    > problem at all - compared to the work needed to set up triggers. But
    > it's nice not to have to do it when querying. But wouldn't that be
    > solved by having to_tsvector() require the configuration, but
    > to_tsquery() and plainto_tsquery() not require it?
    
    or better to introduce novice-level interface with configuration name
    required and insist on using it with expressional index (don't know
    if there is a machinery to do so).
    
    
     	Regards,
     		Oleg
    _____________________________________________________________
    Oleg Bartunov, Research Scientist, Head of AstroNet (www.astronet.ru),
    Sternberg Astronomical Institute, Moscow University, Russia
    Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
    phone: +007(495)939-16-83, +007(495)939-23-83
    
    
  20. Re: tsearch2 in PostgreSQL 8.3?

    Simon Riggs <simon@2ndquadrant.com> — 2007-08-15T11:13:57Z

    On Tue, 2007-08-14 at 17:41 -0400, Tom Lane wrote:
    
    > I've just finished re-reading the prior thread, and here are what seem
    > to me to be the salient points:
    > 
    > * Oleg, Teodor, and all of the old-line users of tsearch2 are
    > comfortable with setting up a trigger to maintain a materialized
    > tsvector column for a table.  They argue that recomputing the tsvector
    > (possibly more than once) during a query is more expensive than fetching
    > it from disk.  My suspicion is that the latter argument gets weaker
    > every year --- CPUs are getting faster lots faster than disks are.
    > 
    > * Bruce (and I ... not sure about anyone else) want to support usage of
    > text search via a functional index.  This is argued to be easier to set
    > up (no fooling with triggers) and possibly faster depending on CPU vs
    > I/O speeds.  I don't think there is any desire here to eliminate the
    > trigger approach, just to provide an alternative.
    
    ISTM that the functional index would be considerably smaller than the
    additional column approach, since tsvectors can be quite long. That
    seems like a very desirable thing with larger textbases. However,
    without an additional column certain queries would not be possible, such
    as IndexScans on a non-text search index with an additional filter on
    text search. So each way would be desirable in different situations.
    
    Would it be wrong to allow both approaches? If there is strong
    disagreement then it usually means both people are right.
    
    -- 
      Simon Riggs
      EnterpriseDB  http://www.enterprisedb.com
    
    
    
  21. Re: tsearch2 in PostgreSQL 8.3?

    Simon Riggs <simon@2ndquadrant.com> — 2007-08-15T11:14:24Z

    On Wed, 2007-08-15 at 08:10 +0200, Magnus Hagander wrote:
    > Tom Lane wrote:
    > > Bruce Momjian <bruce@momjian.us> writes:
    > >> Tom Lane wrote:
    > >>> Since I don't think that a datatype solution is the way to go,
    > >>> I don't feel that we are as far away from an agreement as Bruce
    > >>> is worried about.
    > > 
    > >> Well, from where I sit, there is one person saying give me the foot gun,
    > >> and Heikki saying he wants a bullet-proof type system, and you and I are
    > >> in the middle, so the big problem is I don't see a concensus forming,
    > >> and we have been discussing this for a while.
    > > 
    > > The people who actually use tsearch2 seem to all have the same opinion ...
    > > so I think we can't go too far in the bullet-proofing direction.
    > > 
    > > But I would like a design that is bulletproof in dump/reload scenarios,
    > > and I think it's fair to question that aspect of the tsearch2 design
    > > because we've seen many reports of people having trouble updating
    > > databases that use tsearch2.
    > 
    > dump/reload is *the* biggest problem I've had with tsearch2 so far. But
    > it hasn't been with the actual data - it's been the functions, and only
    > when migrating between versions. But solving dump/reload reliably is one
    > of the main things I'm hoping for in 8.3 ;-)
    
    I can see the problem, but I'm sure there are more solutions than have
    been listed so far.
    
    If dump/restore is a problem we can:
    
    1. force pg_dump to output a SET command for the GUC, so it is correctly
    set at restore time. That seems like a straightforward addition to
    pg_dump. Maybe this can be done in a generalised manner to support other
    dump/restore configuration difficulties that might occur in the future.
    
    2. put the desired value in a table and make sure the text_search_config
    table is dumped ahead of other objects. When we restore we build the
    index based on the config option set in the table, so it all just
    works. 
    
    3... probably other options too. 
    
    Maybe we should consider that the user may be dumping and reloading
    *because* they want the configuration to change. Just a thought.
    
    -- 
      Simon Riggs
      EnterpriseDB  http://www.enterprisedb.com
    
    
    
  22. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-15T14:23:00Z

    Magnus Hagander wrote:
    > > But I would like a design that is bulletproof in dump/reload scenarios,
    > > and I think it's fair to question that aspect of the tsearch2 design
    > > because we've seen many reports of people having trouble updating
    > > databases that use tsearch2.
    > 
    > dump/reload is *the* biggest problem I've had with tsearch2 so far. But
    > it hasn't been with the actual data - it's been the functions, and only
    > when migrating between versions. But solving dump/reload reliably is one
    > of the main things I'm hoping for in 8.3 ;-)
    > 
    > As for a nother use-pointer, I use different configurations in the same
    > database - but only one per table. I explicitly use the to_tsvector that
    > specifies a configuration always - to avoid surprising myself.
    > 
    > I don't use the functional index part, but for new users I can see how
    > that's certainly a *lot* easier. Requiring the specification of the
    > configuration explicitly when creating this index I don't see as a big
    > problem at all - compared to the work needed to set up triggers. But
    > it's nice not to have to do it when querying. But wouldn't that be
    > solved by having to_tsvector() require the configuration, but
    > to_tsquery() and plainto_tsquery() not require it?
    
    Yea, I have thought about splitting up the behavior so tsvector always
    needs the configuration but tsquery does not.  However, for a query, you
    are probably still creating a tsvector so it didn't see to help much in
    clarity.
    
    -- 
      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. +
    
    
  23. Re: tsearch2 in PostgreSQL 8.3?

    Magnus Hagander <magnus@hagander.net> — 2007-08-15T14:39:55Z

    On Wed, Aug 15, 2007 at 10:23:00AM -0400, Bruce Momjian wrote:
    > Magnus Hagander wrote:
    > > > But I would like a design that is bulletproof in dump/reload scenarios,
    > > > and I think it's fair to question that aspect of the tsearch2 design
    > > > because we've seen many reports of people having trouble updating
    > > > databases that use tsearch2.
    > > 
    > > dump/reload is *the* biggest problem I've had with tsearch2 so far. But
    > > it hasn't been with the actual data - it's been the functions, and only
    > > when migrating between versions. But solving dump/reload reliably is one
    > > of the main things I'm hoping for in 8.3 ;-)
    > > 
    > > As for a nother use-pointer, I use different configurations in the same
    > > database - but only one per table. I explicitly use the to_tsvector that
    > > specifies a configuration always - to avoid surprising myself.
    > > 
    > > I don't use the functional index part, but for new users I can see how
    > > that's certainly a *lot* easier. Requiring the specification of the
    > > configuration explicitly when creating this index I don't see as a big
    > > problem at all - compared to the work needed to set up triggers. But
    > > it's nice not to have to do it when querying. But wouldn't that be
    > > solved by having to_tsvector() require the configuration, but
    > > to_tsquery() and plainto_tsquery() not require it?
    > 
    > Yea, I have thought about splitting up the behavior so tsvector always
    > needs the configuration but tsquery does not.  However, for a query, you
    > are probably still creating a tsvector so it didn't see to help much in
    > clarity.
    
    Agh, I got stuck thinking the trigger case aagin - when you don't need to
    create a vector at all.
    
    //Magnus
    
    
  24. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-15T15:14:33Z

    "Simon Riggs" <simon@2ndquadrant.com> writes:
    > ISTM that the functional index would be considerably smaller than the
    > additional column approach, since tsvectors can be quite long. That
    > seems like a very desirable thing with larger textbases. However,
    > without an additional column certain queries would not be possible, such
    > as IndexScans on a non-text search index with an additional filter on
    > text search. So each way would be desirable in different situations.
    
    Huh?  Of course you can do the searching without an additional column;
    you just have to compute the tsvector on-the-fly at each row.  This is
    a straight trade of more CPU cycles for less I/O.
    
    > Would it be wrong to allow both approaches?
    
    Nobody has suggested disallowing the trigger approach (indeed it's hard
    to see how we could).  The argument is mostly about how to make a
    functional index approach work conveniently; and secondarily about
    what's needed to make dump/restore reliably reproduce the current
    database state, whichever approach you choose.
    
    			regards, tom lane
    
    
  25. Re: tsearch2 in PostgreSQL 8.3?

    Ron Mayer <rm_pg@cheapcomplexdevices.com> — 2007-08-15T22:25:07Z

    Magnus Hagander wrote:
    > I don't use the functional index part, but for new users I can see how
    > that's certainly a *lot* easier. 
    
    Can someone with modern hardware test to see if it's
    still quite a bit slower than the extra column.  I had
    tried it too years ago; and found the functional index
    to be quite a bit slower:
    http://archives.postgresql.org/pgsql-general/2005-10/msg00475.php
    but it'd be interesting to see if faster CPUs changed this.
    
    
  26. Re: tsearch2 in PostgreSQL 8.3?

    Michael Paesold <mpaesold@gmx.at> — 2007-08-16T09:14:11Z

    Bruce Momjian wrote:
    > Uh, how are we going to prevent the auto-casting to tsvector from using
    > the default GUC config, e.g. CREATE INDEX i ON x USING GIN(col)?
    > 
    > This is where I started to see the need for education and error-prone
    > nature of the default GUC just wasn't worth having it, though I know
    > others disagree.
    
    It can be removed quite easily. AFAIR, this "feature" was added on 
    suggestion of Tom Lane. It was certainly only added in this 
    tsearch-to-core release cycle, see here:
    
    http://archives.postgresql.org/pgsql-hackers/2007-03/msg01384.php
    
    Teodor Sigaev wrote:
     > 2) added operator class for text and varchar
     >    CREATE INDEX idxname ON tblname USING GIN ( textcolumn );
    
    So just remove the operator class or don't specify it as default 
    operator class for GIN, and the thing is gone. Perhaps there is a better 
    way to do this, though.
    
    [...digging...] The idea was born in the thread starting here (involving 
    Tom Lane, Joshua Drake, and Teodor Sigaev):
    http://archives.postgresql.org/pgsql-hackers/2007-03/msg00912.php
    with the conclusion here:
    http://archives.postgresql.org/pgsql-hackers/2007-03/msg00936.php
    
    Best Regards
    Michael Paesold
    
    
    
  27. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-16T14:09:56Z

    Michael Paesold <mpaesold@gmx.at> writes:
    > Teodor Sigaev wrote:
    >>> 2) added operator class for text and varchar
    >>> CREATE INDEX idxname ON tblname USING GIN ( textcolumn );
    
    > So just remove the operator class or don't specify it as default 
    > operator class for GIN, and the thing is gone. Perhaps there is a better 
    > way to do this, though.
    
    > [...digging...] The idea was born in the thread starting here (involving 
    > Tom Lane, Joshua Drake, and Teodor Sigaev):
    > http://archives.postgresql.org/pgsql-hackers/2007-03/msg00912.php
    > with the conclusion here:
    > http://archives.postgresql.org/pgsql-hackers/2007-03/msg00936.php
    
    Yeah, unfortunately we overlooked the implications of the conversion to
    tsvector being environment-dependent.  Those opclasses will have to go
    away again.  AFAICS the only safe way to build an index directly on a
    text column is
    
    CREATE INDEX idxname ON tblname USING gin (to_tsvector('config', textcolumn));
    
    ie, you hardwire the configuration name directly into the index
    definition.  Similarly, if you're using a trigger to build a
    materialized tsvector column, you need to hardwire the config
    name into the trigger definition.
    
    An alternative in both cases is to take the config name from
    another field of the table row.  This is what you'd need to do
    for the advanced cases where you use different configs for
    different entries in the same table.
    
    We can still have a GUC default_text_search_config, but we have
    to design the system around the assumption that that should only
    be referenced during *queries*, not during updates.  That's the
    only safe way to let it be changeable.
    
    			regards, tom lane
    
    
  28. Re: tsearch2 in PostgreSQL 8.3?

    Gregory Stark <stark@enterprisedb.com> — 2007-08-16T16:10:54Z

    "Tom Lane" <tgl@sss.pgh.pa.us> writes:
    
    > Yeah, unfortunately we overlooked the implications of the conversion to
    > tsvector being environment-dependent.  Those opclasses will have to go
    > away again.  AFAICS the only safe way to build an index directly on a
    > text column is
    >
    > CREATE INDEX idxname ON tblname USING gin (to_tsvector('config', textcolumn));
    
    Is there a null configuration which could be the default for the casts? So the
    syntax would still work and would generate an index which worked well but has
    no stop words, no stemming, etc?
    
    -- 
      Gregory Stark
      EnterpriseDB          http://www.enterprisedb.com
    
    
  29. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-16T16:33:03Z

    Gregory Stark <stark@enterprisedb.com> writes:
    > Is there a null configuration which could be the default for the casts?
    
    If we did that then there would be no point in having a GUC variable,
    because it wouldn't control anything.
    
    While that is certainly an alternative solution, I think it's riskier
    than having the GUC variable and just preventing (or at least
    discouraging) people from relying on it in their index definitions.
    The problem is that people will resort to "ALTER CONFIGURATION default"
    to tune their setups, and anytime you make a nontrivial change that way,
    you run the risk of breaking your existing indexes.
    
    			regards, tom lane
    
    
  30. Re: tsearch2 in PostgreSQL 8.3?

    Josh Berkus <josh@agliodbs.com> — 2007-08-16T18:10:27Z

    All,
    
    First off, I'll assert that backup/restore is a serious issue and while the 
    folks who want Tsearch in core now are dismissing it, we'll be fielding the 
    complaints later.  Any solution which involves setting a GUC at restore time 
    *which could vary per table or even column* isn't acceptable.  We used to do 
    the \SET thing for table ownership with backup/restore, and you *know* how 
    many restore failures that caused.
    
    Basically, restore happens at two times: (1) when the server fails and you 
    need to recover, and (2) when you're upgrading, already a painful process.  
    Glitches which occur at these times cause panic, angry user e-mails and 
    people switching away from PostgreSQL.  It's just not acceptable for us to 
    put new potential booby-traps in the way of restore.
    
    Second, as attractive as the idea is, I can't see how a typemod would work.  
    It's not like we have a fixed list of dictionaries; people can create their 
    own.  If we wanted to clean up the syntax I suppose we could have a form of 
    to_tsvector which took a two-column composite value as if it were a 
    multicolumn index:
    
    CREATE INDEX resumes_fti ON resumes USING GIN ( 'default', resume_text )
    
    .... hmmm, that wouldn't work as syntax, would it?  We can't accept a constant 
    as a column in a multi-column index, can we?  Another reason why we can't do 
    mods for 8.3.
    
    This means, from my perspective, that the only reasonable course for 8.3 is to 
    require the 2-parameter form of to_tsvector for indexes.  I'll say that in 
    the applications I've developed with TSearch2 I use the 2-parameter form of 
    to_tsvector and to_tsquery exclusively, as I've found the behavior of TSearch 
    to be highly unreliable if I don't specify.
    
    -- 
    Josh Berkus
    PostgreSQL @ Sun
    San Francisco
    
    
  31. Re: tsearch2 in PostgreSQL 8.3?

    Oleg Bartunov <oleg@sai.msu.su> — 2007-08-16T18:52:19Z

    On Thu, 16 Aug 2007, Josh Berkus wrote:
    
    > All,
    >
    > First off, I'll assert that backup/restore is a serious issue and while the
    > folks who want Tsearch in core now are dismissing it, we'll be fielding the
    > complaints later.  Any solution which involves setting a GUC at restore time
    > *which could vary per table or even column* isn't acceptable.  We used to do
    > the \SET thing for table ownership with backup/restore, and you *know* how
    > many restore failures that caused.
    >
    > Basically, restore happens at two times: (1) when the server fails and you
    > need to recover, and (2) when you're upgrading, already a painful process.
    > Glitches which occur at these times cause panic, angry user e-mails and
    > people switching away from PostgreSQL.  It's just not acceptable for us to
    > put new potential booby-traps in the way of restore.
    >
    > Second, as attractive as the idea is, I can't see how a typemod would work.
    > It's not like we have a fixed list of dictionaries; people can create their
    > own.  If we wanted to clean up the syntax I suppose we could have a form of
    > to_tsvector which took a two-column composite value as if it were a
    > multicolumn index:
    >
    > CREATE INDEX resumes_fti ON resumes USING GIN ( 'default', resume_text )
    
    Josh, all my respects to you, but text searching is not about index at all.
    Text searching is about tsvector and tsquery data type
    
    >
    > .... hmmm, that wouldn't work as syntax, would it?  We can't accept a constant
    > as a column in a multi-column index, can we?  Another reason why we can't do
    > mods for 8.3.
    >
    > This means, from my perspective, that the only reasonable course for 8.3 is to
    > require the 2-parameter form of to_tsvector for indexes.  I'll say that in
    > the applications I've developed with TSearch2 I use the 2-parameter form of
    > to_tsvector and to_tsquery exclusively, as I've found the behavior of TSearch
    > to be highly unreliable if I don't specify.
    >
    >
    
     	Regards,
     		Oleg
    _____________________________________________________________
    Oleg Bartunov, Research Scientist, Head of AstroNet (www.astronet.ru),
    Sternberg Astronomical Institute, Moscow University, Russia
    Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
    phone: +007(495)939-16-83, +007(495)939-23-83
    
    
  32. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-16T19:58:48Z

    Josh Berkus wrote:
    > All,
    > 
    > First off, I'll assert that backup/restore is a serious issue and while the 
    > folks who want Tsearch in core now are dismissing it, we'll be fielding the 
    > complaints later.  Any solution which involves setting a GUC at restore time 
    > *which could vary per table or even column* isn't acceptable.  We used to do 
    > the \SET thing for table ownership with backup/restore, and you *know* how 
    > many restore failures that caused.
    
    Agreed.  Let me summarize where we are now.  I talked to Tom on the
    phone yesterday so we have come up with the following plan:
    
      o  default_text_search_config stays, not super-user-only, not set
         in pg_dump output
      o  tsearch functions that don't have a configuration name will be
         marked so they can't be specified in expression indexes
      o  auto-casts  and "::" to tsearch data types will also not work in 
         expression indexes (we already do this for timestamp without 
         timezone)
      o  GIN on an text column will not promote to tsvector
      o  No rewrite magic for function calls without configuration names in 
         WHERE clauses to use indexes that do specify configurations (risky)
    
    The current documentation explains all this:
    
    	http://momjian.us/expire/textsearch/HTML/textsearch-tables.html
    
    So, we have disabled the ability to create expression indexes that are
    affected by default_text_search_config, and we have documented other
    possible problems.   tsvector_update_trigger() has to be modified to
    take a configuration name (and frankly I am not excited about the
    filter_name capability either, but that is a separate issue).
    
    The only remaining problem I see is that the rest of the documentation
    relies heavily on default_text_search_config when in fact the most
    common usage with tables and indexes can't use it.  tsquery can use the
    default easily, but I am betting that tsvector usually cannot.
    
    -- 
      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. +
    
    
  33. Re: tsearch2 in PostgreSQL 8.3?

    Robert Treat <xzilla@users.sourceforge.net> — 2007-08-17T14:35:50Z

    On Thursday 16 August 2007 15:58, Bruce Momjian wrote:
    > Josh Berkus wrote:
    > > All,
    > >
    > > First off, I'll assert that backup/restore is a serious issue and while
    > > the folks who want Tsearch in core now are dismissing it, we'll be
    > > fielding the complaints later.  Any solution which involves setting a GUC
    > > at restore time *which could vary per table or even column* isn't
    > > acceptable.  We used to do the \SET thing for table ownership with
    > > backup/restore, and you *know* how many restore failures that caused.
    >
    > Agreed.  Let me summarize where we are now.  I talked to Tom on the
    > phone yesterday so we have come up with the following plan:
    >
    >   o  default_text_search_config stays, not super-user-only, not set
    >      in pg_dump output
    >   o  tsearch functions that don't have a configuration name will be
    >      marked so they can't be specified in expression indexes
    >   o  auto-casts  and "::" to tsearch data types will also not work in
    >      expression indexes (we already do this for timestamp without
    >      timezone)
    >   o  GIN on an text column will not promote to tsvector
    >   o  No rewrite magic for function calls without configuration names in
    >      WHERE clauses to use indexes that do specify configurations (risky)
    >
    > The current documentation explains all this:
    >
    > 	http://momjian.us/expire/textsearch/HTML/textsearch-tables.html
    >
    > So, we have disabled the ability to create expression indexes that are
    > affected by default_text_search_config, and we have documented other
    > possible problems.   tsvector_update_trigger() has to be modified to
    > take a configuration name (and frankly I am not excited about the
    > filter_name capability either, but that is a separate issue).
    >
    > The only remaining problem I see is that the rest of the documentation
    > relies heavily on default_text_search_config when in fact the most
    > common usage with tables and indexes can't use it.  tsquery can use the
    > default easily, but I am betting that tsvector usually cannot.
    
    What exactly does default_text_search_config buy us?  I think it is supposed 
    to simplify things, but it sounds like it adds a bunch of corner cases, 
    special siutations, if's and but's (and candies and nuts), that I fear will 
    lead to more confusion for end users, and make development more difficult in 
    the future as we forced to try and live with backwards compatability.  
    
    -- 
    Robert Treat
    Build A Brighter LAMP :: Linux Apache {middleware} PostgreSQL
    
    
  34. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-17T14:58:28Z

    Robert Treat wrote:
    > > The only remaining problem I see is that the rest of the documentation
    > > relies heavily on default_text_search_config when in fact the most
    > > common usage with tables and indexes can't use it.  tsquery can use the
    > > default easily, but I am betting that tsvector usually cannot.
    > 
    > What exactly does default_text_search_config buy us?  I think it is supposed 
    > to simplify things, but it sounds like it adds a bunch of corner cases, 
    > special siutations, if's and but's (and candies and nuts), that I fear will 
    > lead to more confusion for end users, and make development more difficult in 
    > the future as we forced to try and live with backwards compatability.  
    
    Agreed.  That was my conclusion long ago but few agreed so I gave up.
    
    In fairness the goal was for default_text_search_config to make text
    search easier for clusters that use a single configuration.  If you are
    using triggers on a separate tsvector column, only the trigger author
    needs to deal with the configuration name (not queries), but expression
    indexes require the configuration name to always be used for the
    tsvector queries, while the tsquery can use the
    default_text_search_config value.  Anyway, again, it is all
    special-casing this and that, as you said.  And, if you are specifying
    the configuration name for the tsvector but not the tsquery you are more
    likely to have a configuration mismatch.  (Of course you might want
    different configurations for tsvector and tsquery, but that is for
    experts.)
    
    -- 
      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. +
    
    
  35. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-17T15:09:29Z

    Robert Treat <xzilla@users.sourceforge.net> writes:
    > What exactly does default_text_search_config buy us?  I think it is supposed 
    > to simplify things, but it sounds like it adds a bunch of corner cases, 
    
    Well, the main thing we'd lose if we remove it is all trace of upward
    compatibility from the contrib version of tsearch.  People are
    accustomed to using query functions that rely on a default configuration
    setting.  Even though I want to prohibit use of a default in the
    definition of an index or auto-update trigger, I don't see a good reason
    to forbid it in queries.
    
    			regards, tom lane
    
    
  36. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-17T15:24:13Z

    Oleg Bartunov <oleg@sai.msu.su> writes:
    > On Thu, 16 Aug 2007, Josh Berkus wrote:
    >> First off, I'll assert that backup/restore is a serious issue and while the
    >> folks who want Tsearch in core now are dismissing it, we'll be fielding the
    >> complaints later.  Any solution which involves setting a GUC at restore time
    >> *which could vary per table or even column* isn't acceptable.
    
    > Josh, all my respects to you, but text searching is not about index at all.
    > Text searching is about tsvector and tsquery data type
    
    What's your point?  The problem is just as bad for an auto-update
    trigger that computes a stored tsvector column.  If the trigger's
    behavior depends on the GUC settings of the person doing an insert,
    things will soon be a mess --- do you really want the tsvector contents
    to change after an update of an unrelated field?  After awhile you
    won't have any idea what's really in the column, because you won't
    have any good way to know which rows' tsvectors were generated with
    which configurations.
    
    Even if that state of affairs is really what you want, reproducing
    it after a dump/reload will be tricky.  I think that a regular
    schema-and-data dump would work, because pg_dump doesn't install
    triggers until after it's loaded the data ... but a data-only dump
    would *not* work, because the trigger would fire while loading rows.
    
    Basically I see no use for a setup in which the configuration used
    for a particular tsvector value is not fully determined by the table
    definition.  Whether the value is in an index or in the table proper
    is irrelevant to this argument.
    
    			regards, tom lane
    
    
  37. Re: tsearch2 in PostgreSQL 8.3?

    Josh Berkus <josh@agliodbs.com> — 2007-08-17T17:05:11Z

    Folks,
    
    Here's something not to forget in this whole business: the present TSearch2 
    implementation permits you to have a different tsvector configuration for 
    each *row*, not just each column.  That is, applications can be built with 
    "per-cell" configs.
    
    I know of at least one out there: Ubuntu's Rosetta.  I'm sure there are 
    others.
    
    Therefore there are two cases we're trying to solve:
    
    (1) The simple case: someone wants to build a database with text search 
    entirely in one UTF8 language.  All vectors are in that language, and so are 
    all queries.  The user wants the simplest syntax possible.
    
    (2) The Rosetta case: different configs are used for each cell and all 
    searches have to be language-qualified.
    
    In both cases, the databases need to backup and restore cleanly.
    
    From this, I'd first of all say that I don't see the point of a Superuser 
    default_tsvector_search_config.  There are too many failure conditions with 
    the default once you get away from the simplest case, so I don't see how 
    setting it to Superuser-only protects anything.  Might as well make it a 
    userset and then it will be more useful.
    
    Unfortunately, the way I see it the only permanent solution for this is to 
    alter the TSvector structure to include a config OID at the beginning of it.  
    That doesn't sound like it's doable in time for 8.3, though; is there a way 
    we could work around that until 8.4?
    
    And why does this sound exactly like the issues we've had with per-column 
    encodings and the currency type?
    
    -- 
    Josh Berkus
    PostgreSQL @ Sun
    San Francisco
    
    
  38. Re: tsearch2 in PostgreSQL 8.3?

    Joshua D. Drake <jd@commandprompt.com> — 2007-08-17T17:08:35Z

    -----BEGIN PGP SIGNED MESSAGE-----
    Hash: SHA1
    
    Tom Lane wrote:
    > Robert Treat <xzilla@users.sourceforge.net> writes:
    >> What exactly does default_text_search_config buy us?  I think it is supposed 
    >> to simplify things, but it sounds like it adds a bunch of corner cases, 
    > 
    > Well, the main thing we'd lose if we remove it is all trace of upward
    > compatibility from the contrib version of tsearch.
    
    I don't think this is all that big of a deal. In fact I would expect it
    going from contrib to core and never had any illusion to the effect that
    I would be able to just "upgrade" from 8.2 (8.1) Tsearch2 to 8.3.
    
    Sincerely,
    
    Joshua D. Drake
    
    
    
    - --
    
          === The PostgreSQL Company: Command Prompt, Inc. ===
    Sales/Support: +1.503.667.4564   24x7/Emergency: +1.800.492.2240
    PostgreSQL solutions since 1997  http://www.commandprompt.com/
    			UNIQUE NOT NULL
    Donate to the PostgreSQL Project: http://www.postgresql.org/about/donate
    PostgreSQL Replication: http://www.commandprompt.com/products/
    
    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.4.6 (GNU/Linux)
    Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
    
    iD8DBQFGxdYTATb/zqfZUUQRAo6gAJ9JDNGdTvYopOdw0Dp7rknffEZqewCaAkR9
    d4EmQLv6iMpZ/iWR8Ksy1Ek=
    =aEft
    -----END PGP SIGNATURE-----
    
    
  39. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-17T17:10:28Z

    Josh Berkus <josh@agliodbs.com> writes:
    > Here's something not to forget in this whole business: the present TSearch2
    > implementation permits you to have a different tsvector configuration for 
    > each *row*, not just each column.  That is, applications can be built with
    > "per-cell" configs.
    
    Certainly.  That's actually the easiest case to deal with, because you're
    going to put the tsvector config identity into another column of the
    table, and the trigger or index just references it there.  It hasn't
    been part of the discussion because it's not a problem.
    
    			regards, tom lane
    
    
  40. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-17T17:14:21Z

    "Joshua D. Drake" <jd@commandprompt.com> writes:
    > Tom Lane wrote:
    >> Well, the main thing we'd lose if we remove it is all trace of upward
    >> compatibility from the contrib version of tsearch.
    
    > I don't think this is all that big of a deal. In fact I would expect it
    > going from contrib to core and never had any illusion to the effect that
    > I would be able to just "upgrade" from 8.2 (8.1) Tsearch2 to 8.3.
    
    I would hope that what we do with contrib/tsearch2 is rewrite it as a
    compatibility wrapper.  This at least will provide an answer to anyone
    who complains that we renamed the functions.  But if there are
    fundamental things missing in the core implementation, and we try to
    make the wrapper supply them, then we haven't really eliminated the
    problem ... just moved it over a little.
    
    			regards, tom lane
    
    
  41. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-17T17:16:57Z

    Tom Lane wrote:
    > Josh Berkus <josh@agliodbs.com> writes:
    > > Here's something not to forget in this whole business: the present TSearch2
    > > implementation permits you to have a different tsvector configuration for 
    > > each *row*, not just each column.  That is, applications can be built with
    > > "per-cell" configs.
    > 
    > Certainly.  That's actually the easiest case to deal with, because you're
    > going to put the tsvector config identity into another column of the
    > table, and the trigger or index just references it there.  It hasn't
    > been part of the discussion because it's not a problem.
    
    I added an example of that in the documentation (second query):
    
    	http://momjian.us/expire/textsearch/HTML/textsearch-tables.html#TEXTSEARCH-TABLES-INDEX
    
    -- 
      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. +
    
    
  42. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-17T17:31:40Z

    Josh Berkus wrote:
    > Folks,
    > 
    > Here's something not to forget in this whole business: the present TSearch2 
    > implementation permits you to have a different tsvector configuration for 
    > each *row*, not just each column.  That is, applications can be built with 
    > "per-cell" configs.
    > 
    > I know of at least one out there: Ubuntu's Rosetta.  I'm sure there are 
    > others.
    > 
    > Therefore there are two cases we're trying to solve:
    > 
    > (1) The simple case: someone wants to build a database with text search 
    > entirely in one UTF8 language.  All vectors are in that language, and so are 
    > all queries.  The user wants the simplest syntax possible.
    > 
    > (2) The Rosetta case: different configs are used for each cell and all 
    > searches have to be language-qualified.
    > 
    > In both cases, the databases need to backup and restore cleanly.
    > 
    > >From this, I'd first of all say that I don't see the point of a Superuser 
    > default_tsvector_search_config.  There are too many failure conditions with 
    > the default once you get away from the simplest case, so I don't see how 
    > setting it to Superuser-only protects anything.  Might as well make it a 
    > userset and then it will be more useful.
    
    Per my email yesterday, default_tsvector_search_config is _not_
    super-user-only:
    
      o  default_text_search_config stays, not super-user-only, not set
         in pg_dump output
    
    > Unfortunately, the way I see it the only permanent solution for this is to 
    > alter the TSvector structure to include a config OID at the beginning of it.  
    > That doesn't sound like it's doable in time for 8.3, though; is there a way 
    > we could work around that until 8.4?
    
    Oh, so you want the config inside each tsvector value.  Interesting
    idea.
    
    > And why does this sound exactly like the issues we've had with per-column 
    > encodings and the currency type?
    
    Yes, this is a very similar issue except we are trying to allow multiple
    encodings.
    
    -- 
      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. +
    
    
  43. Re: tsearch2 in PostgreSQL 8.3?

    Ron Mayer <rm_pg@cheapcomplexdevices.com> — 2007-08-17T22:32:54Z

    Joshua D. Drake wrote:
    > Tom Lane wrote:
    >> Robert Treat <xzilla@users.sourceforge.net> writes:
    >>> What exactly does default_text_search_config buy us?  I think it is supposed 
    >>> to simplify things, but it sounds like it adds a bunch of corner cases, 
    >> Well, the main thing we'd lose if we remove it is all trace of upward
    >> compatibility from the contrib version of tsearch.
    > 
    > I don't think this is all that big of a deal. In fact I would expect it
    > going from contrib to core and never had any illusion to the effect that
    > I would be able to just "upgrade" from 8.2 (8.1) Tsearch2 to 8.3.
    
    FWIW, I also would _not_ have expected compatibility between contrib
    and core.   In fact, I would have expected contrib tsearch to be a
    place where experimental APIs existed and that the single
    biggest difference between contrib vs core was that the
    core APIs removed any cruft that might have been in contrib.
    
    If default_text_search_config makes things more confusing or more
    fragile, I'd rather see it gone than kept around for
    backward-compatibility-to-pre-core reasons.
    
    
  44. Re: tsearch2 in PostgreSQL 8.3?

    Josh Berkus <josh@agliodbs.com> — 2007-08-17T23:06:15Z

    Bruce,
    
    > Oh, so you want the config inside each tsvector value.  Interesting
    > idea.
    
    Yeah, hasn't anyone suggested this before?  It seems like the obvious 
    solution.  A TSvector constructed with en_US is NOT the same as a vector 
    constructed with fr_FR and it's silly to pretend that they are comparable.  
    Sticking the config name at the beginning of the field would allow for the 
    use of single-parameter functions, and default_config would only be used 
    for SELECT queries.  Backup/restore issues should go away completely ...
    
    EXCEPT this would introduce issues if the config is changed or deleted 
    after being used.  However, I'd imagine that we have those anyway -- 
    certainly we would at restore time.
    
    -- 
    --Josh
    
    Josh Berkus
    PostgreSQL @ Sun
    San Francisco
    
    
  45. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-17T23:19:10Z

    Josh Berkus <josh@agliodbs.com> writes:
    >> Oh, so you want the config inside each tsvector value. Interesting
    >> idea.
    
    > Yeah, hasn't anyone suggested this before?  It seems like the obvious
    > solution.
    
    It might be an obvious solution, but to some other problem than the one
    we have.  The problem we are trying to address is how to know which
    config to use to construct a *new* tsvector.
    
    > A TSvector constructed with en_US is NOT the same as a vector 
    > constructed with fr_FR and it's silly to pretend that they are comparable.
    
    Um, actually I think Oleg and Teodor believe that they *are* comparable.
    If we try to force them not to be then we'll break multi-language
    situations.
    
    			regards, tom lane
    
    
  46. Re: tsearch2 in PostgreSQL 8.3?

    Josh Berkus <josh@agliodbs.com> — 2007-08-17T23:40:43Z

    Tom,
    
    > It might be an obvious solution, but to some other problem than the one
    > we have.  The problem we are trying to address is how to know which
    > config to use to construct a *new* tsvector.
    
    Oh, right.  Back to the circular arguments then ...
    
    -- 
    --Josh
    
    Josh Berkus
    PostgreSQL @ Sun
    San Francisco
    
    
  47. Re: tsearch2 in PostgreSQL 8.3?

    tomas@tuxteam.de — 2007-08-18T04:03:15Z

    -----BEGIN PGP SIGNED MESSAGE-----
    Hash: SHA1
    
    On Fri, Aug 17, 2007 at 04:06:15PM -0700, Josh Berkus wrote:
    > Bruce,
    > 
    > > Oh, so you want the config inside each tsvector value.  Interesting
    > > idea.
    > 
    > Yeah, hasn't anyone suggested this before?  It seems like the obvious 
    > solution.  A TSvector constructed with en_US is NOT the same as a vector 
    > constructed with fr_FR and it's silly to pretend that they are comparable.  
    
    Except that (as I understand Oleg) it even seems to make sense sometimes
    to compare a tsvectors constructed with different configs -- so it might
    be important not to prevent this use case eihter. Oleg?
    
    Otherwise your proposal makes the most sense...
    
    Regards
    - -- tomás
    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.4.1 (GNU/Linux)
    
    iD8DBQFGxm+DBcgs9XrR2kYRAn7RAJ4u508XQB/W6fMTmTchizlsvKEkEwCfTtTK
    R0DMLqNil2VQolFBWE69ZU0=
    =Tvh/
    -----END PGP SIGNATURE-----
    
    
    
  48. Re: tsearch2 in PostgreSQL 8.3?

    Mike Rylander <mrylander@gmail.com> — 2007-08-18T05:24:40Z

    On 8/18/07, tomas@tuxteam.de <tomas@tuxteam.de> wrote:
    > -----BEGIN PGP SIGNED MESSAGE-----
    > Hash: SHA1
    >
    > On Fri, Aug 17, 2007 at 04:06:15PM -0700, Josh Berkus wrote:
    > > Bruce,
    > >
    > > > Oh, so you want the config inside each tsvector value. Interesting
    > > > idea.
    > >
    > > Yeah, hasn't anyone suggested this before?  It seems like the obvious
    > > solution.  A TSvector constructed with en_US is NOT the same as a vector
    > > constructed with fr_FR and it's silly to pretend that they are comparable.
    >
    > Except that (as I understand Oleg) it even seems to make sense sometimes
    > to compare a tsvectors constructed with different configs -- so it might
    > be important not to prevent this use case eihter. Oleg?
    
    Configs are not simply about languages, they are also about stopword
    lists and stemmers and parsers, and there's no reason to think that
    one would be using only one configuration to create a single tsvector.
    
    Different fields from within one document may require different
    treatment.  Take for instance title, with stopwords included, and
    body, with them removed.  Those two initial tsvectors can then be
    concatenated together with different weights to provide a very rich,
    and simple (relatively speaking) search infrastructure.
    
    --miker
    
    
  49. Re: tsearch2 in PostgreSQL 8.3?

    Oleg Bartunov <oleg@sai.msu.su> — 2007-08-18T05:35:35Z

    On Sat, 18 Aug 2007, tomas@tuxteam.de wrote:
    
    > -----BEGIN PGP SIGNED MESSAGE-----
    > Hash: SHA1
    > 
    > On Fri, Aug 17, 2007 at 04:06:15PM -0700, Josh Berkus wrote:
    > > Bruce,
    > > 
    > > > Oh, so you want the config inside each tsvector value. б═Interesting
    > > > idea.
    > > 
    > > Yeah, hasn't anyone suggested this before?  It seems like the obvious 
    > > solution.  A TSvector constructed with en_US is NOT the same as a vector 
    > > constructed with fr_FR and it's silly to pretend that they are comparable. 
    > 
    > Except that (as I understand Oleg) it even seems to make sense sometimes
    > to compare a tsvectors constructed with different configs -- so it might
    > be important not to prevent this use case eihter. Oleg?
    
    yes, for example, you have tsvectors obtained from different sources, which
    require different processing.
    
    > 
    > Otherwise your proposal makes the most sense...
    > 
    > Regards
    > - -- tomц║s
    > -----BEGIN PGP SIGNATURE-----
    > Version: GnuPG v1.4.1 (GNU/Linux)
    > 
    > iD8DBQFGxm+DBcgs9XrR2kYRAn7RAJ4u508XQB/W6fMTmTchizlsvKEkEwCfTtTK
    > R0DMLqNil2VQolFBWE69ZU0=
    > =Tvh/
    > -----END PGP SIGNATURE-----
    >
    
     	Regards,
     		Oleg
    _____________________________________________________________
    Oleg Bartunov, Research Scientist, Head of AstroNet (www.astronet.ru),
    Sternberg Astronomical Institute, Moscow University, Russia
    Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
    phone: +007(495)939-16-83, +007(495)939-23-83
    
  50. Re: tsearch2 in PostgreSQL 8.3?

    Oleg Bartunov <oleg@sai.msu.su> — 2007-08-18T05:53:34Z

    Tom and Bruce, what version of patch you're using ?
    Bruce complained about using OID in arguments of functions, but 
    AFAIR, it was removed in 0.58 version of patch.
    
    I and Teodor are very busy and just can't follow all discussions, so
    we have to rely on people's wisdom. If we have so many problem with 
    integration, that probably we could just integrate support of data types
    (tsquery, tsvector), index support for them and set of support functions
    like to_tsquery, to_tsvector and leave everything remaining in 
    contrib/tsearch2 as an example of text search engine design. 
    Then, after fixing design problem as well as some backend's issues we could
    come with much better conclusions.
    
    Oleg
    On Fri, 17 Aug 2007, Tom Lane wrote:
    
    > Josh Berkus <josh@agliodbs.com> writes:
    >>> Oh, so you want the config inside each tsvector value. Interesting
    >>> idea.
    >
    >> Yeah, hasn't anyone suggested this before?  It seems like the obvious
    >> solution.
    >
    > It might be an obvious solution, but to some other problem than the one
    > we have.  The problem we are trying to address is how to know which
    > config to use to construct a *new* tsvector.
    >
    >> A TSvector constructed with en_US is NOT the same as a vector
    >> constructed with fr_FR and it's silly to pretend that they are comparable.
    >
    > Um, actually I think Oleg and Teodor believe that they *are* comparable.
    > If we try to force them not to be then we'll break multi-language
    > situations.
    >
    > 			regards, tom lane
    >
    > ---------------------------(end of broadcast)---------------------------
    > TIP 2: Don't 'kill -9' the postmaster
    >
    
     	Regards,
     		Oleg
    _____________________________________________________________
    Oleg Bartunov, Research Scientist, Head of AstroNet (www.astronet.ru),
    Sternberg Astronomical Institute, Moscow University, Russia
    Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
    phone: +007(495)939-16-83, +007(495)939-23-83
    
    
  51. Re: tsearch2 in PostgreSQL 8.3?

    Oleg Bartunov <oleg@sai.msu.su> — 2007-08-18T05:54:59Z

    On Sat, 18 Aug 2007, Mike Rylander wrote:
    
    > On 8/18/07, tomas@tuxteam.de <tomas@tuxteam.de> wrote:
    >> -----BEGIN PGP SIGNED MESSAGE-----
    >> Hash: SHA1
    >>
    >> On Fri, Aug 17, 2007 at 04:06:15PM -0700, Josh Berkus wrote:
    >>> Bruce,
    >>>
    >>>> Oh, so you want the config inside each tsvector value. Interesting
    >>>> idea.
    >>>
    >>> Yeah, hasn't anyone suggested this before?  It seems like the obvious
    >>> solution.  A TSvector constructed with en_US is NOT the same as a vector
    >>> constructed with fr_FR and it's silly to pretend that they are comparable.
    >>
    >> Except that (as I understand Oleg) it even seems to make sense sometimes
    >> to compare a tsvectors constructed with different configs -- so it might
    >> be important not to prevent this use case eihter. Oleg?
    >
    > Configs are not simply about languages, they are also about stopword
    > lists and stemmers and parsers, and there's no reason to think that
    > one would be using only one configuration to create a single tsvector.
    >
    > Different fields from within one document may require different
    > treatment.  Take for instance title, with stopwords included, and
    > body, with them removed.  Those two initial tsvectors can then be
    > concatenated together with different weights to provide a very rich,
    > and simple (relatively speaking) search infrastructure.
    
    I can't say better, Mike !
    
     	Regards,
     		Oleg
    _____________________________________________________________
    Oleg Bartunov, Research Scientist, Head of AstroNet (www.astronet.ru),
    Sternberg Astronomical Institute, Moscow University, Russia
    Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
    phone: +007(495)939-16-83, +007(495)939-23-83
    
    
  52. Re: tsearch2 in PostgreSQL 8.3?

    Trevor Talbot <quension@gmail.com> — 2007-08-18T10:22:58Z

    Digging through the simple vs advanced user discussion, I don't think
    expression indexes are really the right idea.  It seems a bit fragile,
    you need a certain amount of knowledge about the optimizer to figure
    out if your queries can even use the index, and it's just plain ugly.
    It also seems like the choice is between either simple one-column
    stuff, or triggers.
    
    There are already several CREATE FULLTEXT items, so what if you take
    it a bit farther:
    
    CREATE TABLE posts (title text, body text);
    CREATE FULLTEXT INDEX posts_fti ON posts (title WEIGHT A, body) CONFIG
    english USING GIN;
    
    ..with searches looking something like..
    
    ... WHERE plainto_tsquery('...') @@ posts_fti ...
    
    Okay, maybe that's not quite the right search abstraction (is it an
    index or a column?), but you get the idea.
    
    The point is that it would be fairly straightforward to do the common
    things, and it works for people whose needs can be met with a "full
    text index" rather than a "multidimensional search for lexemes" (or
    whatever tsvector + index really is).  The configuration is clearly
    defined and stable, but queries can still use a GUC default.
    Meanwhile all the current functions, types and operators are there for
    use with triggers etc for advanced setups.
    
    There's obviously a lot of detail missing, but if something like this
    is the goal, then there doesn't need to be as much concern about
    simple interfaces for 8.3, as long as the framework is ok.  In
    particular, expression indexes don't necessarily need special work
    now.
    
    It's a thought.
    
    
  53. Re: tsearch2 in PostgreSQL 8.3?f

    Bruce Momjian <bruce@momjian.us> — 2007-08-18T16:24:53Z

    Josh Berkus wrote:
    > Bruce,
    > 
    > > Oh, so you want the config inside each tsvector value. ?Interesting
    > > idea.
    > 
    > Yeah, hasn't anyone suggested this before?  It seems like the obvious 
    > solution.  A TSvector constructed with en_US is NOT the same as a vector 
    > constructed with fr_FR and it's silly to pretend that they are comparable.  
    > Sticking the config name at the beginning of the field would allow for the 
    > use of single-parameter functions, and default_config would only be used 
    > for SELECT queries.  Backup/restore issues should go away completely ...
    > 
    > EXCEPT this would introduce issues if the config is changed or deleted 
    > after being used.  However, I'd imagine that we have those anyway -- 
    > certainly we would at restore time.
    
    The other problem with encoding the configuration name in the tsvector
    value is that pg_dump would somehow have to embed the configuration name
    in the tsvector output, and I can't see that working for an expression
    index because index contents aren't dumped.  Having a separate
    configuration column is clearly simpler.
    
    -- 
      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. +
    
    
  54. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-18T16:28:10Z

    Trevor Talbot wrote:
    > Digging through the simple vs advanced user discussion, I don't think
    > expression indexes are really the right idea.  It seems a bit fragile,
    > you need a certain amount of knowledge about the optimizer to figure
    > out if your queries can even use the index, and it's just plain ugly.
    > It also seems like the choice is between either simple one-column
    > stuff, or triggers.
    > 
    > There are already several CREATE FULLTEXT items, so what if you take
    > it a bit farther:
    > 
    > CREATE TABLE posts (title text, body text);
    > CREATE FULLTEXT INDEX posts_fti ON posts (title WEIGHT A, body) CONFIG
    > english USING GIN;
    > 
    > ..with searches looking something like..
    > 
    > ... WHERE plainto_tsquery('...') @@ posts_fti ...
    > 
    > Okay, maybe that's not quite the right search abstraction (is it an
    > index or a column?), but you get the idea.
    > 
    > The point is that it would be fairly straightforward to do the common
    > things, and it works for people whose needs can be met with a "full
    > text index" rather than a "multidimensional search for lexemes" (or
    > whatever tsvector + index really is).  The configuration is clearly
    > defined and stable, but queries can still use a GUC default.
    > Meanwhile all the current functions, types and operators are there for
    > use with triggers etc for advanced setups.
    > 
    > There's obviously a lot of detail missing, but if something like this
    > is the goal, then there doesn't need to be as much concern about
    > simple interfaces for 8.3, as long as the framework is ok.  In
    > particular, expression indexes don't necessarily need special work
    > now.
    
    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.
    
    -- 
      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. +
    
    
  55. Re: tsearch2 in PostgreSQL 8.3?

    Trevor Talbot <quension@gmail.com> — 2007-08-18T17:01:44Z

    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.
    
    
  56. Re: tsearch2 in PostgreSQL 8.3?

    Tom Lane <tgl@sss.pgh.pa.us> — 2007-08-18T17:30:33Z

    Oleg Bartunov <oleg@sai.msu.su> writes:
    > Tom and Bruce, what version of patch you're using ?
    > Bruce complained about using OID in arguments of functions, but 
    > AFAIR, it was removed in 0.58 version of patch.
    
    I'm working from the 0.58 version --- that was the latest last I looked.
    
    There are still OID-based versions of some of the functions, but if
    we go with the regconfig idea as I'm now thinking we should, those
    could be taken out --- they'd have no performance advantage over
    regconfig.
    
    			regards, tom lane
    
    
  57. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-18T17:47:08Z

    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))
    
    and in your WHERE clause you do:
    
    	WHERE 'a & b' @@ complex_ts(col1, col2)
    
    -- 
      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. +
    
    
  58. Re: tsearch2 in PostgreSQL 8.3?

    Joshua D. Drake <jd@commandprompt.com> — 2007-08-18T17:52:45Z

    -----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?
    
    > 
    > and in your WHERE clause you do:
    > 
    > 	WHERE 'a & b' @@ complex_ts(col1, col2)
    > 
    
    
    - --
    
          === The PostgreSQL Company: Command Prompt, Inc. ===
    Sales/Support: +1.503.667.4564   24x7/Emergency: +1.800.492.2240
    PostgreSQL solutions since 1997  http://www.commandprompt.com/
    			UNIQUE NOT NULL
    Donate to the PostgreSQL Project: http://www.postgresql.org/about/donate
    PostgreSQL Replication: http://www.commandprompt.com/products/
    
    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.4.6 (GNU/Linux)
    Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
    
    iD8DBQFGxzHtATb/zqfZUUQRAnpFAJ0SXj1hvjxM03l35R3oWpm6TVwKEACeOwup
    cfyDu6zdxf1fKcf9AE+5VSs=
    =d81X
    -----END PGP SIGNATURE-----
    
    
  59. Re: tsearch2 in PostgreSQL 8.3?

    Trevor Talbot <quension@gmail.com> — 2007-08-18T18:41:44Z

    On 8/18/07, Bruce Momjian <bruce@momjian.us> wrote:
    > Trevor Talbot wrote:
    
    > > 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))
    >
    > and in your WHERE clause you do:
    >
    >         WHERE 'a & b' @@ complex_ts(col1, col2)
    
    Oh, duh, of course.  I kept thinking of the index as something
    abstract instead of reusing the expression, even when the examples
    were right in front of me...
    
    
    On 8/18/07, Joshua D. Drake <jd@commandprompt.com> wrote:
    > Bruce Momjian wrote:
    
    > >       CREATE INDEX ii on x USING GIT(complex_ts(col1, col2))
    >
    > GIN?
    
    Freudian slip, that's what he thinks of me :D
    
    
  60. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-18T19:48:23Z

    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. +
    
    
  61. Re: tsearch2 in PostgreSQL 8.3?

    Bruce Momjian <bruce@momjian.us> — 2007-08-18T19:49:19Z

    Trevor Talbot wrote:
    > On 8/18/07, Bruce Momjian <bruce@momjian.us> wrote:
    > > Trevor Talbot wrote:
    > 
    > > > 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))
    > >
    > > and in your WHERE clause you do:
    > >
    > >         WHERE 'a & b' @@ complex_ts(col1, col2)
    > 
    > Oh, duh, of course.  I kept thinking of the index as something
    > abstract instead of reusing the expression, even when the examples
    > were right in front of me...
    > 
    > 
    > On 8/18/07, Joshua D. Drake <jd@commandprompt.com> wrote:
    > > Bruce Momjian wrote:
    > 
    > > >       CREATE INDEX ii on x USING GIT(complex_ts(col1, col2))
    > >
    > > GIN?
    > 
    > Freudian slip, that's what he thinks of me :D
    
    Group-Index-Tuples, the patch that was held for 8.4.  :-(
    
    -- 
      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. +