We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f798f4a commit ff54497Copy full SHA for ff54497
odps/models/partition.py
@@ -49,6 +49,7 @@ class Partition(LazyLoad):
49
"last_meta_modified_time",
50
"last_data_modified_time",
51
"size",
52
+ "record_num",
53
"_is_extend_info_loaded",
54
)
55
__slots__ += _extended_args
@@ -73,6 +74,9 @@ class PartitionMeta(JSONRemoteModel):
73
74
size = serializers.JSONNodeField(
75
"partitionSize", parse_callback=int, set_to_parent=True
76
77
+ record_num = serializers.JSONNodeField(
78
+ "partitionRecordNum", parse_callback=int, set_to_parent=True
79
+ )
80
81
class PartitionExtendedMeta(PartitionMeta):
82
is_archived = serializers.JSONNodeField(
0 commit comments