You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by yi...@apache.org on 2023/06/09 00:51:09 UTC

[doris] branch master updated: [chore](proto) make some `required` fields `optional` for compability (#20609)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new fa785f3b24 [chore](proto) make some `required` fields `optional` for compability (#20609)
fa785f3b24 is described below

commit fa785f3b2412acbd03dfef7c876601273cb08215
Author: lihangyu <15...@163.com>
AuthorDate: Fri Jun 9 08:51:01 2023 +0800

    [chore](proto) make some `required` fields `optional` for compability (#20609)
---
 gensrc/proto/descriptors.proto | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gensrc/proto/descriptors.proto b/gensrc/proto/descriptors.proto
index ff8c946124..7866c3d88f 100644
--- a/gensrc/proto/descriptors.proto
+++ b/gensrc/proto/descriptors.proto
@@ -33,9 +33,9 @@ message PSlotDescriptor {
     required int32 null_indicator_bit = 7;
     required string col_name = 8;
     required int32 slot_idx = 9;
-    required bool is_materialized = 10;
-    required int32 col_unique_id = 11;
-    required bool is_key = 12;
+    optional bool is_materialized = 10;
+    optional int32 col_unique_id = 11;
+    optional bool is_key = 12;
 };
 
 message PTupleDescriptor {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org