This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 06a599c733 fix restapi compile warning messages (#7299)
06a599c733 is described below

commit 06a599c7333baa1c727ae398783e0486c68e0234
Author: Haonan <[email protected]>
AuthorDate: Tue Sep 13 17:43:35 2022 +0800

    fix restapi compile warning messages (#7299)
---
 openapi/src/main/openapi3/iotdb-rest.yaml | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/openapi/src/main/openapi3/iotdb-rest.yaml 
b/openapi/src/main/openapi3/iotdb-rest.yaml
index 59e2e621fb..8bdb9dc4e5 100644
--- a/openapi/src/main/openapi3/iotdb-rest.yaml
+++ b/openapi/src/main/openapi3/iotdb-rest.yaml
@@ -174,7 +174,8 @@ components:
         sql:
           type: string
         rowLimit:
-          type: Integer
+          type: integer
+          format: int32
 
     InsertTabletRequest:
       title: InsertTabletRequest
@@ -183,7 +184,8 @@ components:
         timestamps:
           type: array
           items:
-            type: long
+            type: integer
+            format: int64
         measurements:
           type: array
           items:
@@ -208,6 +210,7 @@ components:
       properties:
         code:
           type: integer
+          format: int32
         message:
           type: string
 
@@ -225,7 +228,8 @@ components:
         timestamps:
           type: array
           items:
-            type: long
+            type: integer
+            format: int64
         values:
           type: array
           items:

Reply via email to