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 1313import java .util .Locale ;
1414
1515import org .hibernate .JDBCException ;
16+ import org .hibernate .MappingException ;
1617import org .hibernate .NullPrecedence ;
1718import org .hibernate .cfg .Environment ;
1819import org .hibernate .dialect .function .AvgWithArgumentCastFunction ;
@@ -250,6 +251,11 @@ public String getSequenceNextValString(String sequenceName) {
250251 return "values nextval for " + sequenceName ;
251252 }
252253
254+ @ Override
255+ public String getSelectSequenceNextValString (String sequenceName ) throws MappingException {
256+ return "next value for " + sequenceName ;
257+ }
258+
253259 @ Override
254260 public String getCreateSequenceString (String sequenceName ) {
255261 return "create sequence " + sequenceName ;
You can’t perform that action at this time.
0 commit comments