1. 20 12月, 2004 4 次提交
  2. 19 12月, 2004 6 次提交
  3. 18 12月, 2004 5 次提交
  4. 17 12月, 2004 11 次提交
  5. 16 12月, 2004 10 次提交
  6. 15 12月, 2004 4 次提交
    • B
      Update IRC mention. · e61648d8
      Bruce Momjian 提交于
      e61648d8
    • T
      In 'make installcheck' for contrib/, insert 'sleep 1' between subdirectory · f6a1a8e2
      Tom Lane 提交于
      checks, to ensure the previous test backend has time to quit out of the
      regression database.  Also, allow all the checks to be run even if one
      of them fails.  Per suggestions from Andrew Dunstan to improve the
      usefulness of buildfarm testing.
      f6a1a8e2
    • T
      Cope with circularities involving a view's ON SELECT rule. I originally · 86a069bb
      Tom Lane 提交于
      thought there couldn't be any, but the folly of this was exposed by an
      example from andrew@supernews.com 5-Dec-2004.  The patch applies the
      identical logic already used for table constraints and defaults to ON
      SELECT rules, so I have reasonable confidence in it even though it might
      look like complicated logic.
      86a069bb
    • T
      Fix pg_dump to ensure that a comment on a table CHECK constraint cannot · 94e46706
      Tom Lane 提交于
      be emitted too soon.  The previous code got this right in the case where
      the CHECK was emitted as a separate ALTER TABLE command, but not in the
      case where the CHECK is emitted right in CREATE TABLE.  Per report from
      Slawomir Sudnik.
      
      Note: this code is pretty ugly; it'd perhaps be better to treat comments
      as independently sortable dump objects.  That'd be much too invasive a
      change for RC time though.
      94e46706