Abyss-lord commented on code in PR #10670:
URL: https://github.com/apache/gravitino/pull/10670#discussion_r3049611751
##########
clients/client-python/gravitino/client/relational_table.py:
##########
@@ -213,3 +227,20 @@ def add_partition(self, partition: Partition) -> Partition:
)
partition_list_resp.validate()
return partition_list_resp.get_partitions()[0]
+
+ def list_tags(self) -> list[str]:
+ return self._object_tag_operations.list_tags()
+
+ def list_tags_info(self) -> list[Tag]:
+ return self._object_tag_operations.list_tags_info()
+
+ def get_tag(self, name: str) -> Tag:
+ return self._object_tag_operations.get_tag(name)
+
+ def associate_tags(
+ self, tags_to_add: list[str], tags_to_remove: list[str]
+ ) -> list[str]:
+ return self._object_tag_operations.associate_tags(tags_to_add,
tags_to_remove)
+
+ def table_full_name(self, table_ns: Namespace, table_name: str) -> str:
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]