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

[geode] branch develop updated (8161df8 -> 798037e)

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

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


    from 8161df8  GEODE-9277: Redis FLUSHALL should only remove local keys (#6481)
     add 798037e  GEODE-9306: support ZINCRBY command (#6534)

No new revisions were added by this update.

Summary of changes:
 ...java => ZIncrByNativeRedisIntegrationTest.java} |   5 +-
 .../server/AbstractHitsMissesIntegrationTest.java  |  16 +-
 .../sortedset/AbstractZIncrByIntegrationTest.java  | 298 +++++++++++++++++++++
 ...rationTest.java => ZIncrByIntegrationTest.java} |   5 +-
 .../geode/redis/internal/RedisCommandType.java     |   2 +
 .../geode/redis/internal/RedisConstants.java       |   1 +
 .../redis/internal/data/NullRedisSortedSet.java    |  44 +++
 .../geode/redis/internal/data/RedisSortedSet.java  |  54 +++-
 .../RedisSortedSetCommandsFunctionExecutor.java    |   6 +
 .../redis/internal/executor/CommandFunction.java   |   5 +
 .../executor/sortedset/RedisSortedSetCommands.java |   2 +
 .../RedisSortedSetCommandsFunctionInvoker.java     |   6 +
 .../{ZScoreExecutor.java => ZIncrByExecutor.java}  |  15 +-
 .../redis/internal/SupportedCommandsJUnitTest.java |   1 +
 14 files changed, 440 insertions(+), 20 deletions(-)
 copy geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZAddNativeRedisAcceptanceTest.java => ZIncrByNativeRedisIntegrationTest.java} (93%)
 mode change 100755 => 100644
 create mode 100644 geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/AbstractZIncrByIntegrationTest.java
 copy geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/sortedset/{ZCardIntegrationTest.java => ZIncrByIntegrationTest.java} (93%)
 copy geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/executor/sortedset/{ZScoreExecutor.java => ZIncrByExecutor.java} (83%)