mirror of
https://github.com/MariaDB/server.git
synced 2025-10-31 15:50:51 +03: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
This commit is contained in:
@@ -327,13 +327,17 @@ NDBT_Finalizer::NDBT_Finalizer(NDBT_TestCase* ptest,
|
||||
NDBT_TestCase::NDBT_TestCase(NDBT_TestSuite* psuite,
|
||||
const char* pname,
|
||||
const char* pcomment) :
|
||||
name(pname) ,
|
||||
comment(pcomment),
|
||||
suite(psuite){
|
||||
name(strdup(pname)) ,
|
||||
comment(strdup(pcomment)),
|
||||
suite(psuite)
|
||||
{
|
||||
_name.assign(pname);
|
||||
_comment.assign(pcomment);
|
||||
name= _name.c_str();
|
||||
comment= _comment.c_str();
|
||||
assert(suite != NULL);
|
||||
}
|
||||
|
||||
|
||||
NDBT_TestCaseImpl1::NDBT_TestCaseImpl1(NDBT_TestSuite* psuite,
|
||||
const char* pname,
|
||||
const char* pcomment) :
|
||||
|
||||
Reference in New Issue
Block a user