format outline place holder
This commit is contained in:
parent
6622563bb2
commit
8641152e4e
@ -6102,15 +6102,16 @@ struct ObDropOutlineArg : public ObDDLArg
|
||||
{
|
||||
OB_UNIS_VERSION(1);
|
||||
public:
|
||||
ObDropOutlineArg(): ObDDLArg(), tenant_id_(common::OB_INVALID_ID), db_name_(), outline_name_() {}
|
||||
ObDropOutlineArg(): ObDDLArg(), tenant_id_(common::OB_INVALID_ID), db_name_(), outline_name_(), is_format_(false) {}
|
||||
virtual ~ObDropOutlineArg() {}
|
||||
bool is_valid() const;
|
||||
virtual bool is_allow_when_upgrade() const { return true; }
|
||||
TO_STRING_KV(K_(tenant_id), K_(db_name), K_(outline_name));
|
||||
TO_STRING_KV(K_(tenant_id), K_(db_name), K_(outline_name), K_(is_format));
|
||||
|
||||
uint64_t tenant_id_;
|
||||
common::ObString db_name_;
|
||||
common::ObString outline_name_;
|
||||
bool is_format_;
|
||||
};
|
||||
|
||||
struct ObCreateDbLinkArg : public ObDDLArg
|
||||
|
@ -10240,6 +10240,8 @@ int64_t ObOutlineInfo::get_convert_size() const
|
||||
convert_size += sql_id_.length() + 1;
|
||||
convert_size += outline_content_.length() + 1;
|
||||
convert_size += sql_text_.length() + 1;
|
||||
convert_size += format_sql_text_.length() + 1;
|
||||
convert_size += format_sql_id_.length() + 1;
|
||||
convert_size += outline_target_.length() + 1;
|
||||
convert_size += owner_.length() + 1;
|
||||
convert_size += version_.length() + 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user