Code_ddl_column.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 "Code_ddl_column.hpp"
  16. #include "Code_expr_conv.hpp"
  17. #include "Code_root.hpp"
  18. // Plan_ddl_column
  19. Plan_ddl_column::~Plan_ddl_column()
  20. {
  21. }
  22. Plan_base*
  23. Plan_ddl_column::analyze(Ctx& ctx, Ctl& ctl)
  24. {
  25.     ctx_assert(m_type != 0);
  26.     if (! m_type->m_sqlType.nullable()) {
  27. m_nullable = false;
  28.     }
  29.     m_sqlType = m_type->m_sqlType;
  30.     m_sqlType.nullable(m_nullable);
  31.     const BaseString& name = getName();
  32.     if (m_unSigned) {
  33. switch (m_sqlType.type()) {
  34. case SqlType::Smallint:
  35. case SqlType::Integer:
  36. case SqlType::Bigint:
  37.     break;
  38. default:
  39.     ctx.pushStatus(Error::Gen, "invalid unsigned qualifier on column %s", name.c_str());
  40.     return 0;
  41. }
  42. m_sqlType.unSigned(true);
  43.     }
  44.     if (strcmp(name.c_str(), "NDB$TID") == 0) {
  45. if (! m_primaryKey) {
  46.     ctx.pushStatus(Error::Gen, "column %s must be a primary key", name.c_str());
  47.     return 0;
  48. }
  49. if (sqlType().type() != SqlType::Bigint || ! sqlType().unSigned()) {
  50.     ctx.pushStatus(Error::Gen, "tuple id %s must have type BIGINT UNSIGNED", name.c_str());
  51.     return 0;
  52. }
  53. setTupleId();
  54.     }
  55.     if (m_autoIncrement) {
  56. if (! m_primaryKey) {
  57.     ctx.pushStatus(Error::Gen, "auto-increment column %s must be a primary key", name.c_str());
  58.     return 0;
  59. }
  60. if (sqlType().type() != SqlType::Smallint && sqlType().type() != SqlType::Integer && sqlType().type() != SqlType::Bigint) {
  61.     ctx.pushStatus(Error::Gen, "auto-increment column %s must have an integral type", name.c_str());
  62.     return 0;
  63. }
  64.     }
  65.     if (m_defaultValue != 0) {
  66. if (m_primaryKey) {
  67.     ctx.pushStatus(Sqlstate::_42000, Error::Gen, "default value not allowed on primary key column %s", name.c_str());
  68.     return 0;
  69. }
  70. m_defaultValue->analyze(ctx, ctl);
  71. if (! ctx.ok())
  72.     return 0;
  73. // insert conversion node
  74. Plan_expr_conv* exprConv = new Plan_expr_conv(m_root, sqlType());
  75. m_root->saveNode(exprConv);
  76. exprConv->setExpr(m_defaultValue);
  77. Plan_expr* expr = static_cast<Plan_expr*>(exprConv->analyze(ctx, ctl));
  78. if (! ctx.ok())
  79.     return 0;
  80. ctx_assert(expr != 0);
  81. m_defaultValue = expr;
  82.     }
  83.     return this;
  84. }
  85. Exec_base*
  86. Plan_ddl_column::codegen(Ctx& ctx, Ctl& ctl)
  87. {
  88.     ctx_assert(false);
  89.     return 0;
  90. }
  91. void
  92. Plan_ddl_column::print(Ctx& ctx)
  93. {
  94.     ctx.print(" [ddl_column %s key=%d id=%d]", getPrintName(), m_primaryKey, m_tupleId);
  95. }