Re: [HACKERS] Bug in LIKE ? - Mailing list pgsql-hackers

From The Hermit Hacker
Subject Re: [HACKERS] Bug in LIKE ?
Date
Msg-id Pine.BSF.4.05.9906071050140.413-100000@thelab.hub.org
Whole thread Raw
In response to Re: [HACKERS] Bug in LIKE ?  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: [HACKERS] Bug in LIKE ?
List pgsql-hackers
On Mon, 7 Jun 1999, Tom Lane wrote:

> Daniele Orlandi <daniele@orlandi.com> writes:
> > Uhm.... I think the problem is a little worse:
> 
> It's a real bug, and I see the problem: someone changed the handling of
> LIKE prefixes in gram.y, without understanding quite what they were
> doing.  6.4.2 has:
> 
>                  if (n->val.val.str[pos] == '\\' ||
>                      n->val.val.str[pos] == '%')
>                     pos++;
> 
> where 6.5 has:
> 
>                  if (n->val.val.str[pos] == '\\' ||
>                      n->val.val.str[pos+1] == '%')
>                     pos++;
> 
> The first one is right and the second is not.
> 
> Unless we fix this, LIKE will be completely busted for any string
> containing non-leading %.  Shall I ... ?

Please do...looking through the logs, any idea who changed this one? *gets
out billy club* *grin*

Marc G. Fournier                   ICQ#7615664               IRC Nick: Scrappy
Systems Administrator @ hub.org 
primary: scrappy@hub.org           secondary: scrappy@{freebsd|postgresql}.org 



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: [HACKERS] Bug in LIKE ?
Next
From: James Thompson
Date:
Subject: Re: [HACKERS] PostgreSQL History(Parody)