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

@ -246,7 +246,7 @@ protected:
int calculate_table_location(uint64_t loc_table_id, uint64_t ref_table_id, const ObPartHint* part_hint,
ObTablePartitionInfo& table_partition_info);
int alloc_partition_id_expr(ObAllocExprContext& ctx);
virtual int allocate_expr_post(ObAllocExprContext &ctx);
virtual int allocate_expr_post(ObAllocExprContext &ctx) override;
int alloc_shadow_pk_column_for_gui(ObAllocExprContext& ctx);
virtual int need_multi_table_dml(AllocExchContext& ctx, ObShardingInfo& sharding_info, bool& is_needed);
int check_multi_table_dml_for_px(AllocExchContext& ctx, ObShardingInfo* source_sharding,

View File

@ -88,8 +88,8 @@ public:
return has_union_child_;
}
virtual int est_cost() override;
virtual int allocate_granule_pre(AllocGIContext &ctx);
virtual int allocate_granule_post(AllocGIContext &ctx);
virtual int allocate_granule_pre(AllocGIContext &ctx) override;
virtual int allocate_granule_post(AllocGIContext &ctx) override;
virtual int allocate_exchange_post(AllocExchContext* ctx) override;
virtual int transmit_op_ordering() override;
virtual int re_est_cost(const ObLogicalOperator* parent, double need_row_count, bool& re_est) override;

View File

@ -23,7 +23,7 @@ public:
ObOptimizerPartitionLocationCache(common::ObIAllocator& allocator, share::ObIPartitionLocationCache* location_cache);
virtual ~ObOptimizerPartitionLocationCache();
virtual PartitionLocationCacheType get_type() const
virtual PartitionLocationCacheType get_type() const override
{
return ObOptimizerPartitionLocationCache::PART_LOC_CACHE_TYPE_OPTIMIZER;
}
@ -69,7 +69,7 @@ public:
virtual int nonblock_renew_with_limiter(
const common::ObPartitionKey& partition, const int64_t expire_renew_time, bool& is_limited) override;
// link table.
virtual int get_link_table_location(const uint64_t table_id, share::ObPartitionLocation& location);
virtual int get_link_table_location(const uint64_t table_id, share::ObPartitionLocation& location) override;
inline share::ObIPartitionLocationCache* get_location_cache()
{
return location_cache_;