Code_ddl.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_hpp
  14. #define ODBC_CODEGEN_Code_ddl_hpp
  15. #include <common/common.hpp>
  16. #include "Code_stmt.hpp"
  17. /**
  18.  * @class Plan_ddl
  19.  * @brief Base class for DDL statements in PlanTree
  20.  */
  21. class Plan_ddl : public Plan_stmt {
  22. public:
  23.     Plan_ddl(Plan_root* root);
  24.     virtual ~Plan_ddl() = 0;
  25. };
  26. inline
  27. Plan_ddl::Plan_ddl(Plan_root* root) :
  28.     Plan_stmt(root)
  29. {
  30. }
  31. /**
  32.  * @class Exec_ddl
  33.  * @brief Base class for DDL statements in ExecTree
  34.  */
  35. class Exec_ddl : public Exec_stmt {
  36. public:
  37.     class Code : public Exec_stmt::Code {
  38.     public:
  39. virtual ~Code() = 0;
  40.     };
  41.     class Data : public Exec_stmt::Data {
  42.     public:
  43. virtual ~Data() = 0;
  44.     };
  45.     Exec_ddl(Exec_root* root);
  46.     virtual ~Exec_ddl() = 0;
  47. };
  48. inline
  49. Exec_ddl::Exec_ddl(Exec_root* root) :
  50.     Exec_stmt(root)
  51. {
  52. }
  53. #endif