jackye1995 commented on PR #10362: URL: https://github.com/apache/iceberg/pull/10362#issuecomment-2123261221
This allows an engine to distinguish if a view is a secure view, and act accordingly. As described in similar systems like https://docs.snowflake.com/en/user-guide/views-secure: > Some of the internal optimizations for views require access to the underlying data in the base tables for the view. This access might allow data that is hidden from users of the view to be exposed through user code, such as user-defined functions, or other programmatic methods. Secure views do not utilize these optimizations, ensuring that users have no access to the underlying data. And what we are saying here is, in between utilize the optimizations (open) and not utilize the optimizations (isolated), there is an intermediate state which is trying to only utilize optimizations that the engine considers as safe, which is the protected mode. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org