diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-07-10 18:00:39 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-07-10 18:00:39 -0400 |
commit | 18c8dc32ce6759a8837f01e3dd0036cd19ee8683 (patch) | |
tree | d2d058f0f362cf22af5856a4e20cc7f814835f87 /src/backend/regex/regcomp.c | |
parent | f12960d8c9ce454a37c2082549b7766ce36627d2 (diff) | |
download | postgresql-18c8dc32ce6759a8837f01e3dd0036cd19ee8683.tar.gz postgresql-18c8dc32ce6759a8837f01e3dd0036cd19ee8683.zip |
Back-patch fix for extraction of fixed prefixes from regular expressions.
Back-patch of commits 628cbb50ba80c83917b07a7609ddec12cda172d0 and
c6aae3042be5249e672b731ebeb21875b5343010. This has been broken since
7.3, so back-patch to all supported branches.
Diffstat (limited to 'src/backend/regex/regcomp.c')
-rw-r--r-- | src/backend/regex/regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/regex/regcomp.c b/src/backend/regex/regcomp.c index 57055f04abb..ceb6f0f8737 100644 --- a/src/backend/regex/regcomp.c +++ b/src/backend/regex/regcomp.c @@ -162,7 +162,7 @@ static void dumparcs(struct state *, FILE *); static int dumprarcs(struct arc *, struct state *, FILE *, int); static void dumparc(struct arc *, struct state *, FILE *); static void dumpcnfa(struct cnfa *, FILE *); -static void dumpcstate(int, struct carc *, struct cnfa *, FILE *); +static void dumpcstate(int, struct cnfa *, FILE *); #endif /* === regc_cvec.c === */ static struct cvec *newcvec(int, int); |