Code_delete_scan.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_delete_scan.hpp"
  15. #include "Code_root.hpp"
  16. Plan_delete_scan::~Plan_delete_scan()
  17. {
  18. }
  19. Plan_base*
  20. Plan_delete_scan::analyze(Ctx& ctx, Ctl& ctl)
  21. {
  22.     ctx_assert(m_query != 0);
  23.     m_query->analyze(ctx, ctl);
  24.     if (! ctx.ok())
  25. return 0;
  26.     return this;
  27. }
  28. void
  29. Plan_delete_scan::describe(Ctx& ctx)
  30. {
  31.     stmtArea().setFunction(ctx, "DELETE WHERE", SQL_DIAG_DELETE_WHERE);
  32. }
  33. Exec_base*
  34. Plan_delete_scan::codegen(Ctx& ctx, Ctl& ctl)
  35. {   
  36.     // create code for the subquery
  37.     ctx_assert(m_query != 0);
  38.     Exec_query* execQuery = static_cast<Exec_query*>(m_query->codegen(ctx, ctl));
  39.     if (! ctx.ok())
  40. return 0;
  41.     ctx_assert(execQuery != 0);
  42.     // create the code
  43.     Exec_delete_scan* exec = new Exec_delete_scan(ctl.m_execRoot);
  44.     ctl.m_execRoot->saveNode(exec);
  45.     Exec_delete_scan::Code& code = *new Exec_delete_scan::Code;
  46.     exec->setCode(code);
  47.     exec->setQuery(execQuery);
  48.     return exec;
  49. }    
  50. void
  51. Plan_delete_scan::print(Ctx& ctx)
  52. {
  53.     ctx.print(" [delete_scan");
  54.     Plan_base* a[] = { m_query };
  55.     printList(ctx, a, 1);
  56.     ctx.print("]");
  57. }
  58. // Exec_delete_scan
  59. Exec_delete_scan::Code::~Code()
  60. {
  61. }
  62. Exec_delete_scan::Data::~Data()
  63. {
  64. }
  65. Exec_delete_scan::~Exec_delete_scan()
  66. {
  67. }
  68. void
  69. Exec_delete_scan::alloc(Ctx& ctx, Ctl& ctl)
  70. {
  71.     // allocate the subquery
  72.     ctx_assert(m_query != 0);
  73.     m_query->alloc(ctx, ctl);
  74.     if (! ctx.ok())
  75.         return;
  76.     // create data
  77.     Data& data = *new Data;
  78.     setData(data);
  79. }
  80. void
  81. Exec_delete_scan::close(Ctx& ctx)
  82. {
  83.     ctx_assert(m_query != 0);
  84.     m_query->close(ctx);
  85. }
  86. void
  87. Exec_delete_scan::print(Ctx& ctx)
  88. {
  89.     ctx.print(" [delete_scan");
  90.     Exec_base* a[] = { m_query };
  91.     printList(ctx, a, 1);
  92.     ctx.print("]");
  93. }