Skip to content

Commit

Permalink
Rename parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
kasiafi authored and martint committed Jun 30, 2020
1 parent 889298f commit 830bcb9
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -65,7 +65,7 @@ public Symbol map(Symbol symbol)
return canonical;
}

public Expression map(Expression value)
public Expression map(Expression expression)
{
return ExpressionTreeRewriter.rewriteWith(new ExpressionRewriter<Void>()
{
Expand All @@ -75,7 +75,7 @@ public Expression rewriteSymbolReference(SymbolReference node, Void context, Exp
Symbol canonical = map(Symbol.from(node));
return canonical.toSymbolReference();
}
}, value);
}, expression);
}

public AggregationNode map(AggregationNode node, PlanNode source)
Expand Down

0 comments on commit 830bcb9

Please sign in to comment.