Code_drop_table.cpp
上传用户: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. #include <common/StmtArea.hpp>
  14. #include "Code_drop_table.hpp"
  15. #include "Code_root.hpp"
  16. // Plan_drop_table
  17. Plan_drop_table::~Plan_drop_table()
  18. {
  19. }
  20. Plan_base*
  21. Plan_drop_table::analyze(Ctx& ctx, Ctl& ctl)
  22. {
  23.     stmtArea().stmtInfo().setName(Stmt_name_drop_table);
  24.     return this;
  25. }
  26. void
  27. Plan_drop_table::describe(Ctx& ctx)
  28. {
  29.     stmtArea().setFunction(ctx, "DROP TABLE", SQL_DIAG_DROP_TABLE);
  30. }
  31. Exec_base*
  32. Plan_drop_table::codegen(Ctx& ctx, Ctl& ctl)
  33. {
  34.     Exec_drop_table* exec = new Exec_drop_table(ctl.m_execRoot);
  35.     ctl.m_execRoot->saveNode(exec);
  36.     Exec_drop_table::Code& code = *new Exec_drop_table::Code(m_name);
  37.     exec->setCode(code);
  38.     return exec;
  39. }
  40. void
  41. Plan_drop_table::print(Ctx& ctx)
  42. {
  43.     ctx.print(" [drop_table %s]", m_name.c_str());
  44. }
  45. // Exec_drop_table
  46. Exec_drop_table::Code::~Code()
  47. {
  48. }
  49. Exec_drop_table::Data::~Data()
  50. {
  51. }
  52. Exec_drop_table::~Exec_drop_table()
  53. {
  54. }
  55. void
  56. Exec_drop_table::alloc(Ctx& ctx, Ctl& ctl)
  57. {
  58.     Data& data = *new Data;
  59.     setData(data);
  60. }
  61. void
  62. Exec_drop_table::close(Ctx& ctx)
  63. {
  64. }
  65. void
  66. Exec_drop_table::print(Ctx& ctx)
  67. {
  68.     const Code& code = getCode();
  69.     ctx.print(" [drop_table %s]", code.m_tableName.c_str());
  70. }