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 2016/02/04 11:09:42 UTC

[39/50] [abbrv] ignite git commit: sql-store-idx - wip

sql-store-idx - wip


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

Branch: refs/heads/sql-store
Commit: 7a6a1448806cf9d8c035bc139f8b6ea42a0f5aec
Parents: d20e43f
Author: S.Vladykin <sv...@gridgain.com>
Authored: Thu Jan 28 08:50:00 2016 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Wed Feb 3 17:13:41 2016 +0300

----------------------------------------------------------------------
 .../internal/processors/query/h2/opt/GridH2Row.java       | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/7a6a1448/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java
----------------------------------------------------------------------
diff --git a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java
index 3b6b56e..a1aa728 100644
--- a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java
+++ b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java
@@ -17,6 +17,7 @@
 
 package org.apache.ignite.internal.processors.query.h2.opt;
 
+import org.apache.ignite.internal.processors.cache.CacheObject;
 import org.h2.result.Row;
 import org.h2.value.Value;
 
@@ -24,6 +25,15 @@ import org.h2.value.Value;
  * Row with locking support needed for unique key conflicts resolution.
  */
 public class GridH2Row extends Row implements GridSearchRowPointer {
+    /** */
+    public long link; // TODO remove
+
+    /** */
+    public CacheObject key; // TODO remove
+
+    /** */
+    public CacheObject val; // TODO remove
+
     /**
      * @param data Column values.
      */