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:
@ -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]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user