1. 29 Mar, 2009 2 commits
  2. 28 Mar, 2009 6 commits
  3. 27 Mar, 2009 17 commits
  4. 26 Mar, 2009 12 commits
  5. 25 Mar, 2009 3 commits
    • Tom Lane's avatar
      Add btree_gin contrib module. · 9151e1bb
      Tom Lane authored
      Teodor Sigaev and Oleg Bartunov
      9151e1bb
    • Tom Lane's avatar
      Adjust the APIs for GIN opclass support functions to allow the extractQuery() · 87b8db37
      Tom Lane authored
      method to pass extra data to the consistent() and comparePartial() methods.
      This is the core infrastructure needed to support the soon-to-appear
      contrib/btree_gin module.  The APIs are still upward compatible with the
      definitions used in 8.3 and before, although *not* with the previous 8.4devel
      function definitions.
      
      catversion bump for changes in pg_proc entries (although these are just
      cosmetic, since GIN doesn't actually look at the function signature before
      calling it...)
      
      Teodor Sigaev and Oleg Bartunov
      87b8db37
    • Tom Lane's avatar
      Fix old thinko in pgp.h: the idea is to declare some named enum types, · 050a78dd
      Tom Lane authored
      not global variables of anonymous enum types.  This didn't actually hurt
      much because most linkers will just merge the duplicated definitions ...
      but some will complain.  Per bug #4731 from Ceriel Jacobs.
      
      Backpatch to 8.1 --- the declarations don't exist before that.
      050a78dd