-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[fix](auth)Disable colauth #23295
[fix](auth)Disable colauth #23295
Conversation
run buildall |
run buildall |
(From new machine)TeamCity pipeline, clickbench performance test result: |
run buildall |
run buildall |
run p0 |
@@ -2112,6 +2112,11 @@ public class Config extends ConfigBase { | |||
"Whether to use mysql's bigint type to return Doris's largeint type"}) | |||
public static boolean use_mysql_bigint_for_largeint = false; | |||
|
|||
@ConfField(description = { |
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.
master_only=true
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.
LGTM
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
1 similar comment
PR approved by anyone and no changes requested. |
- add config `enable_col_auth` to temporarily disable column permissions(because old/new planner has bug when select from view) - Restore the old optimizer to the previous authentication method - Support for new optimizer authentication(Legacy issue: When querying the view, the permissions of the base table will be authenticated. The view's own permissions should be authenticated and processed after the new optimizer is improved) - fix: show grants for non-existent users - fix: role:`admin` can not grant/revoke to/from user
… the view (apache#31289) move UserAuthentication in BindRelation, support check authorization view but skip check in the view relate pr: apache#23295
Proposed changes
Issue Number: close #xxx
enable_col_auth
to temporarily disable column permissions(because old/new planner has bug when select from view)admin
can not grant/revoke to/from userFurther comments
If this is a relatively large or complex change, kick off the discussion at [email protected] by explaining why you chose the solution you did and what alternatives you considered, etc...