This is an automated email from the ASF dual-hosted git repository.
sboikov pushed a commit to branch ignite-11704
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/ignite-11704 by this push:
new 7d3fcdc ignite-11704
7d3fcdc is described below
commit 7d3fcdc3b6b3235f69c39074afa3189776865402
Author: sboikov <[email protected]>
AuthorDate: Tue Jul 30 10:54:01 2019 +0300
ignite-11704
---
.../ignite/internal/processors/query/h2/database/H2PkHashIndex.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/database/H2PkHashIndex.java
b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/database/H2PkHashIndex.java
index d3bff29..db85a7b 100644
---
a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/database/H2PkHashIndex.java
+++
b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/database/H2PkHashIndex.java
@@ -209,7 +209,7 @@ public class H2PkHashIndex extends GridH2IndexBase {
int part = store.partId();
if (partsFilter == null || partsFilter.applyPartition(part))
- cursors.add(store.cursor(cctx.cacheId()));
+ cursors.add(store.cursor(cctx.cacheId(), false));
}
Cursor pkHashCursor = new H2PkHashIndexCursor(cursors.iterator());