mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
ndb -
1) New testcase
Check every combination of ins/upd/del of length 5
Check reading savepoint's
2) Fix 1 liner in acc wrt committing read
ndb/include/ndbapi/NdbConnection.hpp:
Make testcase friend
ndb/src/kernel/blocks/dbacc/DbaccMain.cpp:
Fix so that committing a READ can _not_ result in setting elementIsDisappeared
ndb/test/include/NDBT_Test.hpp:
Make copy of testcase name
ndb/test/ndbapi/testOperations.cpp:
New testcase
Check every combination of ins/upd/del of length 5
Check reading savepoint's
ndb/test/src/HugoOperations.cpp:
Close transaction in destructor
ndb/test/src/NDBT_Test.cpp:
Make copy of testcase name
This commit is contained in:
parent
7f25f21c25
commit
3a890c8a87
6 changed files with 302 additions and 6 deletions
|
|
@ -188,7 +188,7 @@ public:
|
|||
NDBT_TestCase(NDBT_TestSuite* psuite,
|
||||
const char* name,
|
||||
const char* comment);
|
||||
virtual ~NDBT_TestCase(){}
|
||||
virtual ~NDBT_TestCase() {}
|
||||
|
||||
// This is the default executor of a test case
|
||||
// When a test case is executed it will need to be suplied with a number of
|
||||
|
|
@ -225,6 +225,8 @@ protected:
|
|||
void stopTimer(NDBT_Context*);
|
||||
void printTimer(NDBT_Context*);
|
||||
|
||||
BaseString _name;
|
||||
BaseString _comment;
|
||||
const char* name;
|
||||
const char* comment;
|
||||
NDBT_TestSuite* suite;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue