mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Fix test TestSqlUpdateBatch with correct bind type for Postgres
This commit is contained in:
@@ -34,7 +34,7 @@ public class TestSqlUpdateBatch extends BaseTestCase {
|
||||
.setParameter(1, String.valueOf(i))
|
||||
.addBatch();
|
||||
delete
|
||||
.setParameter(1, String.valueOf(i))
|
||||
.setParameter(1, i)
|
||||
.addBatch();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user