Code_expr.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 "Code_expr.hpp"
  14. #include "Code_expr_row.hpp"
  15. // Plan_expr
  16. Plan_expr::~Plan_expr()
  17. {
  18. }
  19. bool
  20. Plan_expr::isEqual(const Plan_expr* expr) const
  21. {
  22.     return false;
  23. }
  24. bool
  25. Plan_expr::isAnyEqual(const Plan_expr_row* row) const
  26. {
  27.     ctx_assert(row != 0);
  28.     const unsigned size = row->getSize();
  29.     for (unsigned i = 1; i <= size; i++) {
  30. if (isEqual(row->getExpr(i)))
  31.     return true;
  32.     }
  33.     return false;
  34. }
  35. bool
  36. Plan_expr::isGroupBy(const Plan_expr_row* row) const
  37. {
  38.     return false;
  39. }
  40. // Exec_expr
  41. Exec_expr::Code::~Code()
  42. {
  43. }
  44. Exec_expr::Data::~Data()
  45. {
  46. }
  47. Exec_expr::~Exec_expr()
  48. {
  49. }
  50. SqlField&
  51. Exec_expr::Data::groupField(const SqlType& sqlType, unsigned i, bool initFlag)
  52. {
  53.     if (m_groupField.size() == 0) {
  54. m_groupField.resize(1);
  55.     }
  56.     if (initFlag) {
  57. //unsigned i2 = m_groupField.size();
  58. //ctx_assert(i == i2);
  59. const SqlSpec sqlSpec(sqlType, SqlSpec::Physical);
  60. const SqlField sqlField(sqlSpec);
  61. m_groupField.push_back(sqlField);
  62.     }
  63.     ctx_assert(i != 0 && i < m_groupField.size());
  64.     return m_groupField[i];
  65. }