Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
shuai-xu committed Sep 12, 2024
1 parent f8b6990 commit f95e2b8
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ public class GenerateRelNode implements RelNode, Serializable {
private final AdvancedExtensionNode extensionNode;
private final boolean outer;

GenerateRelNode(RelNode input, ExpressionNode generator, List<ExpressionNode> childOutput, boolean outer) {
GenerateRelNode(
RelNode input,
ExpressionNode generator,
List<ExpressionNode> childOutput,
boolean outer) {
this(input, generator, childOutput, null, outer);
}

Expand Down

0 comments on commit f95e2b8

Please sign in to comment.