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:
Strong Liu 2010-09-26 15:39:58 +00:00
parent 0f70f7243d
commit 21dbc7ff0a
2 changed files with 3 additions and 3 deletions

View File

@ -265,4 +265,7 @@ abstract class AbstractTransactSQLDialect extends Dialect {
public boolean doesRepeatableReadCauseReadersToBlockWriters() {
return true;
}
public boolean supportsTupleDistinctCounts() {
return false;
}
}

View File

@ -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;
}
}