-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Allow evaluation of "top of set" and "bottom of set" ECL expressions #1331
Conversation
- "top of set" expressions - "bottom of set" expressions - alternate identifiers (recognized but currently unsupported)
...to match signature change in parent class
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## 9.x #1331 +/- ##
============================================
+ Coverage 48.57% 48.59% +0.01%
- Complexity 14073 14084 +11
============================================
Files 1950 1950
Lines 95449 95467 +18
Branches 11028 11021 -7
============================================
+ Hits 46363 46388 +25
Misses 46049 46049
+ Partials 3037 3030 -7 ☔ View full report in Codecov by Sentry. |
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.
🥓
Just a small note: the ECLRewriter logic can also be used to convert some constructs to another ones.
|
||
private Set<String> toStringSet(final long[] idArray) { | ||
if (idArray == null || idArray.length < 1) { | ||
return newHashSet(); |
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.
I'm just wondering if this should be mutable. Or would it be possible to use an immutable empty set here?
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.
LGTM!
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.
🥓
No description provided.