1. 02 Feb, 2009 2 commits
  2. 30 Jan, 2009 5 commits
  3. 29 Jan, 2009 4 commits
  4. 28 Jan, 2009 4 commits
  5. 27 Jan, 2009 3 commits
  6. 26 Jan, 2009 2 commits
  7. 23 Jan, 2009 4 commits
  8. 22 Jan, 2009 6 commits
  9. 21 Jan, 2009 6 commits
  10. 20 Jan, 2009 4 commits
    • Heikki Linnakangas's avatar
      Add a new option to RestoreBkpBlocks() to indicate if a cleanup lock should · b2a667b9
      Heikki Linnakangas authored
      be used instead of the normal exclusive lock, and make WAL redo functions
      responsible for calling RestoreBkpBlocks(). They know better what kind of a
      lock they need.
      
      At the moment, this just moves things around with no functional change, but
      makes the hot standby patch that's under review cleaner.
      b2a667b9
    • Peter Eisentraut's avatar
    • Peter Eisentraut's avatar
      Revise the permission checking on user mapping DDL commands. · 93a6be63
      Peter Eisentraut authored
      CREATE/ALTER/DROP USER MAPPING are now allowed either by the server owner or
      by a user with USAGE privileges for his own user name.  This is more or less
      what the SQL standard wants anyway (plus "implementation-defined")
      
      Hide information_schema.user_mapping_options.option_value, unless the current
      user is the one associated with the user mapping, or is the server owner and
      the mapping is for PUBLIC, or is a superuser.  This is to protect passwords.
      
      Also, fix a bug in information_schema._pg_foreign_servers, which hid servers
      using wrappers where the current user did not have privileges on the wrapper.
      The correct behavior is to hide servers where the current user has no
      privileges on the server.
      93a6be63
    • Bruce Momjian's avatar
      Update \d*S documentation to be more accurate; system objects are added · fe626982
      Bruce Momjian authored
      to the display, not restricted in the display; new text:
      
              The letter <literal>S</literal> adds the listing of system
              objects; without <literal>S</literal>, only non-system
              objects are shown.
      fe626982