Commit 1b3bcced authored by unknown's avatar unknown

ndb - fix test case: testDict -n Restart_NR* T1 I3


ndb/test/ndbapi/testDict.cpp:
  fix testDict -n Restart_NR* T1 I3
ndb/test/run-test/daily-basic-tests.txt:
  fix testDict -n Restart_NR* T1 I3
parent 3364aa19
...@@ -1893,7 +1893,7 @@ runDictOps(NDBT_Context* ctx, NDBT_Step* step) ...@@ -1893,7 +1893,7 @@ runDictOps(NDBT_Context* ctx, NDBT_Step* step)
// create indexes // create indexes
const char** indlist = NDBT_Tables::getIndexes(tabName); const char** indlist = NDBT_Tables::getIndexes(tabName);
uint indnum = 0; uint indnum = 0;
while (*indlist != 0) { while (indlist != 0 && *indlist != 0) {
uint count = 0; uint count = 0;
try_create_index: try_create_index:
count++; count++;
......
...@@ -510,7 +510,7 @@ args: -n TemporaryTables T1 T6 T7 T8 ...@@ -510,7 +510,7 @@ args: -n TemporaryTables T1 T6 T7 T8
max-time: 1500 max-time: 1500
cmd: testDict cmd: testDict
args: -n Restart_NR2 T1 args: -n Restart_NR2 T1 I3
# #
# TEST NDBAPI # TEST NDBAPI
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment