Code_ddl_constr.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_ddl_constr_hpp
  14. #define ODBC_CODEGEN_Code_ddl_constr_hpp
  15. #include <common/common.hpp>
  16. #include "Code_ddl_row.hpp"
  17. /**
  18.  * @class Plan_ddl_constr
  19.  * @brief Constraint in DDL statement
  20.  *
  21.  * Only unnamed primary key constraint exists.
  22.  */
  23. class Plan_ddl_constr : public Plan_base {
  24. public:
  25.     Plan_ddl_constr(Plan_root* root);
  26.     virtual ~Plan_ddl_constr();
  27.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  28.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  29.     void print(Ctx& ctx);
  30.     // children
  31.     void setRow(Plan_ddl_row* ddlRow);
  32.     Plan_ddl_row* getRow() const;
  33. protected:
  34.     Plan_ddl_row* m_ddlRow;
  35. };
  36. inline
  37. Plan_ddl_constr::Plan_ddl_constr(Plan_root* root) :
  38.     Plan_base(root)
  39. {
  40. }
  41. // children
  42. inline void
  43. Plan_ddl_constr::setRow(Plan_ddl_row* ddlRow)
  44. {
  45.     ctx_assert(ddlRow != 0);
  46.     m_ddlRow = ddlRow;
  47. }
  48. inline Plan_ddl_row*
  49. Plan_ddl_constr::getRow() const
  50. {
  51.     ctx_assert(m_ddlRow != 0);
  52.     return m_ddlRow;
  53. }
  54. #endif