1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Add indexes to test toolkit

ndb/test/include/NDBT_Table.hpp:
  Remove unused parameter
ndb/test/include/NDBT_Tables.hpp:
  Add existsOk
ndb/test/src/NDBT_Tables.cpp:
  Rename C2_* tables to I{123}
  Add indexes to I{123}
ndb/test/src/NDBT_Test.cpp:
  Rename C2_* tables to I{123}
  Add indexes to I{123}
This commit is contained in:
unknown
2004-08-11 10:03:43 +02:00
parent f0e1384460
commit ef0d6d35ea
4 changed files with 111 additions and 38 deletions

View File

@ -26,7 +26,8 @@
class NDBT_Tables {
public:
static int createTable(Ndb* pNdb, const char* _name, bool _temp = false);
static int createTable(Ndb* pNdb, const char* _name, bool _temp = false,
bool existsOK = false);
static int createAllTables(Ndb* pNdb, bool _temp, bool existsOK = false);
static int createAllTables(Ndb* pNdb);