Fix regexp_matches() handling of zero-length matches.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 1346f40b584d8072bdacdf312027c0ef57e4b7c2
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2013-07-31T15:31:33Z
Releases: 9.1.10
Fix regexp_matches() handling of zero-length matches.

We'd find the same match twice if it was of zero length and not immediately
adjacent to the previous match.  replace_text_regexp() got similar cases
right, so adjust this search logic to match that.  Note that even though
the regexp_split_to_xxx() functions share this code, they did not display
equivalent misbehavior, because the second match would be considered
degenerate and ignored.

Jeevan Chalke, with some cosmetic changes by me.

Files