Exec_create_table.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 <dictionary/DictSchema.hpp>
  15. #include <codegen/Code_create_table.hpp>
  16. void
  17. Exec_create_table::execute(Ctx& ctx, Ctl& ctl)
  18. {
  19.     const Code& code = getCode();
  20.     Data& data = getData();
  21.     Ndb* const ndb = ndbObject();
  22.     NdbDictionary::Dictionary* ndbDictionary = ndb->getDictionary();
  23.     if (ndbDictionary == 0) {
  24. ctx.pushStatus(ndb, "getDictionary");
  25. return;
  26.     }
  27.     NdbDictionary::Table ndbTable(code.m_tableName.c_str());
  28.     for (unsigned i = 1; i <= code.m_attrCount; i++) {
  29. const Code::Attr& attr = code.m_attrList[i];
  30. NdbDictionary::Column ndbColumn(attr.m_attrName.c_str());
  31. if (i == code.m_tupleId)
  32.     ndbColumn.setTupleKey(true); // XXX setTupleId()
  33. if (ctx.logLevel() >= 3) {
  34.     char buf[100];
  35.     attr.m_sqlType.print(buf, sizeof(buf));
  36.     ctx_log3(("attr %s type %s", ndbColumn.getName(), buf));
  37. }
  38. if (attr.m_tupleKey)
  39.     ndbColumn.setPrimaryKey(true);
  40. attr.m_sqlType.getType(ctx, &ndbColumn);
  41. if (! ctx.ok())
  42.     return;
  43. if (attr.m_autoIncrement)
  44.     ndbColumn.setAutoIncrement(true);
  45. char defaultValue[MAX_ATTR_DEFAULT_VALUE_SIZE];
  46. defaultValue[0] = 0;
  47. if (attr.m_defaultValue != 0) {
  48.     // XXX obviously should evalute it at insert time too
  49.     attr.m_defaultValue->evaluate(ctx, ctl);
  50.     if (! ctx.ok())
  51. return;
  52.     const SqlField& f = attr.m_defaultValue->getData().sqlField();
  53.     const SqlType& t = f.sqlSpec().sqlType();
  54.     // XXX use SqlField cast method instead
  55.     SQLINTEGER ind = 0;
  56.     ExtType extType(ExtType::Char);
  57.     ExtSpec extSpec(extType);
  58.     ExtField extField(extSpec, (SQLPOINTER)defaultValue, sizeof(defaultValue), &ind);
  59.     f.copyout(ctx, extField);
  60.     if (! ctx.ok())
  61. return;
  62.     if (ind == SQL_NULL_DATA) // do not store NULL default
  63. defaultValue[0] = 0;
  64. }
  65. if (defaultValue[0] != 0)
  66.     ndbColumn.setDefaultValue(defaultValue);
  67. ndbTable.addColumn(ndbColumn);
  68.     }
  69.     if (code.m_fragmentType != NdbDictionary::Object::FragUndefined)
  70. ndbTable.setFragmentType(code.m_fragmentType);
  71.     ndbTable.setLogging(code.m_logging);
  72.     dictSchema().deleteTable(ctx, code.m_tableName);
  73.     if (ndbDictionary->createTable(ndbTable) == -1) {
  74. ctx.pushStatus(ndbDictionary->getNdbError(), "createTable %s", ndbTable.getName());
  75. return;
  76.     }
  77.     ctx_log1(("table %s created", ndbTable.getName()));
  78. }