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

kxiao pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git

commit fe97a17025c9368e43fdf48808aa55365fc6c44e
Author: bobhan1 <[email protected]>
AuthorDate: Mon Oct 23 14:39:54 2023 +0800

    [Fix](partial update) Fix wrong comment in .proto file (#25742)
    
    1. remove deprecated comment on fields that is wrongly added in #25147. 
These fields will be used when coordinator BE send infos to executor BEs. They 
will only be used during RPC and will not be persisted.
    2. eliminate some unnecessary copys.
---
 gensrc/proto/descriptors.proto | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gensrc/proto/descriptors.proto b/gensrc/proto/descriptors.proto
index 97c2e6d9935..65a001e0ba0 100644
--- a/gensrc/proto/descriptors.proto
+++ b/gensrc/proto/descriptors.proto
@@ -63,7 +63,7 @@ message POlapTableSchemaParam {
     repeated PSlotDescriptor slot_descs = 4;
     required PTupleDescriptor tuple_desc = 5;
     repeated POlapTableIndexSchema indexes = 6;
-    optional bool partial_update = 7;
+    optional bool partial_update = 7 [default = false];
     repeated string partial_update_input_columns = 8;
     optional bool is_strict_mode = 9 [default = false];
 };


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to