mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
compile fix for ndbapi test program on irix (variable scope)
ndb/test/include/NDBT_Test.hpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/ScanFunctions.hpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testDataBuffers.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testDeadlock.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testDict.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testIndex.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testLcp.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testNdbApi.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testOIBasic.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testReadPerf.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testRestartGci.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testScanPerf.cpp: compile fix for ndbapi test program on irix ndb/test/ndbapi/testSystemRestart.cpp: compile fix for ndbapi test program on irix
This commit is contained in:
@@ -452,7 +452,7 @@ int runSystemRestart3(NDBT_Context* ctx, NDBT_Step* step){
|
||||
}
|
||||
|
||||
Vector<int> nodeIds;
|
||||
for(Uint32 i = 0; i<nodeCount; i++)
|
||||
for(i = 0; i<nodeCount; i++)
|
||||
nodeIds.push_back(restarter.getDbNodeId(i));
|
||||
|
||||
Uint32 currentRestartNodeIndex = 0;
|
||||
@@ -561,7 +561,7 @@ int runSystemRestart4(NDBT_Context* ctx, NDBT_Step* step){
|
||||
}
|
||||
|
||||
Vector<int> nodeIds;
|
||||
for(Uint32 i = 0; i<nodeCount; i++)
|
||||
for(i = 0; i<nodeCount; i++)
|
||||
nodeIds.push_back(restarter.getDbNodeId(i));
|
||||
|
||||
Uint32 currentRestartNodeIndex = 0;
|
||||
@@ -691,7 +691,7 @@ int runSystemRestart5(NDBT_Context* ctx, NDBT_Step* step){
|
||||
}
|
||||
|
||||
Vector<int> nodeIds;
|
||||
for(Uint32 i = 0; i<nodeCount; i++)
|
||||
for(i = 0; i<nodeCount; i++)
|
||||
nodeIds.push_back(restarter.getDbNodeId(i));
|
||||
|
||||
Uint32 currentRestartNodeIndex = 0;
|
||||
@@ -821,7 +821,7 @@ int runSystemRestart6(NDBT_Context* ctx, NDBT_Step* step){
|
||||
}
|
||||
|
||||
Vector<int> nodeIds;
|
||||
for(Uint32 i = 0; i<nodeCount; i++)
|
||||
for(i = 0; i<nodeCount; i++)
|
||||
nodeIds.push_back(restarter.getDbNodeId(i));
|
||||
|
||||
Uint32 currentRestartNodeIndex = 0;
|
||||
@@ -877,7 +877,7 @@ int runSystemRestart7(NDBT_Context* ctx, NDBT_Step* step){
|
||||
}
|
||||
|
||||
Vector<int> nodeIds;
|
||||
for(Uint32 i = 0; i<nodeCount; i++)
|
||||
for(i = 0; i<nodeCount; i++)
|
||||
nodeIds.push_back(restarter.getDbNodeId(i));
|
||||
|
||||
int a_nodeIds[64];
|
||||
@@ -952,7 +952,7 @@ int runSystemRestart8(NDBT_Context* ctx, NDBT_Step* step){
|
||||
}
|
||||
|
||||
Vector<int> nodeIds;
|
||||
for(Uint32 i = 0; i<nodeCount; i++)
|
||||
for(i = 0; i<nodeCount; i++)
|
||||
nodeIds.push_back(restarter.getDbNodeId(i));
|
||||
|
||||
int a_nodeIds[64];
|
||||
|
||||
Reference in New Issue
Block a user