Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Dane Pitkin <[email protected]>
  • Loading branch information
davisusanibar and danepitkin authored Nov 29, 2023
1 parent 1d23187 commit a677e47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

@Value.Immutable
public abstract class ExtendedExpression {
public abstract List<ExpressionReference> getReferredExpr();
public abstract List<ExpressionReference> getReferredExpressions();

public abstract NamedStruct getBaseSchema();

Expand All @@ -21,7 +21,7 @@ public abstract class ExtendedExpression {

@Value.Immutable
public abstract static class ExpressionReference {
public abstract Expression getReferredExpr();
public abstract Expression getExpression();

public abstract List<String> getOutputNames();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ExtendedExpressionProtoConverter {
public ExtendedExpression toProto(
io.substrait.extended.expression.ExtendedExpression extendedExpression) {

ExtendedExpression.Builder extendedExpressionBuilder = ExtendedExpression.newBuilder();
ExtendedExpression.Builder builder = ExtendedExpression.newBuilder();
ExtensionCollector functionCollector = new ExtensionCollector();

final ExpressionProtoConverter expressionProtoConverter =
Expand Down

0 comments on commit a677e47

Please sign in to comment.