Commands
DROP USER
Use the DROP USER command to remove a user from RisingWave.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use the DROP USER command to remove a user from RisingWave.
DROP USER [ IF EXISTS ] user_name [ , ... ];
| Parameter | Description |
|---|---|
| IF EXISTS | Do not return an error if the specified user does not exist. |
| user_name | The user you want to drop. - You cannot drop the current user; - To drop a superuser (user with the SUPERUSER privilege), you must be a superuser yourself; - To drop a non-superuser, you must have the CREATEUSER privilege. - The rwadmin user cannot be dropped as it is reserved for cloud control plane operations. |
DROP USER user1;
Was this page helpful?