mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
ndb
remove extra ";" from test programs
This commit is contained in:
parent
e899d41169
commit
81013a01b1
7 changed files with 26 additions and 26 deletions
|
@ -426,7 +426,7 @@ C##suitname():NDBT_TestSuite(#suitname){ \
|
|||
pt->addTable(tableName, false);
|
||||
|
||||
#define NDBT_TESTSUITE_END(suitname) \
|
||||
} } ; C##suitname suitname;
|
||||
} } ; C##suitname suitname
|
||||
|
||||
// Helper functions for retrieving variables from NDBT_Step
|
||||
#define GETNDB(ps) ((NDBT_NdbApiStep*)ps)->getNdb()
|
||||
|
|
|
@ -321,7 +321,7 @@ int Bank::loadGl(){
|
|||
|
||||
m_ndb.closeTransaction(pTrans);
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
int Bank::getBalanceForAccountType(const Uint32 accountType,
|
||||
|
@ -460,7 +460,7 @@ int Bank::loadAccountType(){
|
|||
|
||||
m_ndb.closeTransaction(pTrans);
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Load ACCOUNT table
|
||||
|
|
|
@ -2187,7 +2187,7 @@ pkinsert(Par par)
|
|||
}
|
||||
con.closeTransaction();
|
||||
return 0;
|
||||
};
|
||||
}
|
||||
|
||||
static int
|
||||
pkupdate(Par par)
|
||||
|
@ -2250,7 +2250,7 @@ pkupdate(Par par)
|
|||
}
|
||||
con.closeTransaction();
|
||||
return 0;
|
||||
};
|
||||
}
|
||||
|
||||
static int
|
||||
pkdelete(Par par)
|
||||
|
@ -2306,7 +2306,7 @@ pkdelete(Par par)
|
|||
}
|
||||
con.closeTransaction();
|
||||
return 0;
|
||||
};
|
||||
}
|
||||
|
||||
static int
|
||||
pkread(Par par)
|
||||
|
|
|
@ -51,7 +51,7 @@ HugoCalculator::HugoCalculator(const NdbDictionary::Table& tab) : m_tab(tab) {
|
|||
#endif
|
||||
// Check that idCol is not conflicting with updatesCol
|
||||
assert(m_idCol != m_updatesCol && m_idCol != -1 && m_updatesCol != -1);
|
||||
};
|
||||
}
|
||||
|
||||
Int32
|
||||
HugoCalculator::calcValue(int record,
|
||||
|
@ -73,7 +73,7 @@ HugoCalculator::calcValue(int record,
|
|||
else
|
||||
val = record + attrib + updates;
|
||||
return val;
|
||||
};
|
||||
}
|
||||
#if 0
|
||||
HugoCalculator::U_Int32 calcValue(int record, int attrib, int updates) const;
|
||||
HugoCalculator::U_Int64 calcValue(int record, int attrib, int updates) const;
|
||||
|
@ -123,7 +123,7 @@ HugoCalculator::calcValue(int record,
|
|||
buf[len] = 0;
|
||||
}
|
||||
return buf;
|
||||
};
|
||||
}
|
||||
|
||||
int
|
||||
HugoCalculator::verifyRowValues(NDBT_ResultRow* const pRow) const{
|
||||
|
|
|
@ -624,7 +624,7 @@ int NDBT_TestCase::execute(NDBT_Context* ctx){
|
|||
<< endl;
|
||||
}
|
||||
return res;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
void NDBT_TestCase::startTimer(NDBT_Context* ctx){
|
||||
|
|
|
@ -345,7 +345,7 @@ NdbBackup::NF(NdbRestarter& _restarter, int *NFDuringBackup_codes, const int sz,
|
|||
}
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int
|
||||
FailS_codes[] = {
|
||||
|
|
|
@ -213,7 +213,7 @@ NdbRestarts::NdbRestart::NdbRestart(const char* _name,
|
|||
m_restartFunc = _func;
|
||||
m_numRequiredNodes = _requiredNodes;
|
||||
// m_arg1 = arg1;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
int NdbRestarts::getNumRestarts(){
|
||||
|
@ -367,7 +367,7 @@ int restartRandomNodeGraceful(NdbRestarter& _restarter,
|
|||
"Could not restart node "<<nodeId);
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int restartRandomNodeAbort(NdbRestarter& _restarter,
|
||||
const NdbRestarts::NdbRestart* _restart){
|
||||
|
@ -382,7 +382,7 @@ int restartRandomNodeAbort(NdbRestarter& _restarter,
|
|||
"Could not restart node "<<nodeId);
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int restartRandomNodeError(NdbRestarter& _restarter,
|
||||
const NdbRestarts::NdbRestart* _restart){
|
||||
|
@ -397,7 +397,7 @@ int restartRandomNodeError(NdbRestarter& _restarter,
|
|||
"Could not restart node "<<nodeId);
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int restartMasterNodeError(NdbRestarter& _restarter,
|
||||
const NdbRestarts::NdbRestart* _restart){
|
||||
|
@ -410,7 +410,7 @@ int restartMasterNodeError(NdbRestarter& _restarter,
|
|||
"Could not restart node "<<nodeId);
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int restartRandomNodeInitial(NdbRestarter& _restarter,
|
||||
const NdbRestarts::NdbRestart* _restart){
|
||||
|
@ -425,7 +425,7 @@ int restartRandomNodeInitial(NdbRestarter& _restarter,
|
|||
"Could not restart node "<<nodeId);
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int twoNodeFailure(NdbRestarter& _restarter,
|
||||
const NdbRestarts::NdbRestart* _restart){
|
||||
|
@ -453,7 +453,7 @@ int twoNodeFailure(NdbRestarter& _restarter,
|
|||
"Could not restart node "<< nodeId);
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int twoMasterNodeFailure(NdbRestarter& _restarter,
|
||||
const NdbRestarts::NdbRestart* _restart){
|
||||
|
@ -478,7 +478,7 @@ int twoMasterNodeFailure(NdbRestarter& _restarter,
|
|||
"Could not restart node "<< nodeId);
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int get50PercentOfNodes(NdbRestarter& restarter,
|
||||
int * _nodes){
|
||||
|
@ -519,7 +519,7 @@ int fiftyPercentFail(NdbRestarter& _restarter,
|
|||
"Could not start all nodes");
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
int restartAllNodesGracfeul(NdbRestarter& _restarter,
|
||||
|
@ -533,7 +533,7 @@ int restartAllNodesGracfeul(NdbRestarter& _restarter,
|
|||
|
||||
return NDBT_OK;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
int restartAllNodesAbort(NdbRestarter& _restarter,
|
||||
const NdbRestarts::NdbRestart* _restart){
|
||||
|
@ -545,7 +545,7 @@ int restartAllNodesAbort(NdbRestarter& _restarter,
|
|||
"Could not restart all nodes");
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int restartAllNodesError9999(NdbRestarter& _restarter,
|
||||
const NdbRestarts::NdbRestart* _restart){
|
||||
|
@ -557,7 +557,7 @@ int restartAllNodesError9999(NdbRestarter& _restarter,
|
|||
"Could not restart all nodes ");
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int fiftyPercentStopAndWait(NdbRestarter& _restarter,
|
||||
const NdbRestarts::NdbRestart* _restart){
|
||||
|
@ -590,7 +590,7 @@ int fiftyPercentStopAndWait(NdbRestarter& _restarter,
|
|||
g_info << _restart->m_name << endl;
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int
|
||||
NFDuringNR_codes[] = {
|
||||
|
@ -713,7 +713,7 @@ int restartNFDuringNR(NdbRestarter& _restarter,
|
|||
}
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int
|
||||
NRDuringLCP_Master_codes[] = {
|
||||
|
@ -864,7 +864,7 @@ int stopOnError(NdbRestarter& _restarter,
|
|||
} while (false);
|
||||
|
||||
return NDBT_OK;
|
||||
};
|
||||
}
|
||||
|
||||
int getRandomNodeId(NdbRestarter& _restarter) {
|
||||
myRandom48Init(NdbTick_CurrentMillisecond());
|
||||
|
|
Loading…
Reference in a new issue