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

ddanielr pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new c9b93585ac Changes description of createTable command (#5799)
c9b93585ac is described below

commit c9b93585ac9e8a1a7f96002322d42f46001aca82
Author: Daniel Roberts <[email protected]>
AuthorDate: Thu Aug 14 13:13:33 2025 -0400

    Changes description of createTable command (#5799)
    
    Describes the acceptable format for setting multiple init properties on
    table creation
---
 .../java/org/apache/accumulo/shell/commands/CreateTableCommand.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/shell/src/main/java/org/apache/accumulo/shell/commands/CreateTableCommand.java
 
b/shell/src/main/java/org/apache/accumulo/shell/commands/CreateTableCommand.java
index ecc74f78ac..9847a8a54c 100644
--- 
a/shell/src/main/java/org/apache/accumulo/shell/commands/CreateTableCommand.java
+++ 
b/shell/src/main/java/org/apache/accumulo/shell/commands/CreateTableCommand.java
@@ -325,8 +325,8 @@ public class CreateTableCommand extends Command {
         "prevent users from writing data they cannot read. When enabling this,"
             + " consider disabling bulk import and alter table.");
     createTableOptFormatter = new Option("f", "formatter", true, "default 
formatter to set");
-    createTableOptInitProp =
-        new Option("prop", "init-properties", true, "user defined initial 
properties");
+    createTableOptInitProp = new Option("prop", "init-properties", true,
+        "comma-separated user-defined initial key=value pairs");
     createTableOptCopyConfig.setArgName("table");
     createTableOptCopySplits.setArgName("table");
     createTableOptSplit.setArgName("filename");

Reply via email to