Below is the list of changes that have just been committed into a local
4.1 repository of jonas. When jonas does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2459 06/01/04 11:38:58 jonas@stripped +1 -0
ndb - Make testDatabuffer clean up tables
ndb/test/ndbapi/testDataBuffers.cpp
1.13 06/01/04 11:38:56 jonas@stripped +20 -7
Make testDatabuffer clean up tables
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: jonas
# Host: perch.ndb.mysql.com
# Root: /home/jonas/src/41-work
--- 1.12/ndb/test/ndbapi/testDataBuffers.cpp 2004-11-08 13:58:37 +01:00
+++ 1.13/ndb/test/ndbapi/testDataBuffers.cpp 2006-01-04 11:38:56 +01:00
@@ -254,12 +254,6 @@
ndbout << "tab=" << tab << " cols=" << attrcnt
<< " size max=" << smax << " tot=" << stot << endl;
- ndb = new Ndb("TEST_DB");
- if (ndb->init() != 0)
- return ndberror("init");
- if (ndb->waitUntilReady(30) < 0)
- return ndberror("waitUntilReady");
-
if ((tcon = NdbSchemaCon::startSchemaTrans(ndb)) == 0)
return ndberror("startSchemaTransaction");
if ((top = tcon->getNdbSchemaOp()) == 0)
@@ -541,7 +535,6 @@
return ndberror("key %d not found", k);
ndbout << "scanned " << key << endl;
- ndb = 0;
ndbout << "done" << endl;
return 0;
}
@@ -605,7 +598,23 @@
return NDBT_ProgramExit(NDBT_WRONGARGS);
}
}
+
unsigned ok = true;
+
+ ndb = new Ndb("TEST_DB");
+ if (ndb->init() != 0)
+ {
+ ndberror("init");
+ ok = false;
+ goto out;
+ }
+ if (ndb->waitUntilReady(30) < 0)
+ {
+ ndberror("waitUntilReady");
+ ok = false;
+ goto out;
+ }
+
for (i = 1; 0 == loopcnt || i <= loopcnt; i++) {
ndbout << "=== loop " << i << " ===" << endl;
for (int flag = 0; flag < (1<<testbits); flag++) {
@@ -614,9 +623,13 @@
if (! kontinue)
goto out;
}
+ NdbDictionary::Dictionary * dict = ndb->getDictionary();
+ dict->dropTable(tab);
}
}
+
out:
+ delete ndb;
return NDBT_ProgramExit(ok ? NDBT_OK : NDBT_FAILED);
}
| Thread |
|---|
| • bk commit into 4.1 tree (jonas:1.2459) | jonas | 4 Jan |