This is an automated email from the ASF dual-hosted git repository.
apolovtsev pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
from 53f1f5cedd IGNITE-20649 Sql. Added casting to the required type for
EXCEPT/INTERSECT operations (#3479)
add 997f53db50 IGNITE-20126 Handle 'index storage is under destruction' on
read/write (#3447)
No new revisions were added by this update.
Summary of changes:
.../util/subscription/OrderedMergePublisher.java | 58 +++++---
.../criteria/CriteriaExceptionMapperUtilTest.java | 2 +-
modules/index/build.gradle | 3 +
.../ItIndexAndIndexStorageDestructionTest.java | 164 +++++++++++++++++++++
modules/platforms/cpp/ignite/odbc/common_types.h | 2 +-
.../storage/StorageDestroyedException.java | 8 +
.../ignite/internal/storage/util/StorageUtils.java | 34 ++++-
.../index/impl/AbstractTestIndexStorage.java | 24 +--
.../storage/index/impl/TestHashIndexStorage.java | 4 +-
.../storage/index/impl/TestSortedIndexStorage.java | 10 +-
.../index/AbstractPageMemoryIndexStorage.java | 55 ++++---
.../index/hash/PageMemoryHashIndexStorage.java | 6 +-
.../index/sorted/PageMemorySortedIndexStorage.java | 8 +-
.../rocksdb/index/AbstractRocksDbIndexStorage.java | 35 ++++-
.../rocksdb/index/RocksDbHashIndexStorage.java | 6 +-
.../rocksdb/index/RocksDbSortedIndexStorage.java | 8 +-
.../internal/table/distributed/IndexLocker.java | 5 +-
.../table/distributed/SortedIndexLocker.java | 9 +-
.../table/distributed/SortedIndexLockerTest.java | 68 +++++++++
19 files changed, 429 insertions(+), 80 deletions(-)
create mode 100644
modules/index/src/integrationTest/java/org/apache/ignite/internal/index/ItIndexAndIndexStorageDestructionTest.java
create mode 100644
modules/table/src/test/java/org/apache/ignite/internal/table/distributed/SortedIndexLockerTest.java