morningman commented on code in PR #17915: URL: https://github.com/apache/doris/pull/17915#discussion_r1140904368
########## fe/fe-core/src/main/java/org/apache/doris/mysql/privilege/Auth.java: ########## @@ -317,6 +320,12 @@ public boolean checkTblPriv(UserIdentity currentUser, String ctl, String db, Str public void checkColsPriv(UserIdentity currentUser, String ctl, String db, String tbl, Set<String> cols, PrivPredicate wanted) throws AuthorizationException { // TODO: Support column priv + // we check if have tbl priv,until internal support col auth. + if (!checkTblPriv(currentUser, ctl, db, tbl, wanted)) { Review Comment: Need to update the case: `account_p0.test_nereids_authentication` See: http://43.132.222.7:8111/buildConfiguration/Doris_DorisRegression_P0Regression/116156?hideProblemsFromDependencies=false&hideTestsFromDependencies=false&expandPull+Request+Details=true&expandBuildProblemsSection=true&expandBuildTestsSection=true -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org