summaryrefslogtreecommitdiff
path: root/ndb/test/src/HugoCalculator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ndb/test/src/HugoCalculator.cpp')
-rw-r--r--ndb/test/src/HugoCalculator.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/ndb/test/src/HugoCalculator.cpp b/ndb/test/src/HugoCalculator.cpp
index 9e2ba9f143e..55aa96a4909 100644
--- a/ndb/test/src/HugoCalculator.cpp
+++ b/ndb/test/src/HugoCalculator.cpp
@@ -15,8 +15,6 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include "HugoCalculator.hpp"
-#include <assert.h>
-#include <NdbStdio.h>
#include <NDBT.hpp>
/* *************************************************************
@@ -159,7 +157,7 @@ HugoCalculator::verifyRowValues(NDBT_ResultRow* const pRow) const{
<< ", NdbDict::Column::getLength(): " << attr->getLength()
<< endl;
const char* buf2 = pRow->attributeStore(i)->aRef();
- for (int j = 0; j < pRow->attributeStore(i)->arraySize(); j++)
+ for (Uint32 j = 0; j < pRow->attributeStore(i)->arraySize(); j++)
{
g_err << j << ":" << buf[j] << "[" << buf2[j] << "]";
if (buf[j] != buf2[j])