Ownership grants are not generated for views
As of we only grant ownership for tables (assuming that we use wildcard like DB.SCHEMA.*) in snowflake_grants.py (https://gitlab.com/gitlab-data/permifrost/-/blob/master/src/permifrost/core/permissions/utils/snowflake_grants.py#L1509)
We are using SnowflakeConnector.show_tables() which runs SHOW TERSE TABLES IN SCHEMA which doesn't list views.
What are our options here? Do we need a separate views section under owns because if we explicitly specify a view we won't be able to know it if it is a table or a view as it is specified under owns->tables section.
Edited by VenkataJaswanth U