1. 24 Jan, 2011 3 commits
  2. 23 Jan, 2011 16 commits
  3. 22 Jan, 2011 10 commits
    • Tom Lane's avatar
      Suppress "control reaches end of non-void function" warning from gcc 4.5. · 518b1e96
      Tom Lane authored
      Not sure why I'm seeing this on Fedora 14 and not earlier versions.
      Seems like a regression that gcc no longer knows that DIE() doesn't return.
      Still, adding a dummy return is harmless enough.
      518b1e96
    • Tom Lane's avatar
      Suppress possibly-uninitialized-variable warnings from gcc 4.5. · e2627258
      Tom Lane authored
      It appears that gcc 4.5 can issue such warnings for whole structs, not
      just scalar variables as in the past.  Refactor some pg_dump code slightly
      so that the OutputContext local variables are always initialized, even
      if they won't be used.  It's cheap enough to not be worth worrying about.
      e2627258
    • Peter Eisentraut's avatar
      Get rid of the global variable holding the error state · 116ce2f4
      Peter Eisentraut authored
      Global error handling led to confusion and was hard to manage.  With
      this change, errors from PostgreSQL are immediately reported to Python
      as exceptions.  This requires setting a Python exception after
      reporting the caught PostgreSQL error as a warning, because PLy_elog
      destroys the Python exception state.
      
      Ideally, all places where PostgreSQL errors need to be reported back
      to Python should be wrapped in subtransactions, to make going back to
      Python from a longjmp safe.  This will be handled in a separate patch.
      
      Jan Urbański
      116ce2f4
    • Tom Lane's avatar
      More pg_test_fsync fixups. · 37eb2cd4
      Tom Lane authored
      Reduce #includes to minimum actually needed; in particular include
      postgres_fe.h not postgres.h, so as to stop build failures on some
      platforms.
      
      Use get_progname() instead of hardwired program name; improve error
      checking for command line syntax; bring error messages into line with
      style guidelines; include strerror result in die() cases.
      37eb2cd4
    • Tom Lane's avatar
      Suppress unused-variables warning when OPEN_SYNC_FLAG isn't defined. · 3ae28ce8
      Tom Lane authored
      Per buildfarm.
      3ae28ce8
    • Magnus Hagander's avatar
      f5a0fd2f
    • Robert Haas's avatar
      Avoid treating WAL senders as normal backends. · a0c75f55
      Robert Haas authored
      The previous coding treated anything that wasn't an autovacuum launcher
      as a normal backend, which is wrong now that we also have WAL senders.
      
      Fujii Masao, reviewed by Robert Haas, Alvaro Herrera, Tom Lane,
      and Bernd Helmle.
      a0c75f55
    • Robert Haas's avatar
      Code cleanup for assign_XactIsoLevel. · fb4c5d27
      Robert Haas authored
      The new coding avoids a spurious debug message when a transaction
      that has changed the isolation level has been rolled back.  It also
      allows the property to be freely changed to the current value within
      a subtransaction.
      
      Kevin Grittner, with one small change by me.
      fb4c5d27
    • Tom Lane's avatar
      More pg_test_fsync cleanup. · cb38ab6d
      Tom Lane authored
      Un-break Windows build (I hope) by making the HAVE_FSYNC_WRITETHROUGH
      code match the backend.  Fix incorrect program help message.  static-ize
      all functions.
      cb38ab6d
    • Tom Lane's avatar
      Clean up pg_test_fsync commit. · bc616703
      Tom Lane authored
      Actually rename the program, rather than just claiming we did.  Hook it
      into the build system.  Get rid of useless dependency on libpq.  Clean up
      #include list and messy whitespace.
      bc616703
  4. 21 Jan, 2011 8 commits
  5. 20 Jan, 2011 3 commits