filter在合并union情况时的一个错误
This commit is contained in:
parent
96fcf6dd4d
commit
cae79f557c
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue