File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
hibernate-core/src/main/java/org/hibernate/dialect Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 13
13
import java .util .Locale ;
14
14
15
15
import org .hibernate .JDBCException ;
16
+ import org .hibernate .MappingException ;
16
17
import org .hibernate .NullPrecedence ;
17
18
import org .hibernate .cfg .Environment ;
18
19
import org .hibernate .dialect .function .AvgWithArgumentCastFunction ;
@@ -250,6 +251,11 @@ public String getSequenceNextValString(String sequenceName) {
250
251
return "values nextval for " + sequenceName ;
251
252
}
252
253
254
+ @ Override
255
+ public String getSelectSequenceNextValString (String sequenceName ) throws MappingException {
256
+ return "next value for " + sequenceName ;
257
+ }
258
+
253
259
@ Override
254
260
public String getCreateSequenceString (String sequenceName ) {
255
261
return "create sequence " + sequenceName ;
You can’t perform that action at this time.
0 commit comments