Fix remote execution error 4016

This commit is contained in:
obdev
2022-12-06 07:40:12 +00:00
committed by ob-robot
parent 196359d85f
commit e01e420726
7 changed files with 22 additions and 5 deletions

View File

@ -53,6 +53,7 @@ struct ObRemoteSqlInfo
ObRemoteSqlInfo() :
use_ps_(false),
is_batched_stmt_(false),
is_original_ps_mode_(false),
ps_param_cnt_(0),
remote_sql_(),
ps_params_(nullptr)
@ -63,6 +64,7 @@ struct ObRemoteSqlInfo
bool use_ps_;
bool is_batched_stmt_;
bool is_original_ps_mode_;
int32_t ps_param_cnt_;
common::ObString remote_sql_;
ParamStore *ps_params_;