TsukiokaKogane commented on code in PR #60557:
URL: https://github.com/apache/doris/pull/60557#discussion_r2780986906
##########
gensrc/thrift/FrontendService.thrift:
##########
@@ -1662,13 +1662,178 @@ struct TGetOlapTableMetaRequest {
5: required i64 table_id
6: optional i32 version // todo serialize according to the version
7: optional list<TPartitionMeta> partitions // client owned partition meta
+ 8: optional list<TPartitionMeta> temp_partitions // client owned partition
meta
}
struct TGetOlapTableMetaResult {
1: required Status.TStatus status
2: required binary table_meta
3: optional list<binary> updated_partitions
4: optional list<i64> removed_partitions
+ 5: optional list<binary> updated_temp_partitions
+ 6: optional list<i64> removed_temp_partitions
+}
+
+// Remote transaction request and Result definitions for cross-cluster export.
+// These structs are used by beginRemoteTxn/commitRemoteTxn/abortRemoteTxn
RPCs.
+struct TBeginRemoteTxnRequest {
+ 1: required string user
+ 2: required string passwd
+ 3: optional string token
+ 4: required string db
Review Comment:
fixed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]