HHH-5349 CriteriaHQLAlignmentTest fails with an error running with the Ingres dialect

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20110 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2010-08-04 13:55:54 +00:00
parent 4813b1973b
commit bb3bf3e012
1 changed files with 9 additions and 0 deletions

View File

@ -352,5 +352,14 @@ public class IngresDialect extends Dialect {
public boolean supportsExpectedLobUsagePattern () {
return false;
}
/**
* Ingres does not support the syntax `count(distinct a,b)`?
*
* @return False, not supported.
*/
public boolean supportsTupleDistinctCounts() {
return false;
}
}