/* Copyright (C) 2025 MariaDB Corporation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #pragma once #include #include #define PREFER_MY_CONFIG_H #include // #include "idb_mysql.h" #include #include "execplan/calpontselectexecutionplan.h" #include "execplan/calpontsystemcatalog.h" namespace optimizer { class RBOptimizerContext { public: RBOptimizerContext() = delete; RBOptimizerContext(cal_impl_if::gp_walk_info& walk_info, THD& thd, bool logRules, uint cesOptimizationParallelFactor = 50) : gwi_(walk_info) , thd_(thd) , logRules_(logRules) , cesOptimizationParallelFactor_(cesOptimizationParallelFactor) { } // Accessors cal_impl_if::gp_walk_info& getGwi() { return gwi_; } THD& getThd() { return thd_; } uint64_t getUniqueId() const { return uniqueId_; } void incrementUniqueId() { ++uniqueId_; } bool logRulesEnabled() const { return logRules_; } uint getCesOptimizationParallelFactor() const { return cesOptimizationParallelFactor_; } // Applied rules API void addAppliedRule(const std::string& name) { appliedRules_.push_back(name); } const std::vector& getAppliedRules() const { return appliedRules_; } bool hasAppliedRules() const { return !appliedRules_.empty(); } std::string serializeAppliedRules() const { std::string out; for (size_t i = 0; i < appliedRules_.size(); ++i) { if (i) out += ","; out += appliedRules_[i]; } return out; } private: // gwi lifetime should be longer than optimizer context. // In plugin runtime this is always true. cal_impl_if::gp_walk_info& gwi_; THD& thd_; uint64_t uniqueId_{0}; bool logRules_{false}; uint cesOptimizationParallelFactor_; // Names of rules that were actually applied in order std::vector appliedRules_; }; struct Rule { // returns true if rule may be applied using RuleApplierFilter = bool (*)(execplan::CalpontSelectExecutionPlan&, RBOptimizerContext&); // returns true if rule was applied using RuleApplier = bool (*)(execplan::CalpontSelectExecutionPlan&, RBOptimizerContext&); Rule(std::string&& name, RuleApplierFilter mayApply, RuleApplier applyRule) : name(name), mayApply(mayApply), applyRule(applyRule) {}; std::string name; RuleApplierFilter mayApply; RuleApplier applyRule; // TODO Wrap CSEP into Nodes to be able to navigate up and down the tree and remove this flag bool applyOnlyOnce = true; Rule() = default; Rule(const Rule&) = default; Rule(Rule&&) = default; std::string getName() const { return name; } Rule& operator=(const Rule&) = default; Rule& operator=(Rule&&) = default; bool apply(execplan::CalpontSelectExecutionPlan& csep, RBOptimizerContext& ctx) const; bool walk(execplan::CalpontSelectExecutionPlan& csep, RBOptimizerContext& ctx) const; }; bool optimizeCSEP(execplan::CalpontSelectExecutionPlan& root, RBOptimizerContext& ctx, bool useUnstableOptimizer); std::string getRewrittenSubTableAlias(const execplan::CalpontSystemCatalog::TableAliasName& table, const RBOptimizerContext& ctx); }