This commit is contained in:
Looly
2022-08-09 21:40:25 +08:00
parent aa403cbe98
commit 47fe31cf41
4 changed files with 64 additions and 37 deletions

View File

@@ -133,4 +133,11 @@ public class DbTest {
return ps;
}), new EntityListHandler());
}
@Test
@Ignore
public void findWithDotTest() {
// 当字段带有点时导致被拆分分别wrap了因此此时关闭自动包装即可
Db.of().disableWrapper().find(Entity.of("user").set("a.b", "1"));
}
}