Revert [CP] Fix: affected row sync

This commit is contained in:
yaojing624
2023-11-22 03:15:17 +00:00
committed by ob-robot
parent 4531a5b37d
commit 2a89240728
10 changed files with 12 additions and 165 deletions

View File

@ -846,6 +846,10 @@ public:
transaction::ObTxClass get_trans_type() const { return trans_type_; }
void get_session_priv_info(share::schema::ObSessionPrivInfo &session_priv) const;
void set_found_rows(const int64_t count) { found_rows_ = count; }
int64_t get_found_rows() const { return found_rows_; }
void set_affected_rows(const int64_t count) { affected_rows_ = count; }
int64_t get_affected_rows() const { return affected_rows_; }
bool has_user_super_privilege() const;
bool has_user_process_privilege() const;
int check_read_only_privilege(const bool read_only,