BUG #11478: regexp_matches regression in 9.2 - Mailing list pgsql-bugs

From myon@debian.org
Subject BUG #11478: regexp_matches regression in 9.2
Date
Msg-id 20140923204118.17175.66823@wrigleys.postgresql.org
Whole thread Raw
Responses Re: BUG #11478: regexp_matches regression in 9.2
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      11478
Logged by:          Christoph Berg
Email address:      myon@debian.org
PostgreSQL version: 9.2.9
Operating system:   any
Description:

The following was reported in
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760564 :

select regexp_matches('foo/bar/baz',
'^([^/]+?)(?:/([^/]+?))(?:/([^/]+?))?$', '');

Correct 9.1 result:

 regexp_matches
----------------
 {foo,bar,baz}

Bad 9.2 and later result:

 regexp_matches
----------------
(0 rows)

Removing the last or second-last ? brings the match back.

Perl also thinks the regexp should match:

$ perl -wle 'print "$1 $2 $3" if "foo/bar/baz" =~
m!^([^/]+?)(?:/([^/]+?))(?:/([^/]+?))?$!'
foo bar baz

(There should probably be much less ? in the regexp in the first place, but
a regression/bug is a bug.)

pgsql-bugs by date:

Previous
From: piuschan
Date:
Subject: Re: automatic vacuum on pg_statistic pg_toast area blocks all queries in hot standby
Next
From: Tom Lane
Date:
Subject: Re: BUG #11478: regexp_matches regression in 9.2