[CP] fix tmp table core

This commit is contained in:
SevenJ-swj
2023-07-21 03:12:47 +00:00
committed by ob-robot
parent f47b3587de
commit c5deec2236
3 changed files with 33 additions and 3 deletions

View File

@ -2119,6 +2119,8 @@ public:
ObDropTableArg(const ObDropTableArg &other) = delete;
virtual ~ObDropTableArg() { tables_.reset(); }
virtual bool is_allow_when_upgrade() const { return true; }
int assign(const ObDropTableArg& other);
DECLARE_TO_STRING;
uint64_t tenant_id_;
@ -2132,6 +2134,7 @@ public:
bool is_add_to_scheduler_;
bool force_drop_;
lib::Worker::CompatMode compat_mode_;
common::ObArenaAllocator allocator_;
};
struct ObOptimizeTableArg : public ObDDLArg