diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-19 18:53:50 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-19 18:53:50 +0000 |
commit | 59a471fc4cbf980f627cbfb122ddeebb09b41343 (patch) | |
tree | 2fbc1270c2e6cdf3fa1d170a6f81863fe8e73d29 /doc/src | |
parent | 33b3c95200d21378e6bc5dc202cbbbf55e8e1b26 (diff) | |
download | postgresql-59a471fc4cbf980f627cbfb122ddeebb09b41343.tar.gz postgresql-59a471fc4cbf980f627cbfb122ddeebb09b41343.zip |
Make note that ALTER TABLE can change table owner these days.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/user-manag.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/user-manag.sgml b/doc/src/sgml/user-manag.sgml index 63517357ec3..2103122cfef 100644 --- a/doc/src/sgml/user-manag.sgml +++ b/doc/src/sgml/user-manag.sgml @@ -136,7 +136,8 @@ ALTER GROUP <replaceable>name</replaceable> DROP USER <replaceable>uname1</repla When a database object is created, it is assigned an owner. The owner is the user that executed the creation statement. There is currently no polished interface for changing the owner of a database - object. By default, only an owner (or a superuser) can do anything + object (except for tables, for which <command>ALTER TABLE</> can do it). + By default, only an owner (or a superuser) can do anything with the object. In order to allow other users to use it, <firstterm>privileges</firstterm> must be granted. </para> |