You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ja...@apache.org on 2019/11/26 19:11:52 UTC

[geode] branch develop updated (4d8d38b -> 82b6708)

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

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


    from 4d8d38b  GEODE-2184: Genericize Java version numbers in docs
     add 82b6708  GEODE-7337: Adding DescribeQueryService Command (#4291)

No new revisions were added by this update.

Summary of changes:
 .../DescribeQueryServiceCommandDUnitTest.java      | 104 ++++++++++++
 .../GfshParserAutoCompletionIntegrationTest.java   |   4 +-
 .../apache/geode/codeAnalysis/excludedClasses.txt  |   1 -
 .../internal/QueryConfigurationServiceImpl.java    |  13 +-
 .../configuration/QueryConfigService.java          |  11 +-
 .../cli/commands/CommandAvailabilityIndicator.java |   2 +-
 .../cli/commands/DescribeQueryServiceCommand.java  | 119 +++++++++++++
 .../functions/DescribeQueryServiceFunction.java    |  65 ++++++++
 .../sanctioned-geode-core-serializables.txt        |   4 +
 .../commands/DescribeQueryServiceCommandTest.java  | 185 +++++++++++++++++++++
 .../DescribeQueryServiceFunctionTest.java          |  87 ++++++++++
 11 files changed, 583 insertions(+), 12 deletions(-)
 create mode 100644 geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/DescribeQueryServiceCommandDUnitTest.java
 create mode 100644 geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/DescribeQueryServiceCommand.java
 create mode 100644 geode-core/src/main/java/org/apache/geode/management/internal/cli/functions/DescribeQueryServiceFunction.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/DescribeQueryServiceCommandTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/functions/DescribeQueryServiceFunctionTest.java