1. 22 Jul, 2005 7 commits
  2. 21 Jul, 2005 9 commits
  3. 20 Jul, 2005 5 commits
  4. 19 Jul, 2005 1 commit
  5. 18 Jul, 2005 12 commits
  6. 17 Jul, 2005 1 commit
  7. 15 Jul, 2005 4 commits
  8. 14 Jul, 2005 1 commit
    • Tom Lane's avatar
      Adjust permissions checking for ALTER OWNER commands: instead of · aa111062
      Tom Lane authored
      requiring superuserness always, allow an owner to reassign ownership
      to any role he is a member of, if that role would have the right to
      create a similar object.  These three requirements essentially state
      that the would-be alterer has enough privilege to DROP the existing
      object and then re-CREATE it as the new role; so we might as well
      let him do it in one step.  The ALTER TABLESPACE case is a bit
      squirrely, but the whole concept of non-superuser tablespace owners
      is pretty dubious anyway.  Stephen Frost, code review by Tom Lane.
      aa111062