-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
privilege: add a session-level cache for global privileges #40451
Conversation
[REVIEW NOTIFICATION] This pull request has not been approved. To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
/retest-required |
if !exists { | ||
if e.ctx.GetSessionVars().SQLMode.HasNoAutoCreateUserMode() { | ||
return ErrCantCreateUserWithGrant | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a refactor of the code snippets. It is not related to this feature.
/cc bb7133 xiongjiwei xhebox |
/test unit-test |
60c3c55
to
13a1c3d
Compare
What problem does this PR solve?
Issue Number: close #39356
Problem Summary:
In MySQL, after revoking one global privilege from the current user, the user can grant it back to itself if only in the current session. TiDB is not compatible with this behavior.
What is changed and how it works?
Add a
RevokedGlobalPrivileges
inSessionVars
to cache the revoked global privileges.Check List
Tests
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.