1. 16 May, 2008 6 commits
  2. 15 May, 2008 3 commits
  3. 14 May, 2008 6 commits
  4. 13 May, 2008 5 commits
  5. 12 May, 2008 10 commits
  6. 10 May, 2008 8 commits
  7. 09 May, 2008 2 commits
    • Tom Lane's avatar
      Change the rules for inherited CHECK constraints to be essentially the same · cd902b33
      Tom Lane authored
      as those for inherited columns; that is, it's no longer allowed for a child
      table to not have a check constraint matching one that exists on a parent.
      This satisfies the principle of least surprise (rows selected from the parent
      will always appear to meet its check constraints) and eliminates some
      longstanding bogosity in pg_dump, which formerly had to guess about whether
      check constraints were really inherited or not.
      
      The implementation involves adding conislocal and coninhcount columns to
      pg_constraint (paralleling attislocal and attinhcount in pg_attribute)
      and refactoring various ALTER TABLE actions to be more like those for
      columns.
      
      Alex Hunsaker, Nikhil Sontakke, Tom Lane
      cd902b33
    • Bruce Momjian's avatar
      f8df836a