-
Notifications
You must be signed in to change notification settings - Fork 820
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 array equal check #571
Conversation
Signed-off-by: Ruihang Xia <[email protected]>
Signed-off-by: Ruihang Xia <[email protected]>
Signed-off-by: Ruihang Xia <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #571 +/- ##
==========================================
- Coverage 82.47% 82.47% -0.01%
==========================================
Files 167 167
Lines 46144 46198 +54
==========================================
+ Hits 38059 38100 +41
- Misses 8085 8098 +13
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @waynexia , looks great 👍
@@ -2347,7 +2347,7 @@ mod tests { | |||
nulls_first: true, | |||
}), | |||
Some(3), | |||
vec![None, None, Some(vec![Some(2)])], | |||
vec![None, None, Some(vec![Some(1)])], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
FYI @nevi-me and @bjchambers |
Thanks again @waynexia |
* pin this bug down & fix Signed-off-by: Ruihang Xia <[email protected]> * tidy Signed-off-by: Ruihang Xia <[email protected]> * add some test cases Signed-off-by: Ruihang Xia <[email protected]>
* pin this bug down & fix Signed-off-by: Ruihang Xia <[email protected]> * tidy Signed-off-by: Ruihang Xia <[email protected]> * add some test cases Signed-off-by: Ruihang Xia <[email protected]> Co-authored-by: Ruihang Xia <[email protected]>
Which issue does this PR close?
Closes #570.
What changes are included in this PR?
This PR fixes the problem mentioned in #570 and adds some negative test cases.
Are there any user-facing changes?
No.