#1867 - Change enhancement for @DbArray ... to handle nulls (like OneToMany and ManyToMany)

This commit is contained in:
rob bygrave
2019-11-20 19:59:01 +13:00
parent 6c91ed0c76
commit ca71fef74a
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -323,7 +323,7 @@
<plugin>
<groupId>io.ebean</groupId>
<artifactId>ebean-maven-plugin</artifactId>
<version>12.1.4</version>
<version>12.1.5</version>
<executions>
<execution>
<id>test</id>
@@ -32,6 +32,7 @@ public class TestDbArray_basic extends BaseTestCase {
public void insert() throws SQLException {
bean.setName("some stuff");
assertThat(bean.getStatuses()).isNotNull();
List<String> phNumbers = bean.getPhoneNumbers();
phNumbers.add("4321");