/* Copyright (C) 2003-2006, 2008 MySQL AB All rights reserved. Use is subject to license terms. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef NDBT_TABLES_HPP #define NDBT_TABLES_HPP #include #include #include #include typedef int (* NDBT_CreateTableHook)(Ndb*, NdbDictionary::Table&, int when, void* arg); class NDBT_Tables { public: /* Some constants for the maximum sizes of keys and attributes * in various cases */ STATIC_CONST(MaxRowBytes= NDB_MAX_TUPLE_SIZE_IN_WORDS * 4); STATIC_CONST(MaxKeyBytes= NDB_MAX_KEYSIZE_IN_WORDS * 4); STATIC_CONST(MinKeyBytes= 4); // Single Unsigned key STATIC_CONST(MaxVarTypeKeyBytes= MaxKeyBytes - 2); // 2 length bytes STATIC_CONST(MaxKeyMaxAttrBytes= MaxRowBytes - MaxKeyBytes); STATIC_CONST(MaxKeyMaxVarTypeAttrBytes= MaxKeyMaxAttrBytes - 2); STATIC_CONST(MinKeyMaxAttrBytes= MaxRowBytes - MinKeyBytes); STATIC_CONST(MinKeyMaxVarTypeAttrBytes= MinKeyMaxAttrBytes - 2); STATIC_CONST(UniqueIndexOverheadBytes= 4); // For FragId // Note that since we'll put an unique index on this...it can't be bigger // than MaxKeyBytes STATIC_CONST(MaxKeyMaxVarTypeAttrBytesIndex = ((MaxKeyMaxVarTypeAttrBytes <= MaxKeyBytes) ? MaxKeyMaxVarTypeAttrBytes : MaxKeyBytes) - UniqueIndexOverheadBytes); /* Hugo requires 2 unsigned int columns somewhere in the table * and these also counts towards #attributes relation */ STATIC_CONST(HugoOverheadBytes= 2 * (4 + 4)); static int createTable(Ndb* pNdb, const char* _name, bool _temp = false, bool existsOK = false, NDBT_CreateTableHook = 0, void* arg = 0); static int createAllTables(Ndb* pNdb, bool _temp, bool existsOK = false); static int createAllTables(Ndb* pNdb); static int dropAllTables(Ndb* pNdb); static int print(const char * name); static int printAll(); static const NdbDictionary::Table* getTable(const char* _nam); static const NdbDictionary::Table* getTable(int _num); static int getNumTables(); static const char** getIndexes(const char* table); static int create_default_tablespace(Ndb* pNdb); private: static const NdbDictionary::Table* tableWithPkSize(const char* _nam, Uint32 pkSize); }; #endif