Nicolas Rougé commented on an issue
Hibernate ORM / Bug HHH-5948
Trying to get a PluralAttributePath from a @MappedSuperclass throws org.hibernate.MappingException: Unknown collection role
I'm trying to get the PluralAttributePath from a collection defined in a MappedSuperclass

@Entity
public class Person extends PersonBase {

    @Basic
    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

@MappedSuperclass
public abstract class PersonB...