HHH-3649 - Added supportsPooledSequences() method, to return true

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15684 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Juraci Krohling 2008-12-12 12:48:09 +00:00
parent 6483cfb3e5
commit cc12ed8c53
1 changed files with 4 additions and 0 deletions

View File

@ -195,6 +195,10 @@ public class DB2Dialect extends Dialect {
return true;
}
public boolean supportsPooledSequences() {
return true;
}
public String getQuerySequencesString() {
return "select seqname from sysibm.syssequences";
}