This is an automated email from the ASF dual-hosted git repository.
boglesby pushed a change to branch feature/GEODE-9030
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard 751c534 GEODE-9030: Added additional unit test
discard a2ca43f GEODE-9030: Modified PartitionedIndex to reset the
arbitraryBucketIndex if necessary
add 82bf1f9 GEODE-9000: Added logic to avoid NPE during processing
Network Partition (#6129)
add 39c0abf GEODE-9009: Finish support for functionality compatible with
Redis DECRBY command
add 37358f5 GEODE-9023: Add sharding support to redis region (#6117)
add 6ead392 GEODE-9030: Modified PartitionedIndex to reset the
arbitraryBucketIndex if necessary
add 2da4a24 GEODE-9030: Added additional unit test
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (751c534)
\
N -- N -- N refs/heads/feature/GEODE-9030 (2da4a24)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../geode/internal/cache/PartitionedRegion.java | 8 +-
.../internal/cache/PartitionedRegionDataStore.java | 28 ++---
.../gms/membership/GMSJoinLeaveJUnitTest.java | 16 +++
.../membership/gms/membership/GMSJoinLeave.java | 17 ++-
geode-redis/build.gradle | 1 +
.../cluster/RedisPartitionResolverDUnitTest.java | 111 +++++++++++++++++
.../internal/executor/string/StringsDUnitTest.java | 18 ++-
.../string/AbstractDecrByIntegrationTest.java | 135 +++++++++++++++------
.../geode/redis/internal/RedisCommandType.java | 2 +-
.../geode/redis/internal/RegionProvider.java | 37 +++++-
.../redis/internal/data/ByteArrayWrapper.java | 41 +++++++
.../redis/internal/executor/cluster/CRC16.java | 71 +++++++++++
.../executor/cluster/RedisPartitionResolver.java | 17 ++-
.../redis/internal/RegionProviderJUnitTest.java | 24 ++--
.../redis/internal/SupportedCommandsJUnitTest.java | 2 +-
.../internal/data/ByteArrayWrapperJUnitTest.java | 65 ++++++++++
.../internal/executor/cluster/CRC16JUnitTest.java | 52 ++++++++
17 files changed, 556 insertions(+), 89 deletions(-)
create mode 100644
geode-redis/src/distributedTest/java/org/apache/geode/redis/internal/cluster/RedisPartitionResolverDUnitTest.java
create mode 100644
geode-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/CRC16.java
copy
geode-junit/src/main/java/org/apache/geode/management/internal/cli/commands/TestPartitionResolver.java
=>
geode-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/RedisPartitionResolver.java
(67%)
copy
geode-core/src/integrationTest/java/org/apache/geode/internal/cache/LocatorMisconfigurationTest.java
=>
geode-redis/src/test/java/org/apache/geode/redis/internal/RegionProviderJUnitTest.java
(60%)
create mode 100644
geode-redis/src/test/java/org/apache/geode/redis/internal/data/ByteArrayWrapperJUnitTest.java
create mode 100644
geode-redis/src/test/java/org/apache/geode/redis/internal/executor/cluster/CRC16JUnitTest.java