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/08/26 21:09:13 UTC

[geode] branch develop updated (b944ace -> 10f5f30)

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 b944ace  GEODE-9451: On demand authentication expiration and re-authentication (#6787)
     add 10f5f30  GEODE-9436: Implement Radish ZREMRANGEBYSCORE command (#6800)

No new revisions were added by this update.

Summary of changes:
 ...ZRemRangeByScoreNativeRedisAcceptanceTest.java} |   3 +-
 .../sortedset/ZRemRangeByScoreDUnitTest.java       | 263 ++++++++++++++++++++
 .../server/AbstractHitsMissesIntegrationTest.java  |   5 +
 .../AbstractZRemRangeByScoreIntegrationTest.java   | 271 +++++++++++++++++++++
 ...t.java => ZRemRangeByScoreIntegrationTest.java} |   2 +-
 .../geode/redis/internal/RedisCommandType.java     |   2 +
 .../redis/internal/data/NullRedisSortedSet.java    |   8 +
 .../geode/redis/internal/data/RedisSortedSet.java  |  48 ++++
 .../RedisSortedSetCommandsFunctionExecutor.java    |   6 +
 .../executor/sortedset/RedisSortedSetCommands.java |   2 +
 ...Executor.java => ZRemRangeByScoreExecutor.java} |   7 +-
 11 files changed, 610 insertions(+), 7 deletions(-)
 copy geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZRemNativeRedisAcceptanceTest.java => ZRemRangeByScoreNativeRedisAcceptanceTest.java} (91%)
 create mode 100644 geode-apis-compatible-with-redis/src/distributedTest/java/org/apache/geode/redis/internal/executor/sortedset/ZRemRangeByScoreDUnitTest.java
 create mode 100644 geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/AbstractZRemRangeByScoreIntegrationTest.java
 copy geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZRemIntegrationTest.java => ZRemRangeByScoreIntegrationTest.java} (91%)
 copy geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/executor/sortedset/{ZCountExecutor.java => ZRemRangeByScoreExecutor.java} (89%)