assertTrue(success);
final Catalog c1 = compiler.getCatalog();
final String catalogContents = VoltCompilerUtils.readFileFromJarfile(testout_jar, "catalog.txt");
final Catalog c2 = new Catalog();
c2.execute(catalogContents);
assertTrue(c2.serialize().equals(c1.serialize()));
}
//
// There are DDL tests a number of places. TestDDLCompiler seems more about
// verifying HSQL behaviour. Additionally, there are users of PlannerAideDeCamp