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:
parent
4813b1973b
commit
bb3bf3e012
|
@ -352,5 +352,14 @@ public class IngresDialect extends Dialect {
|
||||||
public boolean supportsExpectedLobUsagePattern () {
|
public boolean supportsExpectedLobUsagePattern () {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ingres does not support the syntax `count(distinct a,b)`?
|
||||||
|
*
|
||||||
|
* @return False, not supported.
|
||||||
|
*/
|
||||||
|
public boolean supportsTupleDistinctCounts() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue