Skip to content
Snippets Groups Projects
  1. Nov 11, 2007
  2. Nov 10, 2007
  3. Nov 07, 2007
  4. Oct 23, 2007
  5. Oct 22, 2007
  6. Oct 16, 2007
  7. Oct 15, 2007
  8. Oct 14, 2007
  9. Oct 11, 2007
  10. Oct 09, 2007
  11. Oct 08, 2007
    • Tom Lane's avatar
      Get rid of dependency on strtoull() --- Marko Kreen. · b196b7fb
      Tom Lane authored
      Some additional minor editorializing by Tom.
      b196b7fb
    • Jan Wieck's avatar
      Added the Skytools extended transaction ID module to contrib as discussed · 1f92630f
      Jan Wieck authored
      on CORE previously.
      
      This module offers transaction ID's containing the original XID and the
      transaction epoch as a bigint value to the user level. It also provides
      a special txid_snapshot data type that contains an entire transactions
      visibility snapshot information, which is useful to determine if a
      particular txid was visible to a transaction or not.
      
      The module has been tested by porting Slony-I from using its original
      xxid data type.
      
      Jan
      1f92630f
  12. Oct 01, 2007
  13. Sep 30, 2007
  14. Sep 29, 2007
  15. Sep 27, 2007
    • Tom Lane's avatar
      Tweak pgbench.c to remove the hidden assumption that a WIN32 machine · ffda6747
      Tom Lane authored
      couldn't possibly HAVE_GETOPT.  I believe this is the most appropriate
      form of the patch submitted 2007-08-07 by Hiroshi Saito, though not
      having a Windows build environment I won't know for sure till I see
      the buildfarm results.
      ffda6747
    • Tom Lane's avatar
      Minor improvements in backup and recovery: · f18dfc48
      Tom Lane authored
      - create a separate archive_mode GUC, on which archive_command is dependent
      
      - %r option in recovery.conf sends last restartpoint to recovery command
      
      - %r used in pg_standby, updated README
      
      - minor other code cleanup in pg_standby
      
      - doc on Warm Standby now mentions pg_standby and %r
      
      - log_restartpoints recovery option emits LOG message at each restartpoint
      
      - end of recovery now displays last transaction end time, as requested
        by Warren Little; also shown at each restartpoint
      
      - restart archiver if needed to carry away WAL files at shutdown
      
      Simon Riggs
      f18dfc48
  16. Sep 21, 2007
  17. Sep 20, 2007
    • Tom Lane's avatar
      HOT updates. When we update a tuple without changing any of its indexed · 282d2a03
      Tom Lane authored
      columns, and the new version can be stored on the same heap page, we no longer
      generate extra index entries for the new version.  Instead, index searches
      follow the HOT-chain links to ensure they find the correct tuple version.
      
      In addition, this patch introduces the ability to "prune" dead tuples on a
      per-page basis, without having to do a complete VACUUM pass to recover space.
      VACUUM is still needed to clean up dead index entries, however.
      
      Pavan Deolasee, with help from a bunch of other people.
      282d2a03
  18. Sep 14, 2007
  19. Sep 13, 2007
    • Tom Lane's avatar
      Redefine the lp_flags field of item pointers as having four states, rather · 68893035
      Tom Lane authored
      than two independent bits (one of which was never used in heap pages anyway,
      or at least hadn't been in a very long time).  This gives us flexibility to
      add the HOT notions of redirected and dead item pointers without requiring
      anything so klugy as magic values of lp_off and lp_len.  The state values
      are chosen so that for the states currently in use (pre-HOT) there is no
      change in the physical representation.
      68893035
  20. Aug 29, 2007
  21. Aug 27, 2007
  22. Aug 25, 2007
  23. Aug 23, 2007
Loading