Skip to content

Commit

Permalink
HHH-12108 - Fix tests failing on Oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
vladmihalcea committed Nov 21, 2017
1 parent 5b71053 commit 7f70dcc
Show file tree
Hide file tree
Showing 13 changed files with 294 additions and 331 deletions.
Expand Up @@ -21,15 +21,18 @@


import org.hibernate.Session; import org.hibernate.Session;
import org.hibernate.annotations.NaturalId; import org.hibernate.annotations.NaturalId;
import org.hibernate.dialect.Oracle8iDialect;
import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase; import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase;


import org.hibernate.testing.SkipForDialect;
import org.junit.Test; import org.junit.Test;


import static org.hibernate.testing.transaction.TransactionUtil.doInJPA; import static org.hibernate.testing.transaction.TransactionUtil.doInJPA;


/** /**
* @author Vlad Mihalcea * @author Vlad Mihalcea
*/ */
@SkipForDialect(Oracle8iDialect.class)
public class EmbeddableOverrideTest extends BaseEntityManagerFunctionalTestCase { public class EmbeddableOverrideTest extends BaseEntityManagerFunctionalTestCase {


@Override @Override
Expand Down

0 comments on commit 7f70dcc

Please sign in to comment.