NdbcntrSysTable.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 "Ndbcntr.hpp"
  14. #define arrayLength(x) sizeof(x)/sizeof(x[0])
  15. // SYSTAB_0
  16. static const Ndbcntr::SysColumn
  17. column_SYSTAB_0[] = {
  18.   { 0, "SYSKEY_0",
  19.     DictTabInfo::ExtUnsigned, 1,
  20.     true, false
  21.   },
  22.   { 1, "NEXTID",
  23.     DictTabInfo::ExtBigunsigned, 1,
  24.     false, false
  25.   }
  26. };
  27. const Ndbcntr::SysTable
  28. Ndbcntr::g_sysTable_SYSTAB_0 = {
  29.   "sys/def/SYSTAB_0",
  30.   arrayLength(column_SYSTAB_0), column_SYSTAB_0,
  31.   DictTabInfo::SystemTable,
  32.   DictTabInfo::AllNodesSmallTable,
  33.   true, ~0
  34. };
  35. // NDB$EVENTS_0
  36. static const Ndbcntr::SysColumn
  37. column_NDBEVENTS_0[] = {
  38.   { 0, "NAME",
  39.     DictTabInfo::ExtBinary, MAX_TAB_NAME_SIZE,
  40.     true, false
  41.   },
  42.   { 1, "EVENT_TYPE",
  43.     DictTabInfo::ExtUnsigned, 1,
  44.     false, false
  45.   },
  46.   { 2, "TABLE_NAME",
  47.     DictTabInfo::ExtBinary, MAX_TAB_NAME_SIZE,
  48.     false, false
  49.   },
  50.   { 3, "ATTRIBUTE_MASK",
  51.     DictTabInfo::ExtUnsigned, MAXNROFATTRIBUTESINWORDS,
  52.     false, false
  53.   },
  54.   { 4, "SUBID",
  55.     DictTabInfo::ExtUnsigned, 1,
  56.     false, false
  57.   },
  58.   { 5, "SUBKEY",
  59.     DictTabInfo::ExtUnsigned, 1,
  60.     false, false
  61.   }
  62. };
  63. const Ndbcntr::SysTable
  64. Ndbcntr::g_sysTable_NDBEVENTS_0 = {
  65.   "sys/def/NDB$EVENTS_0",
  66.   arrayLength(column_NDBEVENTS_0), column_NDBEVENTS_0,
  67.   DictTabInfo::SystemTable,
  68.   DictTabInfo::AllNodesSmallTable,
  69.   true, ~0
  70. };
  71. // all
  72. const Ndbcntr::SysTable*
  73. Ndbcntr::g_sysTableList[] = {
  74.   &g_sysTable_SYSTAB_0,
  75.   &g_sysTable_NDBEVENTS_0
  76. };
  77. //TODO Backup needs this info to allocate appropriate number of records
  78. //BackupInit.cpp
  79. const unsigned
  80. Ndbcntr::g_sysTableCount = arrayLength(Ndbcntr::g_sysTableList);