JBPAPP-1547 HHH-3686 : Sybase - QueryCacheTest.testQueryCacheInvalidation fails

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17270 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2009-08-12 02:27:18 +00:00
parent c34fac4096
commit b1d17f31dd
1 changed files with 7 additions and 1 deletions

View File

@ -68,7 +68,13 @@ public class SybaseASE15Dialect extends AbstractTransactSQLDialect {
public boolean supportsCascadeDelete() {
return false;
}
/**
* By default, Sybase string comparisons are case-insensitive.<br>
* If the DB is configured to be case-sensitive, then the return value will be incorrect.
*/
public boolean areStringComparisonsCaseInsensitive() {
return true;
}
public boolean supportsExpectedLobUsagePattern() {
return false;
}