[FEAT MERGE] implement mysql dblink and read consistency
Co-authored-by: xianyu-w <707512433@qq.com> Co-authored-by: sdc <njucssdc@gmail.com> Co-authored-by: seuwebber <webber_code@163.com>
This commit is contained in:
@ -465,6 +465,7 @@ public:
|
||||
ObTableDirectInsertCtx &get_table_direct_insert_ctx() { return table_direct_insert_ctx_; }
|
||||
void set_errcode(const int errcode) { ATOMIC_STORE(&errcode_, errcode); }
|
||||
int get_errcode() const { return ATOMIC_LOAD(&errcode_); }
|
||||
hash::ObHashMap<uint64_t, void*> &get_dblink_snapshot_map() { return dblink_snapshot_map_; }
|
||||
ObExecFeedbackInfo &get_feedback_info() { return fb_info_; };
|
||||
private:
|
||||
int build_temp_expr_ctx(const ObTempExpr &temp_expr, ObTempExprCtx *&temp_expr_ctx);
|
||||
@ -640,6 +641,7 @@ protected:
|
||||
ObTableDirectInsertCtx table_direct_insert_ctx_;
|
||||
// for deadlock detect, set in do_close_plan
|
||||
int errcode_;
|
||||
hash::ObHashMap<uint64_t, void*> dblink_snapshot_map_;
|
||||
// for feedback
|
||||
ObExecFeedbackInfo fb_info_;
|
||||
//---------------
|
||||
|
||||
Reference in New Issue
Block a user