[chore](proto) make some required fields optional for compability (#20609)

This commit is contained in:
lihangyu
2023-06-09 08:51:01 +08:00
committed by GitHub
parent bd5a26f240
commit fa785f3b24

View File

@ -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 {