Code_set_row.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_set_row_hpp
  14. #define ODBC_CODEGEN_Code_set_row_hpp
  15. #include <vector>
  16. #include <common/common.hpp>
  17. #include <common/DataRow.hpp>
  18. #include "Code_base.hpp"
  19. #include "Code_dml_row.hpp"
  20. #include "Code_expr_row.hpp"
  21. #include "Code_root.hpp"
  22. /**
  23.  * @class Plan_set_row
  24.  * @brief Row of column assigments in update
  25.  *
  26.  * Used only in parse.  The column and expression rows are moved
  27.  * to the update node immediately after parse.
  28.  */
  29. class Plan_set_row : public Plan_base {
  30. public:
  31.     Plan_set_row(Plan_root* root);
  32.     virtual ~Plan_set_row();
  33.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  34.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  35.     void print(Ctx& ctx);
  36.     // children
  37.     void addColumn(Plan_dml_column* column);
  38.     void addExpr(Plan_expr* expr);
  39. protected:
  40.     friend class Plan_update;
  41.     friend class Plan_insert; // for MySql
  42.     Plan_dml_row* m_dmlRow;
  43.     Plan_expr_row* m_exprRow;
  44. };
  45. inline
  46. Plan_set_row::Plan_set_row(Plan_root* root) :
  47.     Plan_base(root)
  48. {
  49.     m_dmlRow = new Plan_dml_row(root);
  50.     root->saveNode(m_dmlRow);
  51.     m_exprRow = new Plan_expr_row(root);
  52.     root->saveNode(m_exprRow);
  53. }
  54. // children
  55. inline void
  56. Plan_set_row::addColumn(Plan_dml_column* column)
  57. {
  58.     m_dmlRow->addColumn(column);
  59. }
  60. inline void
  61. Plan_set_row::addExpr(Plan_expr* expr)
  62. {
  63.     m_exprRow->addExpr(expr);
  64. }
  65. #endif