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

[skywalking] branch banyandb-integration updated: Banyandb proto (#7462)

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

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


The following commit(s) were added to refs/heads/banyandb-integration by this push:
     new a546881  Banyandb proto (#7462)
a546881 is described below

commit a546881cd683f2d1023950e7ff9f98bc91717b84
Author: Gao Hongtao <ha...@gmail.com>
AuthorDate: Sun Aug 15 17:10:48 2021 +0800

    Banyandb proto (#7462)
---
 .../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..8251db5 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.