-
Notifications
You must be signed in to change notification settings - Fork 600
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
fix(expr, executor): Remove RowExpression
: use eval_row
and unwrap_or(false)
on Datum
, not panic on Null/None
#3587
Conversation
Codecov Report
@@ Coverage Diff @@
## main #3587 +/- ##
=======================================
Coverage 74.30% 74.31%
=======================================
Files 789 789
Lines 111361 111343 -18
=======================================
- Hits 82746 82739 -7
+ Misses 28615 28604 -11
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
In fact I don’t know where RowExpression is used. |
We can remove the RowExpression in HashJoinExecutor and use Expression instead since we have eval_row now |
Can you remove it? |
Hmm, ok. I'll do it in this PR. |
RowExpression
: use eval_row
and unwrap_or(false)
on Datum
, not panic on Null/NoneRowExpression
: use eval_row
and unwrap_or(false)
on Datum
, not panic on Null/None
LGTM! |
…ap_or(false)` on `Datum`, not panic on Null/None (risingwavelabs#3587) * eval_row and unwrap_or(false), not panic * fix * fmt * fmt * fmt * remove `RowExpression` * fmt * fix
I hereby agree to the terms of the Singularity Data, Inc. Contributor License Agreement.
What's changed and what's your intention?
RowExpression
: useeval_row
andunwrap_or(false)
onDatum
, not panic on Null/NoneChecklist
./risedev check
(or alias,./risedev c
)Refer to a related PR or issue link (optional)