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/08/12 21:05:27 UTC

[geode] branch develop updated (88860d0 -> 8d455b4)

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 88860d0  GEODE-9409: wait for PdxRegistry before executing create region (#6743)
     add 8d455b4  GEODE-9379: Implement ZREVRANGEBYSCORE (#6715)

No new revisions were added by this update.

Summary of changes:
 ...ZRevRangeByScoreNativeRedisAcceptanceTest.java} |   4 +-
 .../resources/0001-configure-redis-tests.patch     | 411 +--------------------
 .../server/AbstractHitsMissesIntegrationTest.java  |   5 +
 .../AbstractZRangeByScoreIntegrationTest.java      |  13 +-
 .../AbstractZRevRangeByScoreIntegrationTest.java   | 388 +++++++++++++++++++
 ...t.java => ZRevRangeByScoreIntegrationTest.java} |   3 +-
 .../geode/redis/internal/RedisCommandType.java     |   2 +
 .../redis/internal/data/NullRedisSortedSet.java    |   5 +
 .../geode/redis/internal/data/RedisSortedSet.java  |  85 +++--
 .../RedisSortedSetCommandsFunctionExecutor.java    |   7 +
 .../sortedset/AbstractSortedSetRangeOptions.java   |  55 +--
 ...tor.java => AbstractZRangeByScoreExecutor.java} |  52 ++-
 .../executor/sortedset/RedisSortedSetCommands.java |   3 +
 .../sortedset/SortedSetLexRangeOptions.java        |  86 ++---
 .../sortedset/SortedSetScoreRangeOptions.java      |  40 +-
 .../executor/sortedset/ZCountExecutor.java         |   2 +-
 .../executor/sortedset/ZRangeByLexExecutor.java    |   2 +-
 .../executor/sortedset/ZRangeByScoreExecutor.java  |  63 +---
 ...Executor.java => ZRevRangeByScoreExecutor.java} |   3 +-
 .../redis/internal/SupportedCommandsJUnitTest.java |   1 +
 20 files changed, 637 insertions(+), 593 deletions(-)
 copy geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZAddNativeRedisAcceptanceTest.java => ZRevRangeByScoreNativeRedisAcceptanceTest.java} (91%)
 mode change 100755 => 100644
 create mode 100644 geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/AbstractZRevRangeByScoreIntegrationTest.java
 copy geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZAddIntegrationTest.java => ZRevRangeByScoreIntegrationTest.java} (92%)
 mode change 100755 => 100644
 copy geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/executor/sortedset/{ZRangeByScoreExecutor.java => AbstractZRangeByScoreExecutor.java} (60%)
 copy geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/executor/sortedset/{ZRevRankExecutor.java => ZRevRangeByScoreExecutor.java} (94%)