tsungchih commented on code in PR #10877:
URL: https://github.com/apache/gravitino/pull/10877#discussion_r3169131969
##########
clients/client-python/gravitino/api/rel/types/json_serdes/base.py:
##########
@@ -25,13 +25,21 @@
from gravitino.api.rel.expressions.sorts.sort_order import SortOrder
from gravitino.api.rel.indexes.index import Index
from gravitino.api.rel.types.types import Type
+from gravitino.api.stats.statistic_value import StatisticValue
from gravitino.dto.rel.partitioning.partitioning import Partitioning
from gravitino.dto.rel.partitions.partition_dto import PartitionDTO
_GravitinoTypeT = TypeVar(
"_GravitinoTypeT",
bound=Union[
- Expression, Type, Partitioning, PartitionDTO, Distribution, Index,
SortOrder
+ Expression,
+ Type,
+ Partitioning,
+ PartitionDTO,
+ Distribution,
+ Index,
+ SortOrder,
+ StatisticValue,
],
Review Comment:
The suggested change is already there in the
[branch](https://github.com/tsungchih/gravitino/blob/49efeeac36e8a65d2e58010d673398ba9737b8a7/clients/client-python/gravitino/api/rel/types/json_serdes/base.py#L32-L44).
I have no idea where to address this comment.
--
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]