Mohan
10/07/2025, 7:44 PMMohan
10/09/2025, 3:38 AMRobert Raharjo
10/10/2025, 10:08 PMMohan
10/12/2025, 6:42 PMdemo is one tenant and it should have access to only demo_events,demo tables and demo views, similarly for all different tenants I have same policies, but with demo user I can able to read views directly from other databases but If I run show databases/show tables in otherdb, I can't see any tables/views. If I run select * from <othertenantdb>.<view>, it is showing data but same query on table of othertenantdb, it is denying like
select * from <othertenantdb>.<table> - access denied
May I know if something wrong here or policies can't be applied to starrocks views?Mohan
10/13/2025, 7:26 PMMohan
10/14/2025, 9:41 PMMohan
10/25/2025, 11:51 AMGiorgi Chitashvili
02/16/2026, 10:23 AMGiorgi Chitashvili
02/16/2026, 10:25 AMColumnPrivilege.java). When access_control = ranger is enabled, the authorization check for views is completely skipped. The code only performs column-level checks via the query optimizer, but views are not physical scan operators, so the column set comes back empty and no privilege check runs at all. The proper checkViewAction() call only exists in the native RBAC branch and is never reached when Ranger is active.
https://github.com/StarRocks/starrocks/blob/branch-3.5/fe/fe-core/src/main/java/com/starrocks/authorization/ColumnPrivilege.javaMohan
02/17/2026, 2:35 PMGiorgi Chitashvili
02/18/2026, 5:58 AM