-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Closed
Labels
Description
Describe the bug
使用Mysql数据库时,配置管理画面,按照格式查询报SQL错误
Desktop (please complete the following information):
- Version dev, 2.4.3
- Module [nacos/plugin/datasource]
Additional context
【nacos/plugin/datasource/src/main/java/com/alibaba/nacos/plugin/datasource/impl/mysql/ConfigInfoMapperByMySql.java】文件的【public MapperResult findConfigInfoLike4PageFetchRows(MapperContext context) {】方法的第252行:
if (!ArrayUtils.isEmpty(types)) {
where.in("type", types); // 这里应该是:where.and().in("type", types);
}