diff --git a/apis/proto/v1/payload/payload.proto b/apis/proto/v1/payload/payload.proto index af3638e8236..68f995684c0 100644 --- a/apis/proto/v1/payload/payload.proto +++ b/apis/proto/v1/payload/payload.proto @@ -233,6 +233,8 @@ message Update { // A flag to disable balanced update (split remove -> insert operation) // during update operation. bool disable_balanced_update = 4; + // A flag to enable timestamp update when the same index exists. + bool update_timestamp_if_exists = 5; } } @@ -279,6 +281,8 @@ message Upsert { // A flag to disable balanced update (split remove -> insert operation) // during update operation. bool disable_balanced_update = 4; + // A flag to enable timestamp update when the same index exists. + bool update_timestamp_if_exists = 5; } }