Code_update.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef ODBC_CODEGEN_Code_update_hpp
  14. #define ODBC_CODEGEN_Code_update_hpp
  15. #include <common/common.hpp>
  16. #include "Code_base.hpp"
  17. #include "Code_dml.hpp"
  18. #include "Code_set_row.hpp"
  19. #include "Code_table.hpp"
  20. #include "Code_pred.hpp"
  21. #include "Code_query.hpp"
  22. /**
  23.  * @class Plan_update
  24.  * @brief Update in PlanTree
  25.  */
  26. class Plan_update : public Plan_dml {
  27. public:
  28.     Plan_update(Plan_root* root);
  29.     virtual ~Plan_update();
  30.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  31.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  32.     void describe(Ctx& ctx);
  33.     void print(Ctx& ctx);
  34.     // children
  35.     void setTable(Plan_table* table);
  36.     void setRow(Plan_set_row* setRow);
  37.     void setDmlRow(Plan_dml_row* dmlRow);
  38.     void setExprRow(Plan_expr_row* exprRow);
  39.     void setPred(Plan_pred* pred);
  40. protected:
  41.     Plan_table* m_table;
  42.     Plan_set_row* m_setRow;
  43.     Plan_dml_row* m_dmlRow;
  44.     Plan_expr_row* m_exprRow;
  45.     Plan_pred* m_pred;
  46. };
  47. inline
  48. Plan_update::Plan_update(Plan_root* root) :
  49.     Plan_dml(root),
  50.     m_table(0),
  51.     m_setRow(0),
  52.     m_dmlRow(0),
  53.     m_exprRow(0),
  54.     m_pred(0)
  55. {
  56. }
  57. // children
  58. inline void
  59. Plan_update::setTable(Plan_table* table)
  60. {
  61.     ctx_assert(table != 0);
  62.     m_table = table;
  63. }
  64. inline void
  65. Plan_update::setRow(Plan_set_row* setRow)
  66. {
  67.     ctx_assert(setRow != 0);
  68.     m_setRow = setRow;
  69. }
  70. inline void
  71. Plan_update::setDmlRow(Plan_dml_row* dmlRow)
  72. {
  73.     ctx_assert(dmlRow != 0);
  74.     m_dmlRow = dmlRow;
  75. }
  76. inline void
  77. Plan_update::setExprRow(Plan_expr_row* exprRow)
  78. {
  79.     ctx_assert(exprRow != 0);
  80.     m_exprRow = exprRow;
  81. }
  82. inline void
  83. Plan_update::setPred(Plan_pred* pred)
  84. {
  85.     ctx_assert(pred != 0);
  86.     m_pred = pred;
  87. }
  88. #endif