1. 30 Jul, 2006 1 commit
    • Bruce Momjian's avatar
      Fix WIN32 wait() return value macros to be accurate, particularly · 1a271f0c
      Bruce Momjian authored
      because they are used for testing the return value from system().
      (WIN32 doesn't overlay the return code with other failure conditions
      like Unix does, so they are just simple macros.)
      
      Fix regression checks to properly handle diff failures on Win32 using
      the new macros.
      1a271f0c
  2. 29 Jul, 2006 6 commits
  3. 28 Jul, 2006 11 commits
  4. 27 Jul, 2006 10 commits
  5. 26 Jul, 2006 8 commits
  6. 25 Jul, 2006 4 commits
    • Bruce Momjian's avatar
      /contrib/cube improvements: · 796de9c1
      Bruce Momjian authored
      Update the calling convention for all external facing functions. By
      external facing, I mean all functions that are directly referenced in
      cube.sql. Prior to my update, all functions used the older V0 calling
      convention. They now use V1.
      
      New Functions:
      
      cube(float[]), which makes a zero volume cube from a float array
      
      cube(float[], float[]), which allows the user to create a cube from
      two float arrays; one for the upper right and one for the lower left
      coordinate.
      
      cube_subset(cube, int4[]), to allow you to reorder or choose a subset of
      dimensions from a cube, using index values specified in the array.
      
      Joshua Reich
      796de9c1
    • Tom Lane's avatar
      Modify btree to delete known-dead index entries without an actual VACUUM. · e6284649
      Tom Lane authored
      When we are about to split an index page to do an insertion, first look
      to see if any entries marked LP_DELETE exist on the page, and if so remove
      them to try to make enough space for the desired insert.  This should reduce
      index bloat in heavily-updated tables, although of course you still need
      VACUUM eventually to clean up the heap.
      
      Junji Teramoto
      e6284649
    • Bruce Momjian's avatar
      Add reason for WAL offset reporting: · edd49fcf
      Bruce Momjian authored
      >
      > 	    The offset allows parts of a WAL file to be archived using
      > 	    an external program.
      edd49fcf
    • Bruce Momjian's avatar
      Add offset mention: · 8633a9cd
      Bruce Momjian authored
      < 	  o Add reporting of the current WAL file, perhaps as part of
      < 	    partial log file archiving
      > 	  o Add reporting of the current WAL file and offset, perhaps as
      > 	    part of partial log file archiving
      8633a9cd