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

[geode] branch develop updated (7e75db9 -> 3c43081)

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

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


    from 7e75db9  GEODE-8980: bump deps (#6675)
     add 3c43081  Geode-9375: Implement ZRANGE command (#6670)

No new revisions were added by this update.

Summary of changes:
 ci/scripts/execute_redis_tests.sh                  |    1 +
 ...t.java => ZRangeNativeRedisAcceptanceTest.java} |    2 +-
 .../resources/0001-configure-redis-tests.patch     | 1768 ++++++++++++++++++++
 .../sortedset/AbstractZRangeIntegrationTest.java   |  151 ++
 ...grationTest.java => ZRangeIntegrationTest.java} |    2 +-
 .../geode/redis/internal/RedisCommandType.java     |    3 +
 .../internal/collections/IndexibleTreeSet.java     |    6 +
 .../internal/collections/OrderStatisticsSet.java   |   10 +
 .../internal/collections/OrderStatisticsTree.java  |   41 +-
 .../redis/internal/data/NullRedisSortedSet.java    |    7 +-
 .../geode/redis/internal/data/RedisSortedSet.java  |   44 +-
 .../RedisSortedSetCommandsFunctionExecutor.java    |    6 +
 .../executor/sortedset/RedisSortedSetCommands.java |    2 +
 .../{ZRankExecutor.java => ZRangeExecutor.java}    |   32 +-
 .../redis/internal/SupportedCommandsJUnitTest.java |    1 +
 .../collections/OrderStatisticsTreeTest.java       |   39 +
 .../redis/internal/data/RedisSortedSetTest.java    |   85 +
 17 files changed, 2186 insertions(+), 14 deletions(-)
 copy geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZAddNativeRedisAcceptanceTest.java => ZRangeNativeRedisAcceptanceTest.java} (93%)
 create mode 100755 geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/AbstractZRangeIntegrationTest.java
 copy geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZScoreIntegrationTest.java => ZRangeIntegrationTest.java} (94%)
 copy geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/executor/sortedset/{ZRankExecutor.java => ZRangeExecutor.java} (58%)