1. 19 2月, 2006 1 次提交
  2. 27 1月, 2005 1 次提交
  3. 25 9月, 2003 1 次提交
  4. 21 7月, 2003 1 次提交
  5. 14 5月, 2003 1 次提交
  6. 12 11月, 2002 1 次提交
    • T
      Code review for ON COMMIT patch. Make the actual on-commit action happen · f9b5b41e
      Tom Lane 提交于
      before commit, not after :-( --- the original coding is not only unsafe
      if an error occurs while it's processing, but it generates an invalid
      sequence of WAL entries.  Resurrect 7.2 logic for deleting items when
      no longer needed.  Use an enum instead of random macros.  Editorialize
      on names used for routines and constants.  Teach backend/nodes routines
      about new field in CreateTable struct.  Add a regression test.
      f9b5b41e
  7. 19 10月, 2002 1 次提交
  8. 03 11月, 2001 1 次提交
    • T
      Fix problem reported by Alex Korn: if a relation has been dropped and · 7d053108
      Tom Lane 提交于
      recreated since the start of our transaction, our first reference to it
      errored out because we'd try to reuse our old relcache entry for it.
      Do this by accepting SI inval messages just before relcache search in
      heap_openr, so that dead relcache entries will be flushed before we
      search.  Also, break heap_open/openr into two pairs of routines,
      relation_open(r) and heap_open(r).  The relation_open routines make
      no tests on relkind and so can be used to open anything that has a
      pg_class entry.  The heap_open routines are wrappers that add a relkind
      test to preserve their established behavior.  Use the relation_open
      routines in several places that had various kluge solutions for opening
      rels that might be either heap or index rels.
      
      Also, remove the old 'heap stats' code that's been superseded by Jan's
      stats collector, and clean up some inconsistencies in error reporting
      between the different types of ALTER TABLE.
      7d053108
  9. 09 1月, 2000 1 次提交
  10. 19 9月, 1999 1 次提交
  11. 02 2月, 1999 1 次提交