1. 29 Jul, 2006 6 commits
  2. 28 Jul, 2006 11 commits
  3. 27 Jul, 2006 10 commits
  4. 26 Jul, 2006 8 commits
  5. 25 Jul, 2006 5 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
    • Bruce Momjian's avatar
      Update PITR: · cb6f5f15
      Bruce Momjian authored
      < 	    write-ahead logs [pitr]
      > 	    write-ahead logs? [pitr]
      < 	    recovery.
      > 	    recovery.  A function call to do this would also be useful.
      cb6f5f15