Test for #293 - Invalid result rows when ManyToMany "fetch joined" with additional child OneToMany or ManyToMany child relationship fetched

This commit is contained in:
rbygrave
2015-05-13 21:00:10 +12:00
parent 43003f4a3a
commit 0da764ed0c
5 changed files with 326 additions and 0 deletions
@@ -0,0 +1,32 @@
package com.avaje.tests.level;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entity
public class Level4 {
@Id
Long id;
String name;
public Level4(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}