Re: [BUGS] BUG #7520: regexp_matches does not work as expected

2012-09-04 Thread Tom Lane
sbasu...@soft-gator.com writes: > I am using regexp_matches in a function like this > create or replace function test (v_string in text) > returns varchar as $$ > declare > i_strings text[]; > i_stringtext[]; > i_strings := > regexp_matches(v_string,E'[a-zA-Z0-9

[BUGS] BUG #7520: regexp_matches does not work as expected

2012-09-04 Thread sbasurto
The following bug has been logged on the website: Bug reference: 7520 Logged by: Sergio Basurto Email address: sbasu...@soft-gator.com PostgreSQL version: 9.1.4 Operating system: Gentoo Description: I am using regexp_matches in a function like this create or replace f