Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2d2fff7

Browse files
committedMar 24, 2025··
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)
Please sign in to comment.