1. 09 Jan, 2002 9 commits
  2. 08 Jan, 2002 16 commits
  3. 07 Jan, 2002 5 commits
    • Bruce Momjian's avatar
      Update my2pg to version 1.22. · f88aa2d6
      Bruce Momjian authored
      f88aa2d6
    • Tom Lane's avatar
      Add variants of digest() and hmac() that accept text inputs. · 6d6b3e91
      Tom Lane authored
       Marko Kreen says:
      This is so obvious that I would like to make it 'official'.
      
      Seems like the theology around bytea<>text casting kept me from
      seeing the simple :)
      6d6b3e91
    • Tom Lane's avatar
      Tweak LWLock algorithms so that an awakened waiter for a lock is not · 5b9a0583
      Tom Lane authored
      granted the lock when awakened; the signal now only means that the lock
      is potentially available.  The waiting process must retry its attempt
      to get the lock when it gets to run.  This allows the lock releasing
      process to re-acquire the lock later in its timeslice.  Since LWLocks
      are usually held for short periods, it is possible for a process to
      acquire and release the same lock many times in a timeslice.  The old
      spinlock-based implementation of these locks allowed for that; but the
      original coding of LWLock would force a process swap for each acquisition
      if there was any contention.  Although this approach reopens the door to
      process starvation (a waiter might repeatedly fail to get the lock),
      the odds of that being a big problem seem low, and the performance cost
      of the previous approach is considerable.
      5b9a0583
    • Michael Meskes's avatar
    • Peter Eisentraut's avatar
      Editorial review · 731204e0
      Peter Eisentraut authored
      731204e0
  4. 06 Jan, 2002 5 commits
  5. 05 Jan, 2002 2 commits
  6. 04 Jan, 2002 3 commits
    • Bruce Momjian's avatar
      Re-order items: · 3ef4925f
      Bruce Momjian authored
      > * Consider use of open/fctl(O_DIRECT) to minimize OS caching
      > * Make blind writes go through the file descriptor cache
      391d392
      < * Make blind writes go through the file descriptor cache
      409d409
      < * Consider use of open/fctl(O_DIRECT) to minimize OS caching
      3ef4925f
    • Bruce Momjian's avatar
      Added: · 7a386721
      Bruce Momjian authored
      > * Consider use of open/fctl(O_DIRECT) to minimize OS caching
      7a386721
    • Bruce Momjian's avatar
      ecpg.sgml manual page updated to ON. · 99a33968
      Bruce Momjian authored
      ---------------------------------------------------------------------------
      
      When you run 'ecpg --help' you get the following:
      
                -t   turn on autocommit of transactions
      
      amongst the other options... Shouldn't this be OFF as per the
      documentation?
      
      Best regards, Lee.
      
      --
       Lee Kindness,   Senior Software Engineer,   lkindness@csl.co.uk
      99a33968