filter在合并union情况时的一个错误

This commit is contained in:
Xu Chang 2024-07-19 19:27:36 +08:00
parent 96fcf6dd4d
commit cae79f557c
2 changed files with 4 additions and 1 deletions

View File

@ -425,6 +425,7 @@ function unionFilterSegment(entity, schema, ...filters) {
['#sqp']: sqpOp1,
})
});
return true;
}
else {
// not in情况子查询变成and
@ -434,6 +435,7 @@ function unionFilterSegment(entity, schema, ...filters) {
['#sqp']: sqpOp1,
})
});
return true;
}
}
}

View File

@ -466,7 +466,7 @@ function unionFilterSegment<ED extends EntityDict & BaseEntityDict, T extends ke
['#sqp']: sqpOp1,
})
});
return true;
}
else {
// not in情况子查询变成and
@ -476,6 +476,7 @@ function unionFilterSegment<ED extends EntityDict & BaseEntityDict, T extends ke
['#sqp']: sqpOp1,
})
});
return true;
}
}
}