1. 03 12月, 2005 2 次提交
  2. 02 12月, 2005 13 次提交
  3. 01 12月, 2005 4 次提交
  4. 30 11月, 2005 1 次提交
  5. 29 11月, 2005 11 次提交
  6. 28 11月, 2005 4 次提交
  7. 27 11月, 2005 3 次提交
  8. 26 11月, 2005 2 次提交
    • T
      Some marginal additional hacking to shave a few more cycles off · 4c4eb571
      Tom Lane 提交于
      heapgettup.
      4c4eb571
    • T
      Change seqscan logic so that we check visibility of all tuples on a page · 70f1482d
      Tom Lane 提交于
      when we first read the page, rather than checking them one at a time.
      This allows us to take and release the buffer content lock just once
      per page, instead of once per tuple.  Since it's a shared lock the
      contention penalty for holding the lock longer shouldn't be too bad.
      We can safely do this only when using an MVCC snapshot; else the
      assumption that visibility won't change over time is uncool.  Therefore
      there are now two code paths depending on the snapshot type.  I also
      made the same change in nodeBitmapHeapscan.c, where it can be done always
      because we only support MVCC snapshots for bitmap scans anyway.
      Also make some incidental cleanups in the APIs of these functions.
      Per a suggestion from Qingqing Zhou.
      70f1482d