remove a method I accidentally pushed
This commit is contained in:
parent
ed956d514a
commit
3fabde0cd9
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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" );
|
||||
|
|
Loading…
Reference in New Issue