Skip to content

Commit b021d13

Browse files
committed
HHH-18693 @Exclude-ing "troublemakers" with illegal URI character(s) in entity name
1 parent 4aea444 commit b021d13

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/collection/bag/PersistentBagContainsTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import jakarta.persistence.ManyToOne;
1515
import jakarta.persistence.OneToMany;
1616

17+
import org.hibernate.annotations.processing.Exclude;
1718
import org.hibernate.testing.orm.junit.JiraKey;
1819
import org.hibernate.testing.orm.junit.DomainModel;
1920
import org.hibernate.testing.orm.junit.SessionFactory;
@@ -34,6 +35,7 @@
3435
}
3536
)
3637
@SessionFactory
38+
@Exclude
3739
public class PersistentBagContainsTest {
3840

3941
/**

hibernate-core/src/test/java/org/hibernate/orm/test/event/entity/MergeListPreAndPostPersistTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import jakarta.persistence.OneToMany;
1414

1515
import org.hibernate.Session;
16+
import org.hibernate.annotations.processing.Exclude;
1617
import org.hibernate.event.service.spi.EventListenerRegistry;
1718
import org.hibernate.event.spi.EventType;
1819
import org.hibernate.event.spi.PostInsertEvent;
@@ -31,6 +32,7 @@
3132
* @author Gail Badner
3233
*/
3334
@JiraKey( value = "HHH-9979")
35+
@Exclude
3436
public class MergeListPreAndPostPersistTest extends BaseCoreFunctionalTestCase {
3537

3638
protected Class[] getAnnotatedClasses() {

hibernate-core/src/test/java/org/hibernate/orm/test/hql/QuotedIdentifierTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import java.util.List;
88

9+
import org.hibernate.annotations.processing.Exclude;
910
import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase;
1011
import org.junit.After;
1112
import org.junit.Before;
@@ -24,6 +25,7 @@
2425
/**
2526
* @author Christian Beikov
2627
*/
28+
@Exclude
2729
public class QuotedIdentifierTest extends BaseCoreFunctionalTestCase {
2830

2931
private Person person;

hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateWithUseJdbcMetadataDefaultsSettingToFalseAndQuotedNameTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import jakarta.persistence.Entity;
1515
import jakarta.persistence.Id;
1616

17+
import org.hibernate.annotations.processing.Exclude;
1718
import org.hibernate.boot.MetadataSources;
1819
import org.hibernate.boot.registry.StandardServiceRegistry;
1920
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
@@ -36,6 +37,7 @@
3637
import static org.junit.Assert.assertThat;
3738

3839
@JiraKey(value = "HHH-13788")
40+
@Exclude
3941
public class SchemaUpdateWithUseJdbcMetadataDefaultsSettingToFalseAndQuotedNameTest {
4042

4143
private File updateOutputFile;

0 commit comments

Comments
 (0)