]> granicus.if.org Git - postgresql/commit
Re-implement extraction of fixed prefixes from regular expressions.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 10 Jul 2012 18:54:37 +0000 (14:54 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 10 Jul 2012 18:54:37 +0000 (14:54 -0400)
commit628cbb50ba80c83917b07a7609ddec12cda172d0
tree7008492921c90e6de7c431633e33624a597a8416
parent00dac6000d422033c3e8d191f01ee0e6525794c2
Re-implement extraction of fixed prefixes from regular expressions.

To generate btree-indexable conditions from regex WHERE conditions (such as
WHERE indexed_col ~ '^foo'), we need to be able to identify any fixed
prefix that a regex might have; that is, find any string that must be a
prefix of all strings satisfying the regex.  We used to do that with
entirely ad-hoc code that looked at the source text of the regex.  It
didn't know very much about regex syntax, which mostly meant that it would
fail to identify some optimizable cases; but Viktor Rosenfeld reported that
it would produce actively wrong answers for quantified parenthesized
subexpressions, such as '^(foo)?bar'.  Rather than trying to extend the
ad-hoc code to cover this, let's get rid of it altogether in favor of
identifying prefixes by examining the compiled form of a regex.

To do this, I've added a new entry point "pg_regprefix" to the regex library;
hopefully it is defined in a sufficiently general fashion that it can remain
in the library when/if that code gets split out as a standalone project.

Since this bug has been there for a very long time, this fix needs to get
back-patched.  However it depends on some other recent commits (particularly
the addition of wchar-to-database-encoding conversion), so I'll commit this
separately and then go to work on back-porting the necessary fixes.
src/backend/regex/Makefile
src/backend/regex/README
src/backend/regex/regc_color.c
src/backend/regex/regprefix.c [new file with mode: 0644]
src/backend/utils/adt/regexp.c
src/backend/utils/adt/selfuncs.c
src/include/regex/regex.h
src/include/regex/regguts.h
src/include/utils/builtins.h
src/test/regress/expected/regex.out
src/test/regress/sql/regex.sql