HHH-9788 - SchemaUpdate and quoted identifiers causes tables/columns to not be found based on name search

This commit is contained in:
Steve Ebersole 2015-05-26 16:07:57 -05:00
parent c777938ce9
commit 905c79c65e
1 changed files with 0 additions and 3 deletions

View File

@ -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;