1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

wl2126 - ndb batch - post review fixes

ndb/include/ndbapi/NdbIndexScanOperation.hpp:
  renamed set_new_bound to end_of_bound
ndb/src/ndbapi/NdbIndexOperation.cpp:
  remove code for TCINDXREF
ndb/src/ndbapi/NdbScanOperation.cpp:
  renamed methods
ndb/test/ndbapi/testScanPerf.cpp:
  renamed method
sql/ha_ndbcluster.cc:
  renamed method
  add lots of comments
This commit is contained in:
unknown
2004-11-30 07:58:55 +01:00
parent 48e5008576
commit ef3d635db1
5 changed files with 51 additions and 19 deletions

View File

@ -270,7 +270,7 @@ run_scan(){
{
int row = rand() % tot;
pIOp->setBound((Uint32)0, NdbIndexScanOperation::BoundEQ, &row);
pIOp->set_new_bound();
pIOp->end_of_bound();
}
if(g_paramters[P_RESET].value == 2)
goto execute;