Re: [HACKERS] Bug in LIKE ?

Поиск
Список
Период
Сортировка
От The Hermit Hacker
Тема Re: [HACKERS] Bug in LIKE ?
Дата
Msg-id Pine.BSF.4.05.9906071050140.413-100000@thelab.hub.org
обсуждение исходный текст
Ответ на Re: [HACKERS] Bug in LIKE ?  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: [HACKERS] Bug in LIKE ?  (Bruce Momjian <maillist@candle.pha.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Bug in LIKE ?
Следующее
От: James Thompson
Дата:
Сообщение: Re: [HACKERS] PostgreSQL History(Parody)