|
Can someone from Hibernate team comment on patch submitted with this jira. Should we go ahead and use this patch for production applying This is one of the most important feature for migration of applications from Hibernate 3.6 to Hibernate 4.3.8
Also DB2Dialect getSequeuceNextVal does not work on DB2 Z/Os. As per solution given in following forum, its working fine
https://forum.hibernate.org/viewtopic.php?f=1&t=962238&view=next
Should that be also included in new DB2ZOSDialect.
public String getSequenceNextValString(String sequenceName) { return "select next value for " + sequenceName + " from sysibm.sysdummy1"; }
|