On Feb 28, 3:21 am, Jamie Hodge <[email protected]> wrote: > If I'm not mistaken, postgres supports the use of * in full text > searches, but they seem to be ignored by sequel. Is this possible?
Note that * in PostgreSQL full text search is not a wild card, but a prefix match, and you need to precede it by a :. See 12.3.2 on http://www.postgresql.org/docs/9.1/static/textsearch-controls.html. Here's example Sequel code showing a possible use of this feature: dataset.full_text_search(:column, 'prefix:*') If you still think this is a problem with Sequel, can you post your Sequel code and the SQL you are trying to produce? Thanks, Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
