mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
fix: 未生效的 JOIN 跳过拼接逻辑删除。
This commit is contained in:
parent
5aa67a16c7
commit
b16edc5a3d
@ -913,6 +913,9 @@ public class TableInfo {
|
|||||||
List<Join> joins = CPI.getJoins(queryWrapper);
|
List<Join> joins = CPI.getJoins(queryWrapper);
|
||||||
if (CollectionUtil.isNotEmpty(joins)) {
|
if (CollectionUtil.isNotEmpty(joins)) {
|
||||||
for (Join join : joins) {
|
for (Join join : joins) {
|
||||||
|
if (!join.checkEffective()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
QueryTable joinQueryTable = CPI.getJoinQueryTable(join);
|
QueryTable joinQueryTable = CPI.getJoinQueryTable(join);
|
||||||
|
|
||||||
// join select
|
// join select
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user