add part_name_ placeholder in master

This commit is contained in:
medcll
2024-10-16 21:47:20 +00:00
committed by ob-robot
parent 0546a585e2
commit 35d0552c3b
2 changed files with 5 additions and 2 deletions

View File

@ -30,7 +30,8 @@ OB_SERIALIZE_MEMBER_SIMPLE(ObTableDirectLoadBeginArg,
force_create_, force_create_,
is_async_, is_async_,
load_method_, load_method_,
column_names_); column_names_,
part_names_);
OB_SERIALIZE_MEMBER_SIMPLE(ObTableDirectLoadBeginRes, OB_SERIALIZE_MEMBER_SIMPLE(ObTableDirectLoadBeginRes,
table_id_, table_id_,

View File

@ -45,7 +45,8 @@ public:
K_(force_create), K_(force_create),
K_(is_async), K_(is_async),
K_(load_method), K_(load_method),
K_(column_names)); K_(column_names),
K_(part_names));
public: public:
ObString table_name_; ObString table_name_;
int64_t parallel_; int64_t parallel_;
@ -57,6 +58,7 @@ public:
bool is_async_; bool is_async_;
ObString load_method_; ObString load_method_;
common::ObSArray<ObString> column_names_; common::ObSArray<ObString> column_names_;
common::ObSArray<ObString> part_names_;
}; };
struct ObTableDirectLoadBeginRes struct ObTableDirectLoadBeginRes