*/
public void testCreateDatabase() throws Exception {
this.benchmark.createDatabase();
// Make sure that we get back some tables
Catalog catalog = this.benchmark.getCatalog();
assertNotNull(catalog);
assertFalse(catalog.getTables().isEmpty());
// Just make sure that there are no empty tables
for (Table catalog_tbl : catalog.getTables()) {
assert (catalog_tbl.getColumnCount() > 0) : "Missing columns for " + catalog_tbl;
System.err.println(catalog_tbl);
} // FOR
}