add trans_result in ObDirectLoadControlCommitRes

This commit is contained in:
coolfishchen 2024-04-20 15:15:24 +00:00 committed by ob-robot
parent d9824868ff
commit 3dd0008dc9
2 changed files with 4 additions and 1 deletions

View File

@ -193,7 +193,8 @@ OB_SERIALIZE_MEMBER(ObDirectLoadControlCommitArg,
OB_SERIALIZE_MEMBER(ObDirectLoadControlCommitRes,
result_info_,
sql_statistics_);
sql_statistics_,
trans_result_);
// abort
OB_SERIALIZE_MEMBER(ObDirectLoadControlAbortArg,

View File

@ -22,6 +22,7 @@
#include "sql/session/ob_sql_session_mgr.h"
#include "observer/table_load/ob_table_load_struct.h"
#include "storage/direct_load/ob_direct_load_struct.h"
#include "storage/tx/ob_trans_define_v4.h"
namespace oceanbase
{
@ -254,6 +255,7 @@ public:
public:
table::ObTableLoadResultInfo result_info_;
table::ObTableLoadSqlStatistics sql_statistics_;
transaction::ObTxExecResult trans_result_;
};
class ObDirectLoadControlAbortArg final