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 149865b commit 045a83aCopy full SHA for 045a83a
hibernate-core/src/main/java/org/hibernate/dialect/sequence/MariaDBSequenceSupport.java
@@ -35,6 +35,11 @@ public String getSelectSequencePreviousValString(String sequenceName) throws Map
35
return "previous value for " + sequenceName;
36
}
37
38
+ @Override
39
+ public String getDropSequenceString(String sequenceName) throws MappingException {
40
+ return "drop sequence if exists " + sequenceName;
41
+ }
42
+
43
@Override
44
public boolean sometimesNeedsStartingValue() {
45
return true;
0 commit comments