This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0-beta in repository https://gitbox.apache.org/repos/asf/doris.git
commit 6df711bcbb4ee83702de383124899569aa1ea991 Author: lihangyu <15605149...@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-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org