xunliu commented on code in PR #5964: URL: https://github.com/apache/gravitino/pull/5964#discussion_r1897200025
########## clients/client-python/gravitino/api/expressions/partitions/list_partition.py: ########## @@ -0,0 +1,46 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +from abc import abstractmethod +from typing import List, Any +from .partition import Partition + +class ListPartition(Partition): + """ + A list partition represents a result of list partitioning. For example, for list partition + + ``` + PARTITION p202204_California VALUES IN ( + ("2022-04-01", "Los Angeles"), + ("2022-04-01", "San Francisco") + ) + ``` + + its name is "p202204_California" and lists are [["2022-04-01","Los Angeles"], ["2022-04-01", "San Francisco"]]. + + This class is evolving and may change in future versions. + """ + + @abstractmethod + def lists(self) -> List[List[Any]]: Review Comment: We can use `Literal`, This line code may be like this? ``` def lists(self) -> List[List[Literal]]: ``` ########## clients/client-python/gravitino/api/expressions/partitions/identity_partition.py: ########## @@ -0,0 +1,56 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +from abc import abstractmethod +from typing import List, Any +from .partition import Partition + +class IdentityPartition(Partition): + """ + An identity partition represents a result of identity partitioning. For example, for Hive + partition + + ``` + PARTITION (dt='2008-08-08',country='us') + ``` + + its partition name is "dt=2008-08-08/country=us", field names are [["dt"], ["country"]] and + values are ["2008-08-08", "us"]. + + This class is evolving and may change in future versions. + """ + + @abstractmethod + def field_names(self) -> List[List[str]]: + """ + Returns the field names of the identity partition. + + Returns: + List[List[str]]: A list of lists representing the field names of the identity partition. + """ + pass + + @abstractmethod + def values(self) -> List[Any]: Review Comment: I think we need to use `clients/client-python/gravitino/api/expressions/literals/literal.py`, maybe like this? ``` class IdentityPartition(Partition): @abstractmethod def field_names(self) -> List[List[str]]: pass @abstractmethod def values(self) -> List[Literal]: pass ``` -- 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...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org