HHH-7724 JpaLargeBlobTest failing on multiple DBs

This commit is contained in:
brmeyer 2012-10-26 11:26:44 -04:00
parent 51feb11265
commit 188e9f4587
1 changed files with 3 additions and 0 deletions

View File

@ -32,6 +32,8 @@ import org.hibernate.LobHelper;
import org.hibernate.Session;
import org.hibernate.cfg.Configuration;
import org.hibernate.cfg.Environment;
import org.hibernate.dialect.H2Dialect;
import org.hibernate.testing.RequiresDialect;
import org.hibernate.testing.TestForIssue;
import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase;
import org.junit.Test;
@ -40,6 +42,7 @@ import org.junit.Test;
* @author Brett Meyer
*/
@TestForIssue( jiraKey = "HHH-7698" )
@RequiresDialect( value = H2Dialect.class, jiraKey = "HHH-7724" )
public class JpaLargeBlobTest extends BaseCoreFunctionalTestCase {
@Override