-
Notifications
You must be signed in to change notification settings - Fork 95
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
feat(reasoner): support value type inference in udf #132
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #132 +/- ##
=========================================
Coverage ? 51.17%
Complexity ? 260
=========================================
Files ? 654
Lines ? 22381
Branches ? 3710
=========================================
Hits ? 11454
Misses ? 9551
Partials ? 1376 ☔ View full report in Codecov by Sentry. |
import java.util.List; | ||
import java.util.Map; | ||
|
||
public interface UdfMng { | ||
public interface UdfMng extends Serializable { |
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.
This class is not allowed to be serialized as it contains a Java Method Object internally.
you can call UdfMngFactory.getUdfMng to retrieve an instance
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.
fixed
This class is not allowed to be serialized as it contains a Java Method Object internally. you can call UdfMngFactory.getUdfMng to retrieve an instance
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.
LGTM
No description provided.