Follow up for #3248 - add betweenProperties on query bean

This commit is contained in:
Rob Bygrave
2023-12-05 23:32:16 +13:00
parent 7b635acf56
commit 720832122c
3 changed files with 27 additions and 3 deletions
@@ -409,7 +409,7 @@ class EqlParserTest extends BaseTestCase {
Query<Customer> query = parse("where 'x' between name and smallnote");
query.findList();
assertSql(query).contains("where ? between t0.name and t0.smallnote");
assertSql(query).contains("where ? between t0.name and t0.smallnote");
}
@Test
@@ -418,7 +418,7 @@ class EqlParserTest extends BaseTestCase {
query.setParameter("some", "A");
query.findList();
assertSql(query).contains("where ? between t0.name and t0.smallnote");
assertSql(query).contains("where ? between t0.name and t0.smallnote");
}
@Test