HHH-12935 Require sequence support in ExportIdentifierTests

(cherry picked from commit 66d9859813)
This commit is contained in:
Guillaume Smet 2018-10-16 19:23:41 +02:00 committed by Gail Badner
parent 5e8646e3bd
commit 45a76d855c
2 changed files with 6 additions and 3 deletions

View File

@ -28,13 +28,14 @@ import org.hibernate.mapping.Index;
import org.hibernate.mapping.PrimaryKey;
import org.hibernate.mapping.Table;
import org.hibernate.mapping.UniqueKey;
import org.hibernate.testing.DialectChecks;
import org.hibernate.testing.RequiresDialectFeature;
import org.hibernate.testing.TestForIssue;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
@RequiresDialectFeature(DialectChecks.SupportsSequences.class)
public class ExportIdentifierTest {
@Test

View File

@ -19,12 +19,14 @@ import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.boot.spi.MetadataBuildingOptions;
import org.hibernate.engine.jdbc.env.spi.JdbcEnvironment;
import org.hibernate.id.enhanced.SequenceStructure;
import org.hibernate.testing.DialectChecks;
import org.hibernate.testing.RequiresDialectFeature;
import org.hibernate.testing.TestForIssue;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
@RequiresDialectFeature(DialectChecks.SupportsSequences.class)
public class ExportIdentifierTest {
@Test