9aman commented on code in PR #16043: URL: https://github.com/apache/pinot/pull/16043#discussion_r2142848705
########## pinot-core/src/main/java/org/apache/pinot/core/auth/BasicAuthPrincipal.java: ########## @@ -31,14 +34,17 @@ public class BasicAuthPrincipal { private final Set<String> _tables; private final Set<String> _excludeTables; private final Set<String> _permissions; + //key: table name, val: list of RLS filters applicable for that table. + private final Map<String, List<String>> _rlsFilters; public BasicAuthPrincipal(String name, String token, Set<String> tables, Set<String> excludeTables, - Set<String> permissions) { + Set<String> permissions, Map<String, List<String>> rlsFilters) { Review Comment: Done -- 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...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org