You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bs...@apache.org on 2020/04/13 18:16:16 UTC

[geode] branch feature/GEODE-7852query updated (29ce395 -> cd26491)

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

bschuchardt pushed a change to branch feature/GEODE-7852query
in repository https://gitbox.apache.org/repos/asf/geode.git.


 discard 29ce395  incorporating Dan's new Rule to avoid running on Windows
 discard 5386d78  fixing comment
 discard 649f0a7  removing foo/bar from cluster startup script and test
 discard 047ff74  adding a removeAll test
 discard afa0485  more statics removed
 discard 4511249  removing more statics
 discard bffd966  avoiding Windows lack of Docker support
 discard 4d593a7  rebasing on develop after Bill's revert
 discard a32d211  removed useless test of toString method
 discard f49151a  GEODE-7852: Add client side configuration option to support a SNI proxy
     add 50ce279  Decouple geode in sadd,srem,smembers (#4912)
     add b664be6  GEODE-7978: Improve tests for Redis Module SREM Command (#4937)
     add bab8c29  GEODE-7981: Change the redis default region type to PARTITION_REDUNDANT (#4945)
     add 3123533  Revert "GEODE-7978: Improve tests for Redis Module SREM Command (#4937)" (#4947)
     add 435cf3f  GEODE-7978: Improve tests for Redis Module SREM Command (#4948)
     add ce157ec  GEODE-7852: Create simple CQ over SNI test. (#4942)
     add e12bf75  GEODE-7852: Add client side configuration option to support a SNI proxy
     add f64662a  removed useless test of toString method
     add dd80530  rebasing on develop after Bill's revert
     add 2e5aff3  avoiding Windows lack of Docker support
     add b9662f8  removing more statics
     add 636197b  more statics removed
     add f8b33c1  adding a removeAll test
     add 6292543  removing foo/bar from cluster startup script and test
     add f7582bd  fixing comment
     add cd26491  incorporating Dan's new Rule to avoid running on Windows

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (29ce395)
            \
             N -- N -- N   refs/heads/feature/GEODE-7852query (cd26491)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../client/sni/ClientSNICQAcceptanceTest.java      | 186 +++++++++++++++++++++
 .../org/apache/geode/redis/GeoIntegrationTest.java |   3 +-
 .../apache/geode/redis/SetsIntegrationTest.java    |  93 +++++++++--
 .../org/apache/geode/redis/GeodeRedisServer.java   |   5 +-
 .../org/apache/geode/redis/internal/Command.java   |  10 ++
 .../executor/hash/GeodeRedisHashSynchronized.java  | 105 ++++++++++++
 .../redis/internal/executor/hash/HDelExecutor.java |  36 +---
 .../internal/executor/hash/HGetAllExecutor.java    |  21 +--
 .../internal/executor/hash/HMSetExecutor.java      |  30 +---
 .../redis/internal/executor/hash/HSetExecutor.java |  40 +----
 .../redis/internal/executor/hash/RedisHash.java    |  17 +-
 .../executor/set/GeodeRedisSetSynchronized.java    |  79 +++++++++
 .../{SUnionStoreExecutor.java => RedisSet.java}    |  19 +--
 .../redis/internal/executor/set/SAddExecutor.java  |  38 +----
 .../internal/executor/set/SMembersExecutor.java    |  31 +---
 .../redis/internal/executor/set/SRemExecutor.java  |  41 +----
 .../executor/set/SetExecutorJUnitTest.java         |  18 +-
 17 files changed, 517 insertions(+), 255 deletions(-)
 create mode 100644 geode-assembly/src/acceptanceTest/java/org/apache/geode/client/sni/ClientSNICQAcceptanceTest.java
 create mode 100644 geode-redis/src/main/java/org/apache/geode/redis/internal/executor/hash/GeodeRedisHashSynchronized.java
 copy geode-core/src/main/java/org/apache/geode/cache/internal/CommandProcessor.java => geode-redis/src/main/java/org/apache/geode/redis/internal/executor/hash/RedisHash.java (70%)
 create mode 100644 geode-redis/src/main/java/org/apache/geode/redis/internal/executor/set/GeodeRedisSetSynchronized.java
 copy geode-redis/src/main/java/org/apache/geode/redis/internal/executor/set/{SUnionStoreExecutor.java => RedisSet.java} (75%)
 mode change 100755 => 100644