You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2019/12/11 22:35:26 UTC

[calcite] branch master updated: Adjust code indentation (Axis)

This is an automated email from the ASF dual-hosted git repository.

jhyde pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new 25a2e5a  Adjust code indentation (Axis)
25a2e5a is described below

commit 25a2e5a2df6ada03b36102dc5d46f115c8de2547
Author: Axis <do...@outlook.com>
AuthorDate: Wed Dec 11 18:03:17 2019 +0800

    Adjust code indentation (Axis)
    
    Current indentation would confuse developers.
    
    Close apache/calcite#1649
---
 core/src/main/java/org/apache/calcite/sql2rel/RelDecorrelator.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/src/main/java/org/apache/calcite/sql2rel/RelDecorrelator.java b/core/src/main/java/org/apache/calcite/sql2rel/RelDecorrelator.java
index fbfc8bf..87623e2 100644
--- a/core/src/main/java/org/apache/calcite/sql2rel/RelDecorrelator.java
+++ b/core/src/main/java/org/apache/calcite/sql2rel/RelDecorrelator.java
@@ -2395,11 +2395,11 @@ public class RelDecorrelator implements ReflectiveVisitor {
           flavor
               ? operand(Correlate.class,
                   operand(RelNode.class, any()),
-                      operand(Project.class,
-                          operand(Aggregate.class, any())))
+                  operand(Project.class,
+                      operand(Aggregate.class, any())))
               : operand(Correlate.class,
                   operand(RelNode.class, any()),
-                      operand(Aggregate.class, any())),
+                  operand(Aggregate.class, any())),
           relBuilderFactory, null);
       this.flavor = flavor;
     }