1. 29 10月, 2005 2 次提交
    • T
      Clean up AIX build to avoid 'duplicate symbol' warnings, by moving use · a7de22d8
      Tom Lane 提交于
      of postgres.imp file into BE_DLLLIBS macro.  This makes the AIX build
      work more like the Windows and Darwin builds, which have similar requirements
      to mention a backend library when linking shared libraries that will be
      dynamically loaded into the backend.
      a7de22d8
    • T
      Fix race condition in multixact code: it's possible to try to read a · 1986ca5c
      Tom Lane 提交于
      multixact's starting offset before the offset has been stored into the
      SLRU file.  A simple fix would be to hold the MultiXactGenLock until the
      offset has been stored, but that looks like a big concurrency hit.  Instead
      rely on knowledge that unset offsets will be zero, and loop when we see
      a zero.  This requires a little extra hacking to ensure that zero is never
      a valid value for the offset.  Problem reported by Matteo Beccati, fix
      ideas from Martijn van Oosterhout, Alvaro Herrera, and Tom Lane.
      1986ca5c
  2. 28 10月, 2005 4 次提交
  3. 27 10月, 2005 9 次提交
  4. 26 10月, 2005 5 次提交
  5. 25 10月, 2005 7 次提交
  6. 24 10月, 2005 6 次提交
  7. 23 10月, 2005 6 次提交
  8. 22 10月, 2005 1 次提交