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; 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
* *

View File

@ -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" );