Skip to content
Snippets Groups Projects
  1. Apr 24, 2002
    • Bruce Momjian's avatar
      Oops, wrong commit on previous. It was: · 19b31e07
      Bruce Momjian authored
      The attached patch allows views to have default values. You can't
      specify a default value within a CREATE VIEW statement, it must be
      done using ALTER TABLE ... ALTER COLUMN ... SET DEFAULT after the
      view has already been created. Most of the hard work was done by
      Tom Lane, I just patched pg_dump and updated the documentation.
      
      Neil Conway <neilconway@rogers.com>
      19b31e07
    • Bruce Momjian's avatar
      Appears I forgot to update the docs earlier. · 9fcc1159
      Bruce Momjian authored
      Please note I have no way to test this.  Docbook doesn't like my
      cygwin setup.
      
      --
      Rod Taylor
      9fcc1159
  2. Apr 23, 2002
  3. Apr 22, 2002
  4. Apr 21, 2002
  5. Apr 20, 2002
  6. Apr 19, 2002
    • Tom Lane's avatar
      pg_trigger's index on tgrelid is replaced by a unique index on · 20173716
      Tom Lane authored
      (tgrelid, tgname).  This provides an additional check on trigger name
      uniqueness per-table (which was already enforced by the code anyway).
      With this change, RelationBuildTriggers will read the triggers in
      order by tgname, since it's scanning using this index.  Since a
      predictable trigger ordering has been requested for some time, document
      this behavior as a feature.  Also document that rules fire in name
      order, since yesterday's changes to pg_rewrite indexing cause that too.
      20173716
  7. Apr 18, 2002
  8. Apr 17, 2002
Loading