We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18d486f commit d5ad2dbCopy full SHA for d5ad2db
hibernate-core/src/main/java/org/hibernate/dialect/MySQLDialect.java
@@ -1074,7 +1074,10 @@ public String[] getDropCatalogCommand(String catalogName) {
1074
* MySQL does support the {@code create schema} command, but
1075
* it's a synonym for {@code create database}. Hibernate has
1076
* always treated a MySQL database as a
1077
- * {@linkplain #canCreateCatalog catalog}.
+ * {@linkplain #canCreateCatalog catalog}, which is consistent
1078
+ * with how the JDBC driver itself views the situation, since
1079
+ * {@link DatabaseMetaData#supportsSchemasInDataManipulation()}
1080
+ * returns {@code false} on MySQL.
1081
*
1082
* @return {@code false}
1083
*/
0 commit comments