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 9cb1851 commit 877e4f0Copy full SHA for 877e4f0
hibernate-core/src/main/java/org/hibernate/dialect/sequence/SequenceSupport.java
@@ -226,7 +226,7 @@ default String[] getDropSequenceStrings(String sequenceName) throws MappingExcep
226
* @throws MappingException If sequences are not supported.
227
*/
228
default String getDropSequenceString(String sequenceName) throws MappingException {
229
- return "drop sequence " + sequenceName;
+ return "drop sequence if exists " + sequenceName;
230
}
231
232
/**
0 commit comments