FIX: Splitcolumns must return an empty array if string was empty (#1315)

* Add test suite from rpraml

* FIX: Splitcolumns must return an empty array if string was empty

* Just the reference scripts
This commit is contained in:
Roland Praml
2018-03-02 12:16:29 +13:00
committed by Rob Bygrave
parent 0e1c815826
commit b642b3c644
64 changed files with 1945 additions and 0 deletions
@@ -6,6 +6,10 @@ import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.validation.constraints.Size;
import io.ebean.annotation.Index;
import io.ebean.annotation.NotNull;
@Entity
@Table(name = "migtest_e_ref")
@@ -16,4 +20,9 @@ public class ERef {
@OneToMany
List<EBasic> basics;
@NotNull
@Index(unique = true)
@Size(max=127)
String name;
}