You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2020/04/02 08:58:44 UTC

[ignite] branch master updated (bf125403 -> 7f018a8)

This is an automated email from the ASF dual-hosted git repository.

amashenkov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git.


    from bf125403 IGNITE-12813: Cancel scan query command. (#7588)
     add 7f018a8  IGNITE-12710 Introduce extended log mode for index creation\rebuilt. (#7461)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/ignite/IgniteSystemProperties.java  |   8 +
 .../processors/cache/GridCacheEntryEx.java         |   7 +-
 .../processors/cache/GridCacheMapEntry.java        |  16 +-
 .../processors/query/GridQueryIndexing.java        |  11 +
 .../processors/query/GridQueryProcessor.java       |   9 +-
 .../schema/SchemaIndexCachePartitionWorker.java    |  72 ++++++-
 .../query/schema/SchemaIndexCacheStat.java         |  88 ++++++++
 .../query/schema/SchemaIndexCacheVisitorImpl.java  |  98 +++++++--
 .../processors/cache/GridCacheTestEntryEx.java     |   4 +-
 .../processors/query/h2/IgniteH2Indexing.java      |  12 ++
 .../processors/query/h2/SchemaManager.java         |   2 +-
 .../processors/query/h2/database/H2TreeIndex.java  |  18 ++
 .../processors/query/h2/opt/GridH2Table.java       |  10 +-
 .../processors/database/RebuildIndexTest.java      | 232 +++++++++++++++++++++
 .../testsuites/IgnitePdsWithIndexingTestSuite.java |   4 +-
 15 files changed, 540 insertions(+), 51 deletions(-)
 create mode 100644 modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/SchemaIndexCacheStat.java
 create mode 100644 modules/indexing/src/test/java/org/apache/ignite/internal/processors/database/RebuildIndexTest.java