remove a method I accidentally pushed

This commit is contained in:
Gavin 2022-11-16 14:13:41 +01:00
parent ed956d514a
commit 3fabde0cd9
2 changed files with 0 additions and 9 deletions

View File

@ -2606,10 +2606,6 @@ public abstract class Dialect implements ConversionContext {
return true;
}
public boolean useCatalogAsSchema() {
return false;
}
/**
* Get the SQL command used to create the named schema
*

View File

@ -822,11 +822,6 @@ public class MySQLDialect extends Dialect {
return false;
}
@Override
public boolean useCatalogAsSchema() {
return true;
}
@Override
public String[] getCreateSchemaCommand(String schemaName) {
throw new UnsupportedOperationException( "MySQL does not support dropping creating/dropping schemas in the JDBC sense" );