You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2019/01/10 00:58:22 UTC

[geode] 01/02: updated the help strings for catalog and schema

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

dschneider pushed a commit to branch feature/GEODE-6225
in repository https://gitbox.apache.org/repos/asf/geode.git

commit fb710063ea2b36ef9c8999bae3c2944f78858b91
Author: Darrel Schneider <ds...@pivotal.io>
AuthorDate: Wed Jan 9 16:57:02 2019 -0800

    updated the help strings for catalog and schema
---
 .../geode/connectors/jdbc/internal/cli/CreateMappingCommand.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommand.java b/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommand.java
index c911637..6f73e2b 100644
--- a/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommand.java
+++ b/geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommand.java
@@ -68,10 +68,10 @@ public class CreateMappingCommand extends SingleGfshCommand {
       "The table column names to use as the region key for this JDBC mapping. If more than one column name is given then they must be separated by commas.";
   static final String CREATE_MAPPING__CATALOG_NAME = "catalog";
   static final String CREATE_MAPPING__CATALOG_NAME__HELP =
-      "The catalog that contains the database table. By default, the catalog is null causing the table to be found irrespective of catalog.";
+      "The catalog that contains the database table. By default, the catalog is the empty string causing the table to be referenced without a catalog prefix.";
   static final String CREATE_MAPPING__SCHEMA_NAME = "schema";
   static final String CREATE_MAPPING__SCHEMA_NAME__HELP =
-      "The schema that contains the database table. By default, the schema is null causing the table to be found irrespective of schema.";
+      "The schema that contains the database table. By default, the schema is the empty string causing the table to be referenced without a schema prefix.";
 
   public static String createAsyncEventQueueName(String regionPath) {
     if (regionPath.startsWith("/")) {