There was an error while loading. Please reload this page.
1 parent add68bb commit 68298bbCopy full SHA for 68298bb
hibernate-core/src/main/java/org/hibernate/tool/schema/internal/SchemaCreatorImpl.java
@@ -355,7 +355,14 @@ public void createFromMetadata(
355
for ( Namespace namespace : database.getNamespaces() ) {
356
// NOTE : Foreign keys must be created *after* unique keys for numerous DBs. See HHH-8390
357
358
+if ( !schemaFilter.includeNamespace( namespace ) ) {
359
+continue;
360
+}
361
+
362
for ( Table table : namespace.getTables() ) {
363
+if ( !schemaFilter.includeTable( table ) ) {
364
365
366
// foreign keys
367
final Iterator fkItr = table.getForeignKeyIterator();
368
while ( fkItr.hasNext() ) {
0 commit comments