1. 03 Jun, 2005 5 commits
  2. 02 Jun, 2005 8 commits
  3. 01 Jun, 2005 3 commits
  4. 31 May, 2005 6 commits
  5. 30 May, 2005 16 commits
  6. 29 May, 2005 2 commits
    • Tom Lane's avatar
      Avoid unnecessary fetch from pg_shadow in the normal case in · 03a542ba
      Tom Lane authored
      pg_class_aclmask().  We only need to do this when we have to check
      pg_shadow.usecatupd, and that's not relevant unless the target table
      is a system catalog.  So we can usually avoid one syscache lookup.
      03a542ba
    • Tom Lane's avatar
      Improve LockAcquire API per my recent proposal. All error conditions · 140b078d
      Tom Lane authored
      are now reported via elog, eliminating the need to test the result code
      at most call sites.  Make it possible for the caller to distinguish a
      freshly acquired lock from one already held in the current transaction.
      Use that capability to avoid redundant AcceptInvalidationMessages() calls
      in LockRelation().
      140b078d