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:
parent
636f728603
commit
87b645e0c1
|
@ -248,6 +248,10 @@ abstract class AbstractTransactSQLDialect extends Dialect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean supportsUnionAll() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public boolean supportsExistsInSelect() {
|
public boolean supportsExistsInSelect() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue