#2219 - Compile error with ZonedDateTime and query beans - type argument java.time.ZonedDateTime is not within bounds of type-variable D

This commit is contained in:
Robin Bygrave
2021-04-19 17:04:57 +12:00
parent 65b282a056
commit 9d54b264ad
5 changed files with 77 additions and 18 deletions
@@ -3,13 +3,15 @@ package org.querytest;
import org.example.domain.query.QContact;
import org.junit.Test;
import java.time.ZonedDateTime;
public class QContactTest {
@Test
public void test_oneToManyMap() {
new QContact()
.others.fetch()
.zoneDateTime.before(ZonedDateTime.now())
.findList();
}
}