1. 03 Jun, 1999 15 commits
  2. 02 Jun, 1999 2 commits
  3. 01 Jun, 1999 4 commits
  4. 31 May, 1999 7 commits
  5. 30 May, 1999 4 commits
  6. 29 May, 1999 7 commits
  7. 28 May, 1999 1 commit
    • Tom Lane's avatar
      Repair performance problem in SI segment manipulations: iterating · dc6d4049
      Tom Lane authored
      through MAXBACKENDS array entries used to be fine when MAXBACKENDS = 64.
      It's not so cool with MAXBACKENDS = 1024 (or more!), especially not in a
      frequently-used routine like SIDelExpiredDataEntries.  Repair by making
      procState array size be the soft MaxBackends limit rather than the hard
      limit, and by converting SIGetProcStateLimit() to a macro.
      dc6d4049