HHH-10320 : Unit test failures due to feature tested that is not supported by database

(cherry picked from commit cd581f8dfd2021c25dc432de3f41901c793073cd)
This commit is contained in:
Gail Badner 2015-11-23 12:14:46 -08:00
parent 710cf4fee1
commit 27f04f155d

View File

@ -21,6 +21,8 @@
import org.hibernate.boot.spi.MetadataImplementor;
import org.hibernate.cfg.AvailableSettings;
import org.hibernate.testing.DialectChecks;
import org.hibernate.testing.RequiresDialectFeature;
import org.hibernate.testing.TestForIssue;
import org.hibernate.testing.junit4.BaseUnitTestCase;
import org.junit.After;
@ -32,6 +34,7 @@
/**
* @author Steve Ebersole
*/
@RequiresDialectFeature(value= DialectChecks.SupportsSequences.class, jiraKey = "HHH-10320" )
public class SequenceExportTest extends BaseUnitTestCase {
private StandardServiceRegistry ssr;