HHH-5558 Change made so that temp tables need not to be deleted, they get deleted automatically in Sybase.

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20634 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2010-09-13 09:44:07 +00:00
parent ed2630c177
commit d651fba422
1 changed files with 4 additions and 1 deletions

View File

@ -30,7 +30,7 @@ import org.hibernate.dialect.function.SQLFunctionTemplate;
import org.hibernate.type.StandardBasicTypes;
/**
* An SQL dialect targetting Sybase Adaptive Server Enterprise (ASE) 15 and higher.
* An SQL dialect targeting Sybase Adaptive Server Enterprise (ASE) 15 and higher.
* <p/>
* TODO : verify if this also works with 12/12.5
*
@ -81,4 +81,7 @@ public class SybaseASE15Dialect extends AbstractTransactSQLDialect {
public String getCrossJoinSeparator() {
return ", ";
}
public boolean dropTemporaryTableAfterUse() {
return false;
}
}