HHH-4531 Derby dialect should not support comments

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18327 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2009-12-24 11:55:08 +00:00
parent a7a9f79d1e
commit 55bf2494ea
1 changed files with 5 additions and 0 deletions

View File

@ -110,6 +110,11 @@ public class DerbyDialect extends DB2Dialect {
public boolean supportsLimit() {
return isTenPointFiveReleaseOrNewer();
}
//HHH-4531
public boolean supportsCommentOn() {
return false;
}
public boolean supportsLimitOffset() {
return isTenPointFiveReleaseOrNewer();