HHH-5598 sybase and ms sql server do support union all

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20708 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2010-09-26 15:28:34 +00:00
parent 636f728603
commit 87b645e0c1
1 changed files with 4 additions and 0 deletions

View File

@ -248,6 +248,10 @@ abstract class AbstractTransactSQLDialect extends Dialect {
return false;
}
public boolean supportsUnionAll() {
return true;
}
public boolean supportsExistsInSelect() {
return false;
}