Code_update_scan.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

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 <dictionary/DictTable.hpp>
  15. #include <dictionary/DictColumn.hpp>
  16. #include "Code_dml_column.hpp"
  17. #include "Code_update_scan.hpp"
  18. #include "Code_table.hpp"
  19. #include "Code_root.hpp"
  20. // Plan_update_scan
  21. Plan_update_scan::~Plan_update_scan()
  22. {
  23. }
  24. Plan_base*
  25. Plan_update_scan::analyze(Ctx& ctx, Ctl& ctl)
  26. {
  27.     ctl.m_dmlRow = m_dmlRow; // row type to convert to
  28.     ctx_assert(m_query != 0);
  29.     m_query->analyze(ctx, ctl);
  30.     if (! ctx.ok())
  31. return 0;
  32.     ctx_assert(m_table != 0);
  33.     m_table->analyze(ctx, ctl);
  34.     if (! ctx.ok())
  35. return 0;
  36.     return this;
  37. }
  38. void
  39. Plan_update_scan::describe(Ctx& ctx)
  40. {
  41.     stmtArea().setFunction(ctx, "UPDATE WHERE", SQL_DIAG_UPDATE_WHERE);
  42. }
  43. Exec_base*
  44. Plan_update_scan::codegen(Ctx& ctx, Ctl& ctl)
  45. {   
  46.     // generate code for the query
  47.     ctx_assert(m_query != 0);
  48.     Exec_query* execQuery = static_cast<Exec_query*>(m_query->codegen(ctx, ctl));
  49.     if (! ctx.ok())
  50. return 0;
  51.     ctx_assert(execQuery != 0);
  52.     // set up
  53.     ctx_assert(m_table != 0);
  54.     const ColumnVector& columns = m_table->dmlColumns();
  55.     ctx_assert(columns.size() > 0);
  56.     const unsigned attrCount = columns.size() - 1;
  57.     // create the code
  58.     Exec_update_scan::Code& code = *new Exec_update_scan::Code();
  59.     // updated attributes
  60.     code.m_attrCount = attrCount;
  61.     code.m_attrId = new NdbAttrId[1 + attrCount];
  62.     code.m_attrId[0] = (NdbAttrId)-1;
  63.     for (unsigned i = 1; i <= attrCount; i++) {
  64. Plan_column* column = columns[i];
  65. ctx_assert(column != 0);
  66. const DictColumn& dictColumn = column->dictColumn();
  67. code.m_attrId[i] = dictColumn.getAttrId();
  68.     }
  69.     // create the exec
  70.     Exec_update_scan* exec = new Exec_update_scan(ctl.m_execRoot);
  71.     ctl.m_execRoot->saveNode(exec);
  72.     exec->setCode(code);
  73.     exec->setQuery(execQuery);
  74.     return exec;
  75. }    
  76. void
  77. Plan_update_scan::print(Ctx& ctx)
  78. {
  79.     ctx.print(" [update_scan");
  80.     Plan_base* a[] = { m_table, m_query };
  81.     printList(ctx, a, sizeof(a)/sizeof(a[0]));
  82.     ctx.print("]");
  83. }
  84. // Exec_delete
  85. Exec_update_scan::Code::~Code()
  86. {
  87.     delete[] m_attrId;
  88. }
  89. Exec_update_scan::Data::~Data()
  90. {
  91. }
  92. Exec_update_scan::~Exec_update_scan()
  93. {
  94. }
  95. void
  96. Exec_update_scan::alloc(Ctx& ctx, Ctl& ctl)
  97. {
  98.     // allocate the subquery
  99.     ctx_assert(m_query != 0);
  100.     m_query->alloc(ctx, ctl);
  101.     if (! ctx.ok())
  102.         return;
  103.     // create data
  104.     Data& data = *new Data;
  105.     setData(data);
  106. }
  107. void
  108. Exec_update_scan::close(Ctx& ctx)
  109. {
  110.     ctx_assert(m_query != 0);
  111.     m_query->close(ctx);
  112. }
  113. void
  114. Exec_update_scan::print(Ctx& ctx)
  115. {
  116.     ctx.print(" [update_scan");
  117.     if (m_code != 0) {
  118. const Code& code = getCode();
  119. ctx.print(" attrId=");
  120. for (unsigned i = 1; i <= code.m_attrCount; i++) {
  121.     if (i > 1)
  122. ctx.print(",");
  123.     ctx.print("%u", (unsigned)code.m_attrId[i]);
  124. }
  125.     }
  126.     Exec_base* a[] = { m_query };
  127.     printList(ctx, a, 1);
  128.     ctx.print("]");
  129. }