ignite-727 GridReduceQueryExecutor doesn't compile with JDK 8
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/22cee3f2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/22cee3f2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/22cee3f2 Branch: refs/heads/ignite-721 Commit: 22cee3f2e686b580da67d9d1b12c4c42600a6099 Parents: aa8912d Author: agura <ag...@gridgain.com> Authored: Sat Apr 11 19:42:04 2015 +0300 Committer: agura <ag...@gridgain.com> Committed: Sat Apr 11 19:42:04 2015 +0300 ---------------------------------------------------------------------- .../processors/query/h2/twostep/GridReduceQueryExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/22cee3f2/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 02c7c55..b7edd27 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 @@ -484,7 +484,7 @@ public class GridReduceQueryExecutor implements GridMessageListener { Query prepare = (Query)ses.prepare(qry.query(), false); - List<Parameter> parsedParams = prepare.getParameters(); + List<org.h2.expression.Parameter> parsedParams = prepare.getParameters(); for (int i = Math.min(parsedParams.size(), qry.parameters().length); --i >= 0; ) { Object val = qry.parameters()[i];