Skip to content
Snippets Groups Projects
  1. Nov 05, 2005
  2. Nov 04, 2005
  3. Nov 03, 2005
  4. Nov 01, 2005
    • Andrew Dunstan's avatar
      · cad0e824
      Andrew Dunstan authored
      Provide a --no-locale option for pg_regress and a corresponding NOLOCALE=1
      setting for the regression makefile, allowing Windows users to force locale
      settings since Windows does not get its locale from the environment.
      
      Per Petr Jelinek.
      cad0e824
  5. Oct 29, 2005
  6. Oct 28, 2005
    • Tom Lane's avatar
      Reorder code so that we don't have to hold a critical section while · a0379262
      Tom Lane authored
      reserving SLRU space for a new MultiXact.  The original coding would have
      treated out-of-disk-space as a PANIC condition, which is unnecessary.
      a0379262
    • Tom Lane's avatar
      Clean up AIX build to avoid 'duplicate symbol' warnings, by moving use · a7de22d8
      Tom Lane authored
      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
    • Tom Lane's avatar
      Fix race condition in multixact code: it's possible to try to read a · 1986ca5c
      Tom Lane authored
      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
  7. Oct 27, 2005
  8. Oct 26, 2005
  9. Oct 25, 2005
  10. Oct 24, 2005
  11. Oct 22, 2005
  12. Oct 21, 2005
  13. Oct 20, 2005
Loading