You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
an user can set up a default role with the statement:
ALTER USER ... WITH DEFAULT_ROLE = '<role>';
also the default role can be viewed in the SHOW USERS statement.
on setting a default role, the role MUST be one of the roles the user has been granted.
on an user connecting to databend-query, she'd get set the default role to the current role in the session (with a check about whether the user still has the role).
on revoking an role from the user, if the role is set as default role, the default role would be reset to None.
The text was updated successfully, but these errors were encountered:
Summary
an user can set up a default role with the statement:
also the
default role
can be viewed in theSHOW USERS
statement.on setting a default role, the role MUST be one of the roles the user has been granted.
on an user connecting to databend-query, she'd get set the default role to the current role in the session (with a check about whether the user still has the role).
on revoking an role from the user, if the role is set as default role, the default role would be reset to None.
The text was updated successfully, but these errors were encountered: