-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OR should be handled in scalarToSingleJoin and inToMarkJoin #271
Comments
the filter with ** have to stay with the SingleJoin 【2】, but the Expr bo.b2[2]=?a.a2[1] can't be deparameter here. |
what's the query? |
(bo.b2[2]=?a.a2[1] or (bo.b1[0]=b.b1[3] and bo.b2[2]<3)) will be deparameter after meet scan tabel a, i.e., as below.
|
singleJoin should produce only one row, if we pull up the **Filter, the singleJoin will produce more than one row, whitch is conflicting to singleJoin. |
if we leave the filter inside the SingleJoin, as the OrExpr can not know value of bo.b2[2]=?a.a2[1], so it will also produce more lines like marker join, i.e. (bo.b2[2]=?a.a2[1] or #marker) . |
we only handle it in existToMarkJoin
The text was updated successfully, but these errors were encountered: