Skip to content
Snippets Groups Projects
  1. Jul 29, 2006
  2. Jul 28, 2006
  3. Jul 27, 2006
  4. Jul 26, 2006
    • Tom Lane's avatar
      Code review for bigint-LIMIT patch. Fix missed planner dependency, · a998a692
      Tom Lane authored
      eliminate unnecessary code, force initdb because stored rules change
      (limit nodes are now supposed to be int8 not int4 expressions).
      Update comments and error messages, which still all said 'integer'.
      a998a692
    • Bruce Momjian's avatar
      Reorder items: · 5ffa0bb4
      Bruce Momjian authored
      < 	  o Allow point-in-time recovery to archive partially filled
      < 	    write-ahead logs? [pitr]
      > 	  o Add command to archive partially filled write-ahead logs? [pitr]
      < 	    of a disk failure. This could be triggered by a user command or
      < 	    a timer.
      > 	    of a disk failure.
      < 	    recovery.  A function call to do this would also be useful.
      > 	    recovery.
      > 	  o Add reporting of the current WAL file and offset, perhaps as
      > 	    part of partial log file archiving
      >
      > 	    The offset allows parts of a WAL file to be archived using
      > 	    an external program.
      >
      < 	  o Add reporting of the current WAL file and offset, perhaps as
      < 	    part of partial log file archiving
      <
      < 	    The offset allows parts of a WAL file to be archived using
      < 	    an external program.
      5ffa0bb4
    • Bruce Momjian's avatar
      Work around bug in strxfmt() but in MS VS2005. · 9a748371
      Bruce Momjian authored
      William ZHANG
      9a748371
    • Peter Eisentraut's avatar
      When a GUC string variable is not set, print the empty string (in SHOW etc.), · cd2a6b57
      Peter Eisentraut authored
      not "unset".  An "unset" state doesn't really exist; all variables behave
      like an empty string value if the string being pointed to has not been
      initialized.
      cd2a6b57
    • Peter Eisentraut's avatar
      Convert effective_cache_size to an integer, for better integration with · 79bc99a4
      Peter Eisentraut authored
      upcoming units feature.
      79bc99a4
    • Tatsuo Ishii's avatar
      New features contributed by Tomoaki Sato. · 0c57c832
      Tatsuo Ishii authored
      - predefined variable "tps"
        The value of variable tps is taken from the scaling factor
        specified by -s option.
      
      - -D option
        Variable values can be defined by -D option.
      
      - \set command now allows arithmetic calculations.
      0c57c832
    • Bruce Momjian's avatar
      Done: · 88b39634
      Bruce Momjian authored
      > * -Change LIMIT/OFFSET and FETCH/MOVE to use int8
      88b39634
    • Bruce Momjian's avatar
      Change LIMIT/OFFSET to use int8 · 085e5596
      Bruce Momjian authored
      Dhanaraj M
      085e5596
    • 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
  5. Jul 25, 2006
    • 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
Loading