mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1891 - Deprecate createSqlQuery() ... migrate to sqlQuery()
This commit is contained in:
@@ -38,7 +38,7 @@ public class TestBinaryUUID extends BaseTestCase {
|
||||
assertEquals(one1.getName(), fetch1.getName());
|
||||
|
||||
String sql = "select id, name from uuone";
|
||||
List<SqlRow> list = DB.createSqlQuery(sql).findList();
|
||||
List<SqlRow> list = DB.sqlQuery(sql).findList();
|
||||
for (SqlRow sqlRow : list) {
|
||||
Object sqlId = sqlRow.get("id");
|
||||
assertNotNull(sqlId);
|
||||
|
||||
Reference in New Issue
Block a user