# IGNITE-540 Remove temporary code.

Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/39ee7171
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/39ee7171
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/39ee7171

Branch: refs/heads/ignite-639
Commit: 39ee71715228a2fe1557617adc4dee5289b0c221
Parents: 8a5180c
Author: sevdokimov <sevdoki...@gridgain.com>
Authored: Mon Apr 6 14:43:08 2015 +0300
Committer: sevdokimov <sevdoki...@gridgain.com>
Committed: Mon Apr 6 14:43:08 2015 +0300

----------------------------------------------------------------------
 .../processors/query/h2/twostep/GridReduceQueryExecutor.java    | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/39ee7171/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/twostep/GridReduceQueryExecutor.java
----------------------------------------------------------------------
diff --git 
a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/twostep/GridReduceQueryExecutor.java
 
b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/twostep/GridReduceQueryExecutor.java
index 7941f12..acdc1bf 100644
--- 
a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/twostep/GridReduceQueryExecutor.java
+++ 
b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/twostep/GridReduceQueryExecutor.java
@@ -463,9 +463,6 @@ public class GridReduceQueryExecutor implements 
GridMessageListener {
                 if (scale > precision)
                     precision = scale;
             }
-            else {
-                System.out.println("1");
-            }
 
             Column col = new Column(name, type, precision, scale, displaySize);
             cols.add(col);
@@ -492,7 +489,7 @@ public class GridReduceQueryExecutor implements 
GridMessageListener {
 
             Query prepare = (Query)ses.prepare(qry.query(), false);
 
-            ArrayList<Parameter> parsedParams = prepare.getParameters();
+            List<Parameter> parsedParams = prepare.getParameters();
 
             for (int i = Math.min(parsedParams.size(), 
qry.parameters().length); --i >= 0; ) {
                 Object val = qry.parameters()[i];

Reply via email to