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 2017/01/11 17:27:43 UTC

[14/22] ignite git commit: ignite-gg-11414 minor update

ignite-gg-11414 minor update


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

Branch: refs/heads/ignite-3477
Commit: bb2ad161888b676bd8afc7d4783fe939332f7064
Parents: c7f1cce
Author: Dmitriy Govorukhin <dg...@gridgain.com>
Authored: Mon Jan 9 18:38:43 2017 +0300
Committer: Dmitriy Govorukhin <dg...@gridgain.com>
Committed: Mon Jan 9 18:38:43 2017 +0300

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


http://git-wip-us.apache.org/repos/asf/ignite/blob/bb2ad161/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java
----------------------------------------------------------------------
diff --git a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java
index b1a594c..4ef015b 100644
--- a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java
+++ b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java
@@ -1576,6 +1576,8 @@ public abstract class GridH2IndexBase extends BaseIndex {
          * @param cursor Cursor.
          */
         private CursorIteratorWrapper(GridCursor<GridH2Row> cursor) {
+            assert cursor != null;
+
             this.cursor = cursor;
 
             try {