-
Notifications
You must be signed in to change notification settings - Fork 94
fix: javadoc for the isthmus library #645
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
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: MBWhite <[email protected]>
| * @return the number of outer scopes between the access and its correlation source, or {@code | ||
| * null} if not tracked | ||
| */ | ||
| public int getStepsOut(RexFieldAccess fieldAccess) { |
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.
that makes me wonder if we would need to change the method return type given that it's declared as a primitive int and not an Integer meaning it can not be null
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.
looks like this method is not called anywhere in the current code base
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.
yes that's a good point... it does seem redundant
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.
|
|
||
| // For example, if a grouping is defined as (0, 2, 1) in Substrait, Calcite will output it as | ||
| // (0, 1, 2), which means that the Calcite output will no longer line up with the expectations | ||
| // of the Substrait plan. |
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 not sure how I feel about removing this much information. I'm wondering whether we should better preserve this somehow.
No description provided.