1. 03 11月, 2001 6 次提交
    • T
      Add default expressions to INSERTs during planning, not during parse · 9685afb0
      Tom Lane 提交于
      analysis.  This keeps stored rules from prematurely absorbing default
      information, which is necessary for ALTER TABLE SET DEFAULT to work
      unsurprisingly with rules.  See pgsql-bugs discussion 24-Oct-01.
      9685afb0
    • P
      updates · a9b6691a
      Peter Eisentraut 提交于
      a9b6691a
    • P
      Update keyword list for 7.2 release. · e25058bb
      Peter Eisentraut 提交于
      e25058bb
    • T
      Fix pg_pwd caching mechanism, which was broken by changes to fork · 8a069abd
      Tom Lane 提交于
      postmaster children before client auth step.  Postmaster now rereads
      pg_pwd on receipt of SIGHUP, the same way that pg_hba.conf is handled.
      No cycles need be expended to validate password cache validity during
      connection startup.
      8a069abd
    • T
      Suppress compiler warning (only seen in MULTIBYTE case). · 6babf6ea
      Tom Lane 提交于
      6babf6ea
    • 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
  2. 02 11月, 2001 4 次提交
  3. 01 11月, 2001 13 次提交
  4. 31 10月, 2001 16 次提交
  5. 30 10月, 2001 1 次提交