You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2015/07/07 08:51:07 UTC

[35/50] incubator-ignite git commit: sprint-7 - Merge branch ignite-1061 into ignite-sprint-7

sprint-7 - Merge branch ignite-1061 into ignite-sprint-7


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

Branch: refs/heads/ignite-950
Commit: b86bc04906f542cee5749039dc93b05fd4140785
Parents: 038755c
Author: Alexey Goncharuk <ag...@gridgain.com>
Authored: Wed Jul 1 10:47:24 2015 -0700
Committer: Alexey Goncharuk <ag...@gridgain.com>
Committed: Wed Jul 1 10:47:24 2015 -0700

----------------------------------------------------------------------
 .../ignite/internal/processors/query/GridQueryProcessor.java       | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/b86bc049/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java
index f2710b3..a60cfd1 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java
@@ -130,6 +130,8 @@ public class GridQueryProcessor extends GridProcessorAdapter {
 
                     TypeDescriptor desc = new TypeDescriptor();
 
+                    // TODO IGNITE-950 need class to check enableFieldsIndexing, but class may be absent on server node.
+                    // TODO use old code if class is available on server node. CacheIndexedObjectImpl.
                     Class<?> keyCls = meta.getKeyType() != null ? U.classForName(meta.getKeyType(), null) : null;
                     Class<?> valCls = meta.getValueType() != null ? U.classForName(meta.getValueType(), null) : null;