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

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 <NdbApi.hpp>
  14. #include <common/StmtArea.hpp>
  15. #include <common/ResultArea.hpp>
  16. #include <codegen/Code_expr.hpp>
  17. #include <codegen/Code_update_lookup.hpp>
  18. #include <codegen/Code_query.hpp>
  19. void
  20. Exec_update_lookup::execImpl(Ctx& ctx, Ctl& ctl)
  21. {
  22.     const Code& code = getCode();
  23.     Data& data = getData();
  24.     Ndb* const ndb = ndbObject();
  25.     NdbConnection* const tcon = ndbConnection();
  26.     // execute subquery
  27.     ctx_assert(m_query != 0);
  28.     m_query->execute(ctx, ctl);
  29.     if (! ctx.ok())
  30. return;
  31.     // update each row from the query
  32.     while (m_query->fetch(ctx, ctl)) {
  33. NdbOperation* op = tcon->getNdbOperation(code.m_tableName);
  34. if (op == 0) {
  35.     ctx.pushStatus(ndb, tcon, 0, "getNdbOperation");
  36.     return;
  37. }
  38. if (op->updateTuple() == -1) {
  39.     ctx.pushStatus(ndb, tcon, op, "updateTuple");
  40.     return;
  41. }
  42. // key attributes
  43. bool done = false;
  44. for (unsigned k = 1; k <= code.m_keyCount; k++) {
  45.     Exec_expr* exprMatch = code.m_keyMatch[k];
  46.     ctx_assert(exprMatch != 0);
  47.     exprMatch->evaluate(ctx, ctl);
  48.     if (! ctx.ok())
  49. return;
  50.     const SqlField& keyMatch = exprMatch->getData().sqlField();
  51.     SqlField f(code.m_keySpecs.getEntry(k));
  52.     if (! keyMatch.cast(ctx, f)) {
  53. done = true; // match is not possible
  54. break;
  55.     }
  56.     const NdbAttrId keyId = code.m_keyId[k];
  57.     const void* addr = f.addr();
  58.     const char* value = static_cast<const char*>(addr);
  59.     if (op->equal(keyId, value) == -1) {
  60. ctx.pushStatus(ndb, tcon, op, "equal attrId=%u", (unsigned)keyId);
  61. return;
  62.     }
  63. }
  64. if (done)
  65.     continue;
  66. // updated attributes
  67. const SqlRow& sqlRow = m_query->getData().sqlRow();
  68. ctx_assert(sqlRow.count() == code.m_attrCount);
  69. for (unsigned i = 1; i <= code.m_attrCount; i++) {
  70.     const NdbAttrId attrId = code.m_attrId[i];
  71.     const SqlField& f = sqlRow.getEntry(i);
  72.     const void* addr = f.sqlNull() ? 0 : f.addr();
  73.     const char* value = static_cast<const char*>(addr);
  74.     if (op->setValue(attrId, value) == -1) {
  75. ctx.pushStatus(ndb, tcon, op, "setValue attrId=%u", (unsigned)attrId);
  76. return;
  77.     }
  78. }
  79. data.setCount(0);
  80. if (tcon->execute(NoCommit) == -1) {
  81.     // XXX when did 626 move to connection level
  82.     if (tcon->getNdbError().code != 626 && op->getNdbError().code != 626) {
  83. ctx.pushStatus(ndb, tcon, op, "execute without commit");
  84. return;
  85.     }
  86. } else {
  87.     data.addCount();
  88. }
  89.     }
  90.     stmtArea().setRowCount(ctx, data.getCount());
  91. }