修复Db.findAll全局忽略大小写无效问题

This commit is contained in:
Looly 2023-08-15 10:27:42 +08:00
parent 2f23075ac2
commit ddc4fdb2c6
5 changed files with 10 additions and 9 deletions

View File

@ -19,6 +19,7 @@
* 【core 】 修复DateUtil.parse 给定一个时间解析错误问题issue#I7QI6R@Gitee * 【core 】 修复DateUtil.parse 给定一个时间解析错误问题issue#I7QI6R@Gitee
* 【core 】 去除默认的ACCEPT_LANGUAGEissue#3258@Github * 【core 】 去除默认的ACCEPT_LANGUAGEissue#3258@Github
* 【core 】 修复FieldsComparator比较结果不正确问题issue#3259@Github * 【core 】 修复FieldsComparator比较结果不正确问题issue#3259@Github
* 【core 】 修复Db.findAll全局忽略大小写无效问题issue#I7T30Y@Gitee
------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------
# 5.8.21(2023-07-29) # 5.8.21(2023-07-29)

View File

@ -624,7 +624,7 @@ public abstract class AbstractDb implements Serializable {
* @throws SQLException SQL执行异常 * @throws SQLException SQL执行异常
*/ */
public List<Entity> findAll(Entity where) throws SQLException { public List<Entity> findAll(Entity where) throws SQLException {
return find(where, EntityListHandler.create()); return find(where, new EntityListHandler(this.caseInsensitive));
} }
/** /**

View File

@ -108,7 +108,7 @@ public class CRUDTest {
@Test @Test
public void findTest() throws SQLException { public void findTest() throws SQLException {
List<Entity> find = db.find(CollUtil.newArrayList("name AS name2"), Entity.create("user"), new EntityListHandler()); List<Entity> find = db.find(CollUtil.newArrayList("name AS name2"), Entity.create("user"), EntityListHandler.create());
Assert.assertFalse(find.isEmpty()); Assert.assertFalse(find.isEmpty());
} }

View File

@ -13,34 +13,34 @@ import java.util.List;
/** /**
* SqlRunner线程安全测试 * SqlRunner线程安全测试
* *
* @author looly * @author looly
* *
*/ */
@Ignore @Ignore
public class ConcurentTest { public class ConcurentTest {
private Db db; private Db db;
@Before @Before
public void init() { public void init() {
db = Db.use("test"); db = Db.use("test");
} }
@Test @Test
public void findTest() { public void findTest() {
for(int i = 0; i < 10000; i++) { for(int i = 0; i < 10000; i++) {
ThreadUtil.execute(() -> { ThreadUtil.execute(() -> {
List<Entity> find; List<Entity> find;
try { try {
find = db.find(CollectionUtil.newArrayList("name AS name2"), Entity.create("user"), new EntityListHandler()); find = db.find(CollectionUtil.newArrayList("name AS name2"), Entity.create("user"), EntityListHandler.create());
} catch (SQLException e) { } catch (SQLException e) {
throw new DbRuntimeException(e); throw new DbRuntimeException(e);
} }
Console.log(find); Console.log(find);
}); });
} }
//主线程关闭会导致连接池销毁sleep避免此情况引起的问题 //主线程关闭会导致连接池销毁sleep避免此情况引起的问题
ThreadUtil.sleep(5000); ThreadUtil.sleep(5000);
} }

View File

@ -130,7 +130,7 @@ public class DbTest {
ps.setFetchSize(Integer.MIN_VALUE); ps.setFetchSize(Integer.MIN_VALUE);
ps.setFetchDirection(ResultSet.FETCH_FORWARD); ps.setFetchDirection(ResultSet.FETCH_FORWARD);
return ps; return ps;
}), new EntityListHandler()); }), EntityListHandler.create());
} }
@Test @Test