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

@ -50,13 +50,12 @@ public:
NDBT_Table(const char* name,
int noOfAttributes,
const NdbDictionary::Column attributes[],
bool stored = true)
const NdbDictionary::Column attributes[])
: NdbDictionary::Table(name)
{
assert(name != 0);
setStoredTable(stored);
//setStoredTable(stored);
for(int i = 0; i<noOfAttributes; i++)
addColumn(attributes[i]);
}