jerryshao commented on code in PR #8711:
URL: https://github.com/apache/gravitino/pull/8711#discussion_r2387016101


##########
docs/open-api/statistics.yaml:
##########
@@ -379,6 +390,74 @@ components:
               additionalProperties: {}
               description: The statistics to update for the partition
 
+    PartitionRange:
+        type: object
+        properties:
+            lowerPartitionName:
+              type: string
+              description: The lower partition name
+            upperPartitionName:
+              type: string
+              description: The upper partition name
+            lowerBoundType:
+              type: string
+              description: lower bound type
+              enum:
+                - "CLOSED"
+                - "OPEN"
+            upperBoundType:
+              type: string
+              description: upper bound type
+              enum:
+                - "CLOSED"
+                - "OPEN"
+
+    PartitionStatistics:
+        type: object
+        required:
+            - partitionName
+            - statistics
+        properties:
+            partitionName:
+              type: string
+              description: The name of the partition
+            statistics:
+              type: array
+              items:
+                $ref: "#/components/schemas/Statistic"
+
+    Statistic:
+        type: object

Review Comment:
   Here, it still has 4-space indentation.



-- 
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]

Reply via email to