#500 - Change raw(String, Object[]) expression to varargs raw(String, Object...)

This commit is contained in:
Robin Bygrave
2015-12-16 08:11:32 +13:00
parent 1745334737
commit eb85931fe2
4 changed files with 4 additions and 4 deletions
@@ -33,7 +33,7 @@ public class TestWhereRawClause extends BaseTestCase {
.ne("id", 42)
.raw("orderQty < ?", 100)
.gt("id", 1)
.raw("unitPrice > ? and product.id > ?", new Object[]{2,3})
.raw("unitPrice > ? and product.id > ?", 2, 3)
.findList();
}