Skip to content

Commit 905c79c

Browse files
committed
HHH-9788 - SchemaUpdate and quoted identifiers causes tables/columns to not be found based on name search
1 parent c777938 commit 905c79c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

hibernate-core/src/test/java/org/hibernate/test/schemaupdate/TestFkUpdating.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import javax.persistence.GeneratedValue;
1212
import javax.persistence.Id;
1313
import javax.persistence.ManyToMany;
14-
import javax.persistence.Table;
1514

1615
import org.hibernate.annotations.GenericGenerator;
1716
import org.hibernate.boot.MetadataSources;
@@ -68,7 +67,6 @@ public void testUpdate() {
6867

6968

7069
@Entity( name = "User" )
71-
@Table( name = "user" )
7270
public static class User {
7371
private Integer id;
7472
private Set<Role> roles;
@@ -95,7 +93,6 @@ public void setRoles(Set<Role> roles) {
9593
}
9694

9795
@Entity( name = "Role" )
98-
@Table( name = "role" )
9996
public class Role {
10097
private Integer id;
10198

0 commit comments

Comments
 (0)