1. 28 Jul, 2006 9 commits
  2. 27 Jul, 2006 10 commits
  3. 26 Jul, 2006 8 commits
  4. 25 Jul, 2006 10 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
    • Tom Lane's avatar
      Add missing @OVERRIDE to 'India' config file, per Michael Fuhr. · bd112776
      Tom Lane authored
      Add $PostgreSQL$ lines for CVS identity, too.
      bd112776
    • Bruce Momjian's avatar
      Done: · a859695b
      Bruce Momjian authored
      > 	o -Allow customization of the known set of TZ names (generalize the
      a859695b
    • Tom Lane's avatar
      Remove hard-wired lists of timezone abbreviations in favor of providing · d8b5c95c
      Tom Lane authored
      configuration files that can be altered by a DBA.  The australian_timezones
      GUC setting disappears, replaced by a timezone_abbreviations setting (set this
      to 'Australia' to get the effect of australian_timezones).  The list of zone
      names defined by default has undergone a bit of cleanup, too.  Documentation
      still needs some work --- in particular, should we fix Table B-4, or just get
      rid of it?  Joachim Wieland, with some editorializing by moi.
      d8b5c95c
    • Andrew Dunstan's avatar
    • Tom Lane's avatar
      Make the order of operations in PostmasterMain a bit saner ... some · d0e4a076
      Tom Lane authored
      recent patches had added stuff in rather random spots.
      d0e4a076
  5. 24 Jul, 2006 3 commits