BUG #18438: regex isnt working for "^" , ".*"

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #18438: regex isnt working for "^" , ".*"
Дата
Msg-id 18438-d42a9e2d7ba6407f@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #18438: regex isnt working for "^" , ".*"  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      18438
Logged by:          Ankur Kumar
Email address:      ankurawesome37@gmail.com
PostgreSQL version: 14.5
Operating system:   macos ventura version 13.5
Description:

hey , i am getting empty query result while using postgres regex operator
"^" , ".*" etc . I am able to use "%" correctly but not getting any response
for  other regex operator . For example - There is a user in users table
with  >  first_name - "aman", last_name -  "kumar" .
But while quering  i am not getting any result while querying users table
->

1) SELECT id from users where concat(users.first_name, ' ', users.last_name)
ILIKE '^am' 
2) SELECT id from users where concat(users.first_name, ' ', users.last_name)
ILIKE 'am.*' 
3) SELECT id from users where concat(users.first_name, ' ', users.last_name)
ILIKE '^am%' 

Above queries didnt return any result 

But it works for this query -

SELECT id from users where concat(users.first_name, ' ', users.last_name)
ILIKE 'am%' LIMIT 100


В списке pgsql-bugs по дате отправления:

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: relfrozenxid may disagree with row XIDs after 1ccc1e05ae
Следующее
От: Noah Misch
Дата:
Сообщение: Re: relfrozenxid may disagree with row XIDs after 1ccc1e05ae