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
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