HHH-9788 - SchemaUpdate and quoted identifiers causes tables/columns to not be found based on name search
This commit is contained in:
parent
c777938ce9
commit
905c79c65e
|
@ -11,7 +11,6 @@ import javax.persistence.Entity;
|
|||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.ManyToMany;
|
||||
import javax.persistence.Table;
|
||||
|
||||
import org.hibernate.annotations.GenericGenerator;
|
||||
import org.hibernate.boot.MetadataSources;
|
||||
|
@ -68,7 +67,6 @@ public class TestFkUpdating {
|
|||
|
||||
|
||||
@Entity( name = "User" )
|
||||
@Table( name = "user" )
|
||||
public static class User {
|
||||
private Integer id;
|
||||
private Set<Role> roles;
|
||||
|
@ -95,7 +93,6 @@ public class TestFkUpdating {
|
|||
}
|
||||
|
||||
@Entity( name = "Role" )
|
||||
@Table( name = "role" )
|
||||
public class Role {
|
||||
private Integer id;
|
||||
|
||||
|
|
Loading…
Reference in New Issue