BUG #5273: Unexpected function behavior/failure

Поиск
Список
Период
Сортировка
От Vee
Тема BUG #5273: Unexpected function behavior/failure
Дата
Msg-id 201001122230.o0CMUWFS000320@wwwmaster.postgresql.org
обсуждение исходный текст
Ответы Re: BUG #5273: Unexpected function behavior/failure  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
The following bug has been logged online:

Bug reference:      5273
Logged by:          Vee
Email address:      sefer@hotmail.com
PostgreSQL version: 8.4.2
Operating system:   Linux
Description:        Unexpected function behavior/failure
Details:

Hi,

I have an odd problem using certain regular expressions (as opposed to any
other function) with PostgreSql 8.4.2, I was hoping you could enlighten me
as to what am I doing wrong.

-- Create the table and populate it.
create table test ( data text );
insert into test
values ('hello'), ('world'), ('bridge');

-- Test query.
select data, upper(data)
from test;

> hello    HELLO
> world    WORLD
> bridge    BRIDGE

-- The problem query
select data, regexp_matches(data, '(h..l)')
from test;

> hello    {hell}

Since I have no "where" clause, I would expect to see all the rows in the
result of the second case, with possibly a NULL value for the non-matched
rows.
But I would not expect a "select" clause to effectively filter out results
for me.

I'd appreciate your input on the matter.

Thanks,
   Vee.

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

Предыдущее
От: Ted Clark
Дата:
Сообщение: BUG #2197: PostgreSQL error- 'could not read block 0 of relation'
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #5273: Unexpected function behavior/failure