1. 27 Sep, 2003 14 commits
  2. 26 Sep, 2003 6 commits
  3. 25 Sep, 2003 8 commits
  4. 24 Sep, 2003 6 commits
  5. 23 Sep, 2003 6 commits
    • Tom Lane's avatar
      Issue CREATE SCHEMA as the originally connecting user, with an · a9e9abeb
      Tom Lane authored
      AUTHORIZATION clause to specify the desired owner.  This allows a
      superuser to restore schemas owned by users without CREATE-SCHEMA
      permissions (ie, schemas originally created by a superuser using
      AUTHORIZATION).  --no-owner can be specified to suppress the
      AUTHORIZATION clause if need be.
      a9e9abeb
    • Tom Lane's avatar
      pg_dump/pg_restore now always use SET SESSION AUTHORIZATION, not \connect, · 6767cebc
      Tom Lane authored
      to control object ownership.  The use-set-session-authorization and
      no-reconnect switches are obsolete (still accepted on the command line,
      but they don't do anything).  This is a precursor to fixing handling
      of CREATE SCHEMA, which will be a separate commit.
      6767cebc
    • Bruce Momjian's avatar
      Add: · 45de72b6
      Bruce Momjian authored
      > * Allow LISTEN/NOTIFY to store info in memory rather than tables
      45de72b6
    • Bruce Momjian's avatar
      Add: · eed6ff45
      Bruce Momjian authored
      * Allow major upgrades without dump/reload, perhaps using pg_upgrade
      eed6ff45
    • Tom Lane's avatar
      Minor copy-editing for plpgsql chapter. · aefc08e4
      Tom Lane authored
      aefc08e4
    • Tom Lane's avatar
      Tweak generic_type_consistency routines to avoid loss of functionality · dbf8259a
      Tom Lane authored
      since 7.3: 'select array_dims(histogram_bounds) from pg_stats' used to
      work and still should.  Problem was that code wouldn't take input of
      declared type anyarray as matching an anyarray argument.  Allow this
      case as long as we don't need to determine an element type (which in
      practice means as long as anyelement isn't used in the function signature).
      dbf8259a