#At file:///home/stewart/mysql/win-ndbwin32/
2890 Stewart Smith 2008-10-07
signed vs unsigned warning
modified:
storage/ndb/test/ndbapi/testNdbApi.cpp
=== modified file 'storage/ndb/test/ndbapi/testNdbApi.cpp'
--- a/storage/ndb/test/ndbapi/testNdbApi.cpp 2008-08-04 13:40:17 +0000
+++ b/storage/ndb/test/ndbapi/testNdbApi.cpp 2008-10-07 05:10:23 +0000
@@ -1653,7 +1653,7 @@ runBug28443(NDBT_Context* ctx, NDBT_Step
restarter.insertErrorInAllNodes(9003);
- for (Uint32 i = 0; i<ctx->getNumLoops(); i++)
+ for (int i = 0; i<ctx->getNumLoops(); i++)
{
HugoTransactions hugoTrans(*ctx->getTab());
if (hugoTrans.loadTable(GETNDB(step), records, 2048) != 0)
@@ -1680,7 +1680,7 @@ runBug37158(NDBT_Context* ctx, NDBT_Step
int result = NDBT_OK;
Ndb* pNdb = GETNDB(step);
- for (Uint32 i = 0; i<ctx->getNumLoops(); i++)
+ for (int i = 0; i<ctx->getNumLoops(); i++)
{
HugoOperations hugoOps(*ctx->getTab());
hugoOps.startTransaction(pNdb);
| Thread |
|---|
| • bzr commit into mysql-5.1 branch (stewart:2890) | Stewart Smith | 7 Oct |