From fa785f3b2412acbd03dfef7c876601273cb08215 Mon Sep 17 00:00:00 2001 From: lihangyu <15605149486@163.com> Date: Fri, 9 Jun 2023 08:51:01 +0800 Subject: [PATCH] [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 {