assertThat(DdlUtils.supportsDialect("mssql")).isFalse();
}
@Test
public void shouldCreateSchema() throws SQLException {
DriverManager.registerDriver(new Driver());
Connection connection = DriverManager.getConnection("jdbc:h2:mem:sonar_test");
DdlUtils.createSchema(connection, "h2");
int tableCount = countTables(connection);