Skip to content

Commit 2d2fff7

Browse files
committed
HHH-19103 Add missing break within truncate/populate action
1 parent dc20229 commit 2d2fff7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

hibernate-core/src/main/java/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator.java

+2
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ private static void performDatabaseAction(
291291
serviceRegistry
292292
)
293293
);
294+
break;
294295
}
295296
case POPULATE: {
296297
tool.getSchemaPopulator( executionOptions.getConfigurationValues() ).doPopulation(
@@ -301,6 +302,7 @@ private static void performDatabaseAction(
301302
serviceRegistry
302303
)
303304
);
305+
break;
304306
}
305307
}
306308
}

0 commit comments

Comments
 (0)