HHH-5598 sybase ASE cannot handle select count(distinct c1, c2, c3) from t1.
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20710 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
0f70f7243d
commit
21dbc7ff0a
|
@ -265,4 +265,7 @@ abstract class AbstractTransactSQLDialect extends Dialect {
|
|||
public boolean doesRepeatableReadCauseReadersToBlockWriters() {
|
||||
return true;
|
||||
}
|
||||
public boolean supportsTupleDistinctCounts() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -160,7 +160,4 @@ public class SQLServerDialect extends AbstractTransactSQLDialect {
|
|||
return false; // here assume SQLServer2005 using snapshot isolation, which does not have this problem
|
||||
}
|
||||
|
||||
public boolean supportsTupleDistinctCounts() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue