mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#500 - Change raw(String, Object[]) expression to varargs raw(String, Object...)
This commit is contained in:
@@ -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();
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user