You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by do...@apache.org on 2021/07/07 22:16:14 UTC

[geode] branch develop updated (25d8e34 -> 996d24b)

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

donalevans pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git.


    from 25d8e34  GEODE-6588: Cleanup RemoteParallelGatewaySenderEventProcessor
     add 996d24b  GEODE-9187: Implement Radish ZREVRANK command (#6674)

No new revisions were added by this update.

Summary of changes:
 ...java => ZRevRankNativeRedisAcceptanceTest.java} |   3 +-
 .../server/AbstractHitsMissesIntegrationTest.java  |  41 +++---
 .../sortedset/AbstractZRevRankIntegrationTest.java | 141 +++++++++++++++++++++
 ...ationTest.java => ZRevRankIntegrationTest.java} |   3 +-
 .../geode/redis/internal/RedisCommandType.java     |   2 +
 .../redis/internal/data/NullRedisSortedSet.java    |  28 ++--
 .../geode/redis/internal/data/RedisSortedSet.java  | 118 +++++++++--------
 .../RedisSortedSetCommandsFunctionExecutor.java    |  26 ++--
 .../executor/sortedset/RedisSortedSetCommands.java |  12 +-
 .../internal/executor/sortedset/ZRankExecutor.java |   2 +-
 .../{ZRankExecutor.java => ZRevRankExecutor.java}  |   4 +-
 .../redis/internal/SupportedCommandsJUnitTest.java |   1 +
 12 files changed, 268 insertions(+), 113 deletions(-)
 copy geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZAddNativeRedisAcceptanceTest.java => ZRevRankNativeRedisAcceptanceTest.java} (93%)
 mode change 100755 => 100644
 create mode 100644 geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/AbstractZRevRankIntegrationTest.java
 copy geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZRangeIntegrationTest.java => ZRevRankIntegrationTest.java} (93%)
 mode change 100755 => 100644
 copy geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/executor/sortedset/{ZRankExecutor.java => ZRevRankExecutor.java} (90%)