Subject: like vs '='

From: m w <mttf2000(at)yahoo(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Subject: like vs '='
Date: 2001-01-30 01:34:37
Message-ID: 20010130013437.66908.qmail@web12404.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> Subject: like vs '='
>
> I have a function to transform text into a
> pseudo-metaphone variable, take this
> example:
>
> cddbsql=# select song, metatext(song) from cdsongs
> where metatext(song) like
> metatext('born to run') limit 3 ;
> song | metatext
> -------------+----------
> Born To Run | brntorn
> Born To Run | brntorn
> Born To Run | brntorn
> (3 rows)
>
> Here is the problem: Depending on whether there is
> an index or not, 'like'
> behaves differently. Here is a transcript:
>
> cddbsql=# select song, metatext(song) from cdsongs
> where metatext(song) like
> metatext('born to run') limit 1 ;
> song | metatext
> -------------+----------
> Born To Run | brntorn
> (1 row)
>
> cddbsql=# create index cdsongs_meta_song on cdsongs
> (metatext(song)) ;
> CREATE
> cddbsql=# select song, metatext(song) from cdsongs
> where metatext(song) like
> metatext('born to run') limit 1 ;
> song | metatext
> ------+----------
> (0
> rows)
>
>
> This happens in both 7.0 and
> 7.1.
> --
> http://www.mohawksoft.com
>

__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/

Browse pgsql-hackers by date

  From Date Subject
Next Message m w 2001-01-30 02:54:01 Like vs '='
Previous Message Karel Zak 2001-01-29 22:37:08 NOCREATETABLE patch (was: Re: Please, help!(about Postgres))