You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ha...@apache.org on 2021/08/15 08:40:07 UTC

[skywalking] 02/02: Update proto

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

hanahmily pushed a commit to branch banyandb-proto
in repository https://gitbox.apache.org/repos/asf/skywalking.git

commit 33528e8b5324183ef7db0fc3a434970a6c9b7b8c
Author: Gao Hongtao <ha...@gmail.com>
AuthorDate: Sun Aug 15 16:35:47 2021 +0800

    Update proto
    
    Signed-off-by: Gao Hongtao <ha...@gmail.com>
---
 .../src/main/proto/banyandb/v1/banyandb.proto                    | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/oap-server/banyandb-java-client/src/main/proto/banyandb/v1/banyandb.proto b/oap-server/banyandb-java-client/src/main/proto/banyandb/v1/banyandb.proto
index 0a0c97e..6a613d9 100644
--- a/oap-server/banyandb-java-client/src/main/proto/banyandb/v1/banyandb.proto
+++ b/oap-server/banyandb-java-client/src/main/proto/banyandb/v1/banyandb.proto
@@ -33,10 +33,11 @@ message Metadata {
 }
 
 enum FieldType {
-  FIELD_TYPE_STRING = 0;
-  FIELD_TYPE_INT = 1;
-  FIELD_TYPE_STRING_ARRAY = 2;
-  FIELD_TYPE_INT_ARRAY = 3;
+  FIELD_TYPE_UNSPECIFIED=0;
+  FIELD_TYPE_STRING = 1;
+  FIELD_TYPE_INT = 2;
+  FIELD_TYPE_STRING_ARRAY = 3;
+  FIELD_TYPE_INT_ARRAY = 4;
 }
 
 // Pair is the building block of a record which is equivalent to a key-value pair.