Skip to content
Snippets Groups Projects
  1. Feb 18, 2012
    • Tom Lane's avatar
      Sync regex code with Tcl 8.5.11. · 08fd6ff3
      Tom Lane authored
      Sync our regex code with upstream changes since last time we did this,
      which was Tcl 8.5.0 (see commit df1e965e).
      
      There are no functional changes here; the main point is just to lay down
      a commit-log marker that somebody has looked at this recently, and to do
      what we can to keep the two codebases comparable.
      08fd6ff3
  2. Apr 11, 2011
    • Tom Lane's avatar
      Teach regular expression operators to honor collations. · 1e16a810
      Tom Lane authored
      This involves getting the character classification and case-folding
      functions in the regex library to use the collations infrastructure.
      Most of this work had been done already in connection with the upper/lower
      and LIKE logic, so it was a simple matter of transposition.
      
      While at it, split out these functions into a separate source file
      regc_pg_locale.c, so that they can be correctly labeled with the Postgres
      project's license rather than the Scriptics license.  These functions are
      100% Postgres-written code whereas what remains in regc_locale.c is still
      mostly not ours, so lumping them both under the same copyright notice was
      getting more and more misleading.
      1e16a810
  3. Sep 20, 2010
  4. Aug 02, 2010
    • Tom Lane's avatar
      Tweak a couple of macros in the regex code to suppress compiler warnings · e621037e
      Tom Lane authored
      from "clang".  The VERR changes make an assignment unconditional, which is
      probably easier to read/understand anyway, and one can hardly argue that
      it's worth shaving cycles off the case of reporting another error when
      one has already been detected.  The INSIST change limits where that macro
      can be used, but not in a way that creates a problem for any existing call.
      e621037e
  5. Feb 01, 2010
    • Tom Lane's avatar
      Change regexp engine's ccondissect/crevdissect routines to perform DFA · ee3a81f0
      Tom Lane authored
      matching before recursing instead of after.  The DFA match eliminates
      unworkable midpoint choices a lot faster than the recursive check, in most
      cases, so doing it first can speed things up; particularly in pathological
      cases such as recently exhibited by Michael Glaesemann.
      
      In addition, apply some cosmetic changes that were applied upstream (in the
      Tcl project) at the same time, in order to sync with upstream version 1.15
      of regexec.c.
      
      Upstream apparently intends to backpatch this, so I will too.  The
      pathological behavior could be unpleasant if encountered in the field,
      which seems to justify any risk of introducing new bugs.
      
      Tom Lane, reviewed by Donal K. Fellows of Tcl project
      ee3a81f0
  6. Oct 15, 2005
  7. Sep 25, 2005
  8. Jul 10, 2005
    • Bruce Momjian's avatar
      I made the patch that implements regexp_replace again. · 75a64eeb
      Bruce Momjian authored
      The specification of this function is as follows.
      
      regexp_replace(source text, pattern text, replacement text, [flags
      text])
      returns text
      
      Replace string that matches to regular expression in source text to
      replacement text.
      
       - pattern is regular expression pattern.
       - replacement is replace string that can use '\1'-'\9', and '\&'.
          '\1'-'\9': back reference to the n'th subexpression.
          '\&'     : entire matched string.
       - flags can use the following values:
          g: global (replace all)
          i: ignore case
          When the flags is not specified, case sensitive, replace the first
          instance only.
      
      Atsushi Ogawa
      75a64eeb
  9. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  10. Aug 08, 2003
  11. Aug 04, 2003
  12. Feb 05, 2003
  13. Nov 08, 2002
  14. Aug 29, 2002
  15. Jun 11, 2002
    • Thomas G. Lockhart's avatar
      Implement SQL99 OVERLAY(). Allows substitution of a substring in a string. · ea01a451
      Thomas G. Lockhart authored
      Implement SQL99 SIMILAR TO as a synonym for our existing operator "~".
      Implement SQL99 regular expression SUBSTRING(string FROM pat FOR escape).
       Extend the definition to make the FOR clause optional.
       Define textregexsubstr() to actually implement this feature.
      Update the regression test to include these new string features.
       All tests pass.
      Rename the regular expression support routines from "pg95_xxx" to "pg_xxx".
      Define CREATE CHARACTER SET in the parser per SQL99. No implementation yet.
      ea01a451
  16. Oct 25, 2001
  17. Mar 22, 2001
  18. Feb 13, 2001
  19. Jan 19, 2000
  20. Jul 16, 1999
  21. Sep 01, 1998
  22. Jul 18, 1998
  23. Mar 15, 1998
    • Marc G. Fournier's avatar
      From: t-ishii@sra.co.jp · 661ecf3c
      Marc G. Fournier authored
      Included are patches intended for allowing PostgreSQL to handle
      multi-byte charachter sets such as EUC(Extende Unix Code), Unicode and
      Mule internal code. With the MB patch you can use multi-byte character
      sets in regexp and LIKE. The encoding system chosen is determined at
      the compile time.
      
      To enable the MB extension, you need to define a variable "MB" in
      Makefile.global or in Makefile.custom. For further information please
      take a look at README.mb under doc directory.
      
      (Note that unlike "jp patch" I do not use modified GNU regexp any
      more. I changed Henry Spencer's regexp coming with PostgreSQL.)
      661ecf3c
  24. Feb 11, 1998
  25. Sep 08, 1997
  26. Sep 07, 1997
  27. Nov 08, 1996
  28. Sep 20, 1996
  29. Aug 28, 1996
  30. Jul 09, 1996
Loading