HHH-5572 sybase does not support lob

This commit is contained in:
Strong Liu 2010-10-11 16:09:34 +08:00
parent c02279d7df
commit 2da2cd4cae
1 changed files with 3 additions and 0 deletions

View File

@ -29,8 +29,10 @@ import java.sql.SQLException;
import java.util.Date;
import org.hibernate.Session;
import org.hibernate.dialect.SybaseASE15Dialect;
import org.hibernate.jdbc.Work;
import org.hibernate.test.annotations.TestCase;
import org.hibernate.testing.junit.SkipForDialect;
import org.hibernate.type.descriptor.JdbcTypeNameMapper;
/**
@ -38,6 +40,7 @@ import org.hibernate.type.descriptor.JdbcTypeNameMapper;
*
* @author Steve Ebersole
*/
@SkipForDialect(value=SybaseASE15Dialect.class, comment="sybase does not support blob")
public class BasicOperationsTest extends TestCase {
@Override
protected Class<?>[] getAnnotatedClasses() {