argument of AND must not return a set when using regexp_matches

Поиск
Список
Период
Сортировка
От Robert James
Тема argument of AND must not return a set when using regexp_matches
Дата
Msg-id CAGYyBgiUSJ9AvwQ54zgbLi7-U9dDC3mmLXBvLuaGXCDPpVAu_w@mail.gmail.com
обсуждение исходный текст
Ответы Re: argument of AND must not return a set when using regexp_matches  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
I've been getting a funny SQL error, which I've boiled down to this case.

SELECT (regexp_matches('abc', '(.)b(.)'))[1] IS NOT NULL
-- Returns true, as expected

SELECT (regexp_matches('abc', '(.)b(.)'))[1] IS NOT NULL AND true
-- Gives this error:
ERROR: argument of AND must not return a set
SQL state: 42804

Can anyone make heads or tails of it? Is it a real bug? Is there a work around?

Postgres 8.3


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

Предыдущее
От: Andrew Sullivan
Дата:
Сообщение: Re: Best method to compare subdomains
Следующее
От: "T. E. Lawrence"
Дата:
Сообщение: Re: reducing number of ANDs speeds up query RESOLVED