NihalJain commented on code in PR #2024:
URL: https://github.com/apache/phoenix/pull/2024#discussion_r2047053654


##########
phoenix-core-client/src/main/java/org/apache/phoenix/compile/DelegateMutationPlan.java:
##########
@@ -20,71 +20,70 @@
 import java.sql.ParameterMetaData;
 import java.sql.SQLException;
 import java.util.Set;
-
 import org.apache.phoenix.execute.MutationState;
 import org.apache.phoenix.jdbc.PhoenixStatement.Operation;
 import org.apache.phoenix.schema.TableRef;
 
 public class DelegateMutationPlan implements MutationPlan {
-    @Override
-    public MutationState execute() throws SQLException {
-        return plan.execute();
-    }
+  @Override
+  public MutationState execute() throws SQLException {
+    return plan.execute();
+  }
+
+  @Override
+  public StatementContext getContext() {
+    return plan.getContext();
+  }
 
-    @Override
-    public StatementContext getContext() {
-        return plan.getContext();
-    }
+  @Override
+  public TableRef getTargetRef() {
+    return plan.getTargetRef();
+  }
 
-    @Override
-    public TableRef getTargetRef() {
-        return plan.getTargetRef();
-    }
+  @Override
+  public QueryPlan getQueryPlan() {
+    return plan.getQueryPlan();
+  }
 
-    @Override
-    public QueryPlan getQueryPlan() {
-        return plan.getQueryPlan();
-    }
+  @Override
+  public ParameterMetaData getParameterMetaData() {
+    return plan.getParameterMetaData();
+  }
 
-    @Override
-    public ParameterMetaData getParameterMetaData() {
-        return plan.getParameterMetaData();
-    }
+  @Override
+  public ExplainPlan getExplainPlan() throws SQLException {
+    return plan.getExplainPlan();
+  }
 
-    @Override
-    public ExplainPlan getExplainPlan() throws SQLException {
-        return plan.getExplainPlan();
-    }
+  @Override
+  public Set<TableRef> getSourceRefs() {
+    return plan.getSourceRefs();
+  }
 
-    @Override
-    public Set<TableRef> getSourceRefs() {
-        return plan.getSourceRefs();
-    }
+  @Override
+  public Operation getOperation() {
+    return plan.getOperation();
+  }
 
-    @Override
-    public Operation getOperation() {
-        return plan.getOperation();
-    }
+  private final MutationPlan plan;
 
-    private final MutationPlan plan;
-    
-    public DelegateMutationPlan(MutationPlan plan) {
-        this.plan = plan;
-    }
+  public DelegateMutationPlan(MutationPlan plan) {
+    this.plan = plan;
+  }
 
-    @Override
-    public Long getEstimatedRowsToScan() throws SQLException {
-        return plan.getEstimatedRowsToScan();
-    }
+  @Override
+  public Long getEstimatedRowsToScan() throws SQLException {
+    return plan.getEstimatedRowsToScan();
+  }
 
-    @Override
-    public Long getEstimatedBytesToScan() throws SQLException {
-        return plan.getEstimatedBytesToScan();
-    }
+  @Override
+  public Long getEstimatedBytesToScan() throws SQLException {
+    return plan.getEstimatedBytesToScan();
+  }
 
-    @Override
-    public Long getEstimateInfoTimestamp() throws SQLException {
-        return plan.getEstimateInfoTimestamp();
-    }
+  @Override
+  public Long getEstimateInfoTimestamp() throws SQLException {

Review Comment:
   note to self: checkpoint



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@phoenix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to