mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Compile fixes for ccc (& cxx) on linux/alpha
Mainly explicit template instantiations ndb/src/common/debugger/signaldata/SignalDataPrint.cpp: Explicit template instantiations ndb/src/common/util/SocketServer.cpp: Explicit template instantiations ndb/src/kernel/blocks/backup/BackupInit.cpp: Explicit template instantiations ndb/src/kernel/blocks/dbutil/DbUtil.cpp: Explicit template instantiations ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp: Explicit template instantiations ndb/src/kernel/vm/ArrayPool.hpp: Only define print if #VM_TRACE ndb/src/mgmclient/CpcClient.cpp: Explicit template instantiations ndb/src/ndbapi/NdbDictionaryImpl.cpp: Explicit template instantiations ndb/test/include/NDBT_Table.hpp: Fully qualified type name ndb/test/include/NDBT_Test.hpp: Add destructors (so that v-table isn't empty) ndb/test/run-test/main.cpp: Explicit template instantiations ndb/test/src/HugoOperations.cpp: Explicit template instantiations ndb/test/src/HugoTransactions.cpp: Explicit template instantiations ndb/test/src/NDBT_Test.cpp: Explicit template instantiations ndb/test/src/NdbRestarter.cpp: Explicit template instantiations ndb/test/tools/cpcc.cpp: Explicit template instantiations
This commit is contained in:
@ -258,5 +258,7 @@ SignalDataPrintFunctions[] = {
|
||||
|
||||
const unsigned short NO_OF_PRINT_FUNCTIONS = sizeof(SignalDataPrintFunctions)/sizeof(NameFunctionPair);
|
||||
|
||||
|
||||
template class Bitmask<1>;
|
||||
template class Bitmask<2>;
|
||||
template class Bitmask<4>;
|
||||
|
||||
|
@ -305,3 +305,6 @@ sessionThread_C(void* _sc){
|
||||
NdbThread_Exit(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
template class MutexVector<SocketServer::ServiceInstance>;
|
||||
template class MutexVector<SocketServer::SessionInstance>;
|
||||
|
@ -213,3 +213,6 @@ Backup::~Backup()
|
||||
|
||||
BLOCK_FUNCTIONS(Backup);
|
||||
|
||||
template class ArrayPool<Backup::Page32>;
|
||||
template class ArrayPool<Backup::Attribute>;
|
||||
template class ArrayPool<Backup::Fragment>;
|
||||
|
@ -2581,3 +2581,5 @@ DbUtil::execUTIL_DESTORY_LOCK_REQ(Signal* signal){
|
||||
sendSignal(req.senderRef, GSN_UTIL_DESTROY_LOCK_REF, signal,
|
||||
UtilDestroyLockRef::SignalLength, JBB);
|
||||
}
|
||||
|
||||
template class ArrayPool<DbUtil::Page32>;
|
||||
|
@ -1010,3 +1010,6 @@ Ndbfs::execDUMP_STATE_ORD(Signal* signal)
|
||||
|
||||
BLOCK_FUNCTIONS(Ndbfs);
|
||||
|
||||
template class Vector<AsyncFile*>;
|
||||
template class Vector<OpenFiles::OpenFileItem>;
|
||||
template class MemoryChannel<Request>;
|
||||
|
@ -153,6 +153,7 @@ public:
|
||||
* (Run operator NdbOut<< on every element)
|
||||
*/
|
||||
void print(NdbOut & out){
|
||||
#ifdef VM_TRACE
|
||||
out << "FirstFree = " << firstFree << endl;
|
||||
for(Uint32 i = 0; i<size; i++){
|
||||
#ifdef ARRAY_GUARD
|
||||
@ -164,6 +165,7 @@ public:
|
||||
out << i << ": " << theArray[i] << " ";
|
||||
}
|
||||
out << endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
|
@ -557,4 +557,5 @@ SimpleCpcClient::cpc_call(const char *cmd,
|
||||
SimpleCpcClient::ParserDummy::ParserDummy(NDB_SOCKET_TYPE sock)
|
||||
: SocketServer::Session(sock) {
|
||||
}
|
||||
|
||||
|
||||
template class Vector<SimpleCpcClient::Process>;
|
||||
|
@ -2818,5 +2818,4 @@ template class Vector<Uint32>;
|
||||
template class Vector<Vector<Uint32> >;
|
||||
template class Vector<NdbTableImpl*>;
|
||||
template class Vector<NdbColumnImpl*>;
|
||||
template class Bitmask<4>;
|
||||
|
||||
|
@ -26,7 +26,7 @@ class NDBT_Attribute : public NdbDictionary::Column {
|
||||
friend class NdbOut& operator <<(class NdbOut&, const NDBT_Attribute &);
|
||||
public:
|
||||
NDBT_Attribute(const char* _name,
|
||||
Column::Type _type,
|
||||
NdbDictionary::Column::Type _type,
|
||||
int _length = 1,
|
||||
bool _pk = false,
|
||||
bool _nullable = false):
|
||||
|
@ -110,6 +110,7 @@ public:
|
||||
NDBT_Step(NDBT_TestCase* ptest,
|
||||
const char* pname,
|
||||
NDBT_TESTFUNC* pfunc);
|
||||
virtual ~NDBT_Step() {}
|
||||
int execute(NDBT_Context*);
|
||||
virtual int setUp() = 0;
|
||||
virtual void tearDown() = 0;
|
||||
@ -132,8 +133,9 @@ public:
|
||||
NDBT_NdbApiStep(NDBT_TestCase* ptest,
|
||||
const char* pname,
|
||||
NDBT_TESTFUNC* pfunc);
|
||||
int setUp();
|
||||
void tearDown();
|
||||
virtual ~NDBT_NdbApiStep() {}
|
||||
virtual int setUp();
|
||||
virtual void tearDown();
|
||||
|
||||
Ndb* getNdb();
|
||||
protected:
|
||||
@ -145,6 +147,7 @@ public:
|
||||
NDBT_ParallelStep(NDBT_TestCase* ptest,
|
||||
const char* pname,
|
||||
NDBT_TESTFUNC* pfunc);
|
||||
virtual ~NDBT_ParallelStep() {}
|
||||
};
|
||||
|
||||
class NDBT_Verifier : public NDBT_NdbApiStep {
|
||||
@ -152,6 +155,7 @@ public:
|
||||
NDBT_Verifier(NDBT_TestCase* ptest,
|
||||
const char* name,
|
||||
NDBT_TESTFUNC* func);
|
||||
virtual ~NDBT_Verifier() {}
|
||||
};
|
||||
|
||||
class NDBT_Initializer : public NDBT_NdbApiStep {
|
||||
@ -159,6 +163,7 @@ public:
|
||||
NDBT_Initializer(NDBT_TestCase* ptest,
|
||||
const char* name,
|
||||
NDBT_TESTFUNC* func);
|
||||
virtual ~NDBT_Initializer() {}
|
||||
};
|
||||
|
||||
class NDBT_Finalizer : public NDBT_NdbApiStep {
|
||||
@ -166,6 +171,7 @@ public:
|
||||
NDBT_Finalizer(NDBT_TestCase* ptest,
|
||||
const char* name,
|
||||
NDBT_TESTFUNC* func);
|
||||
virtual ~NDBT_Finalizer() {}
|
||||
};
|
||||
|
||||
|
||||
@ -174,7 +180,8 @@ 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
|
||||
// different parameters and settings, these are passed to the test in the
|
||||
|
@ -970,3 +970,5 @@ setup_hosts(atrt_config& config){
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
template class Vector<const ParserRow<SimpleCpcClient::ParserDummy>*>;
|
||||
|
@ -791,3 +791,5 @@ HugoOperations::indexUpdateRecord(Ndb*,
|
||||
}
|
||||
return NDBT_OK;
|
||||
}
|
||||
|
||||
template class Vector<HugoOperations::ScanTmp>;
|
||||
|
@ -2415,4 +2415,4 @@ HugoTransactions::indexUpdateRecords(Ndb* pNdb,
|
||||
return NDBT_OK;
|
||||
}
|
||||
|
||||
|
||||
template class Vector<NDBT_ResultRow*>;
|
||||
|
@ -1117,6 +1117,12 @@ void NDBT_Step::print(){
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
template class Vector<NDBT_TestCase*>;
|
||||
template class Vector<NDBT_TestCaseResult*>;
|
||||
template class Vector<NDBT_Step*>;
|
||||
template class Vector<NdbThread*>;
|
||||
template class Vector<NDBT_Verifier*>;
|
||||
template class Vector<NDBT_Initializer*>;
|
||||
template class Vector<NDBT_Finalizer*>;
|
||||
template class Vector<const NdbDictionary::Table*>;
|
||||
template class Vector<int>;
|
||||
|
@ -672,3 +672,5 @@ NdbRestarter::getConfig(){
|
||||
m_config = ndb_mgm_get_configuration(handle, 0);
|
||||
return m_config;
|
||||
}
|
||||
|
||||
template class Vector<ndb_mgm_node_state>;
|
||||
|
@ -347,3 +347,4 @@ Operate::evaluate(SimpleCpcClient* c, const SimpleCpcClient::Process & pp){
|
||||
return true;
|
||||
}
|
||||
|
||||
template class Vector<const ParserRow<SimpleCpcClient::ParserDummy>*>;
|
||||
|
Reference in New Issue
Block a user