}
private void createTestTable() throws SQLException {
Table table = new Table(TEST_TABLE);
try {
String dropSql = table.sqlDropString(_tool.getHibernateDialect(), null, _tool
.getTestSchema());
_tool.executeSql(_tool.getTestCatalog(), _tool.getTestSchema(), dropSql);
} catch (OpenGammaRuntimeException e) {
// It might not exist, that's OK
}