Code_column.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 <dictionary/DictSchema.hpp>
  16. #include <dictionary/DictColumn.hpp>
  17. #include "Code_column.hpp"
  18. #include "Code_table_list.hpp"
  19. #include "Code_table.hpp"
  20. // Plan_column
  21. Plan_column::~Plan_column()
  22. {
  23. }
  24. void
  25. Plan_column::analyzeColumn(Ctx& ctx, Plan_base::Ctl& ctl)
  26. {
  27.     if (m_resTable != 0) // done on previous pass
  28. return;
  29.     if (! (ctl.m_tableList.size() > 1)) {
  30. ctx.pushStatus(Sqlstate::_42000, Error::Gen, "column %s not allowed here", getPrintName());
  31. return;
  32.     }
  33.     unsigned resCount = 0;
  34.     for (unsigned i = 1; i < ctl.m_tableList.size(); i++) {
  35. Plan_table* table = ctl.m_tableList[i];
  36. ctx_assert(table != 0);
  37. int ret = table->resolveColumn(ctx, this);
  38. if (ret < 0)
  39.     return;
  40. if (ret)
  41.     resCount++;
  42.     }
  43.     if (resCount == 0) {
  44. // XXX try to strip "schema name" from table name
  45. for (unsigned i = 1; i < ctl.m_tableList.size(); i++) {
  46.     Plan_table* table = ctl.m_tableList[i];
  47.     ctx_assert(table != 0);
  48.     int ret = table->resolveColumn(ctx, this, true);
  49.     if (ret < 0)
  50. return;
  51.     if (ret)
  52. resCount++;
  53. }
  54.     }
  55.     if (resCount == 0) {
  56. ctx.pushStatus(Sqlstate::_42S22, Error::Gen, "column %s not found", getPrintName());
  57. return;
  58.     }
  59.     if (resCount > 1) {
  60. ctx.pushStatus(Error::Gen, "column %s is ambiguous", getPrintName());
  61. return;
  62.     }
  63.     // copy SQL type
  64.     m_sqlType = dictColumn().sqlType();
  65. }