https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_reload
Morf relies on this in MySqlDialect:
@Override
public Collection<String> dropStatements(Table table) {
return Arrays.asList(
"FLUSH TABLES " + table.getName(),
"DROP TABLE " + table.getName());
}
Presumably this is for cluster safety, but it needs to be possible to disable it in environments where the application doesn't own the database, which applies to any shared hosted environment.