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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean useCatalogAsSchema() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the SQL command used to create the named schema
|
* Get the SQL command used to create the named schema
|
||||||
*
|
*
|
||||||
|
|
|
@ -822,11 +822,6 @@ public class MySQLDialect extends Dialect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean useCatalogAsSchema() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String[] getCreateSchemaCommand(String schemaName) {
|
public String[] getCreateSchemaCommand(String schemaName) {
|
||||||
throw new UnsupportedOperationException( "MySQL does not support dropping creating/dropping schemas in the JDBC sense" );
|
throw new UnsupportedOperationException( "MySQL does not support dropping creating/dropping schemas in the JDBC sense" );
|
||||||
|
|
Loading…
Reference in New Issue