Exec_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 <NdbApi.hpp>
  14. #include <common/StmtArea.hpp>
  15. #include <common/ResultArea.hpp>
  16. #include <codegen/Code_delete_scan.hpp>
  17. #include <codegen/Code_query.hpp>
  18. void
  19. Exec_delete_scan::execImpl(Ctx& ctx, Ctl& ctl)
  20. {
  21.     const Code& code = getCode();
  22.     Data& data = getData();
  23.     Ndb* const ndb = ndbObject();
  24.     NdbConnection* const tcon = ndbConnection();
  25.     // execute subquery
  26.     ctx_assert(m_query != 0);
  27.     m_query->execute(ctx, ctl);
  28.     if (! ctx.ok())
  29. return;
  30.     ctx_assert(ctl.m_scanOp != 0);
  31.     // delete each row from the scan
  32.     data.setCount(0);
  33.     while (m_query->fetch(ctx, ctl)) {
  34. NdbOperation* toOp = ctl.m_scanOp->takeOverForDelete(tcon);
  35. if (toOp == 0) {
  36.     ctx.pushStatus(ndb, tcon, ctl.m_scanOp, "takeOverScanOp");
  37.     return;
  38. }
  39. if (tcon->execute(NoCommit) == -1) {
  40.     if (toOp->getNdbError().code != 626) {
  41. ctx.pushStatus(ndb, tcon, toOp, "execute without commit");
  42. return;
  43.     }
  44. } else {
  45.     data.addCount();
  46. }
  47.     }
  48.     stmtArea().setRowCount(ctx, data.getCount());
  49. }