1. 03 Jul, 2010 1 commit
  2. 02 Jul, 2010 4 commits
  3. 01 Jul, 2010 5 commits
  4. 30 Jun, 2010 3 commits
  5. 29 Jun, 2010 7 commits
  6. 28 Jun, 2010 6 commits
  7. 27 Jun, 2010 1 commit
    • Tom Lane's avatar
      Fix pg_restore so parallel restore doesn't fail when the input file doesn't · b779ea8a
      Tom Lane authored
      contain data offsets (which it won't, if pg_dump thought its output wasn't
      seekable).  To do that, remove an unnecessarily aggressive error check, and
      instead fail if we get to the end of the archive without finding the desired
      data item.  Also improve the error message to be more specific about the
      cause of the problem.  Per discussion of recent report from Igor Neyman.
      
      Back-patch to 8.4 where parallel restore was introduced.
      b779ea8a
  8. 25 Jun, 2010 4 commits
  9. 24 Jun, 2010 4 commits
  10. 23 Jun, 2010 2 commits
    • Robert Haas's avatar
      Add TCP keepalive support to libpq. · d8cd283a
      Robert Haas authored
      This adds four additional connection parameters to libpq: keepalives,
      keepalives_idle, keepalives_count, and keepalives_interval.
      keepalives default to on, per discussion, but can be turned off by
      specifying keepalives=0.  The remaining parameters, where supported,
      can be used to adjust how often keepalives are sent and how many
      can be lost before the connection is broken.
      
      The immediate motivation for this patch is to make sure that
      walreceiver will eventually notice if the master reboots without
      closing the connection cleanly, but it should be helpful in other
      cases as well.
      
      Tollef Fog Heen, Fujii Masao, and me.
      d8cd283a
    • Bruce Momjian's avatar
  11. 22 Jun, 2010 3 commits