Remove cmake warning configuration (August)

This commit is contained in:
LINxiansheng
2021-08-30 15:49:44 +08:00
committed by wangzelin.wzl
parent 0d7efce19a
commit a6a56e21f4
143 changed files with 636 additions and 621 deletions

View File

@ -32,7 +32,7 @@ public:
int add_table_item(const obrpc::ObTableItem& table_item);
void set_tablegroup_name(const common::ObString& tablegroup_name);
obrpc::ObAlterTablegroupArg& get_alter_tablegroup_arg();
virtual obrpc::ObDDLArg& get_ddl_arg()
virtual obrpc::ObDDLArg& get_ddl_arg() override
{
return alter_tablegroup_arg_;
}

View File

@ -41,7 +41,7 @@ public:
explicit ObCreateTableResolver(ObResolverParams& params);
virtual ~ObCreateTableResolver();
virtual int resolve(const ParseNode& parse_tree);
virtual int resolve(const ParseNode& parse_tree) override;
private:
enum ResolveRule { RESOLVE_ALL = 0, RESOLVE_COL_ONLY, RESOLVE_NON_COL };

View File

@ -33,7 +33,7 @@ public:
virtual int set_primary_zone(const common::ObString& zone) override;
virtual int set_locality(const common::ObString& locality) override;
obrpc::ObCreateTablegroupArg& get_create_tablegroup_arg();
virtual obrpc::ObDDLArg& get_ddl_arg()
virtual obrpc::ObDDLArg& get_ddl_arg() override
{
return create_tablegroup_arg_;
}