# i-484-1 review
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/42982382 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/42982382 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/42982382 Branch: refs/heads/ignite-980 Commit: 42982382ee92bc12073beac34d72590bf905ed3e Parents: 10febf2 Author: Yakov Zhdanov <yzhda...@gridgain.com> Authored: Wed Jun 17 18:12:49 2015 +0300 Committer: Yakov Zhdanov <yzhda...@gridgain.com> Committed: Wed Jun 17 18:12:49 2015 +0300 ---------------------------------------------------------------------- .../processors/query/h2/twostep/GridReduceQueryExecutor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/42982382/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 c570d24..6c407d9 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 @@ -438,7 +438,8 @@ public class GridReduceQueryExecutor { assert !nodes.isEmpty(); if (cctx.isReplicated() || qry.explain()) { - assert qry.explain() || !nodes.contains(ctx.cluster().get().localNode()) : "We must be on a client node."; + assert qry.explain() || !nodes.contains(ctx.cluster().get().localNode()) : + "We must be on a client node."; // Select random data node to run query on a replicated data or get EXPLAIN PLAN from a single node. nodes = Collections.singleton(F.rand(nodes));