Exec_delete_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_delete_lookup.hpp>
  18. #include <codegen/Code_query.hpp>
  19. void
  20. Exec_delete_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.     // delete each row from the query
  32.     data.setCount(0);
  33.     while (m_query->fetch(ctx, ctl)) {
  34. NdbOperation* op = tcon->getNdbOperation(code.m_tableName);
  35. if (op == 0) {
  36.     ctx.pushStatus(ndb, tcon, 0, "getNdbOperation");
  37.     return;
  38. }
  39. if (op->deleteTuple() == -1) {
  40.     ctx.pushStatus(ndb, tcon, op, "deleteTuple");
  41.     return;
  42. }
  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. if (tcon->execute(NoCommit) == -1) {
  67.     // XXX when did 626 move to connection level
  68.     if (tcon->getNdbError().code != 626 && op->getNdbError().code != 626) {
  69. ctx.pushStatus(ndb, tcon, op, "execute without commit");
  70. return;
  71.     }
  72. } else {
  73.     data.addCount();
  74. }
  75.     }
  76.     stmtArea().setRowCount(ctx, data.getCount());
  77. }