Abyss-lord commented on code in PR #11026:
URL: https://github.com/apache/gravitino/pull/11026#discussion_r3223430691
##########
clients/client-python/gravitino/api/metadata_object.py:
##########
@@ -56,6 +56,9 @@ class Type(Enum):
MySQL, etc.
"""
+ VIEW = "view"
+ """A view is mapped to the view of relational data sources like Apache
Hive, MySQL, etc."""
+
Review Comment:
fix
##########
clients/client-python/gravitino/api/authorization/privileges.py:
##########
@@ -169,6 +171,21 @@ class Name(Enum):
RUN_JOB = (0, 1 << 27)
"""The privilege to run a job."""
+ CREATE_VIEW = (0, 1 << 28)
+ """The privilege to create a view."""
+
+ SELECT_VIEW = (0, 1 << 29)
+ """The privilege to select data from a view."""
Review Comment:
fix
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]