Skip to content

Commit

Permalink
[apache#5831] fix(CLI): Fix CLi gives unexpected output when setting …
Browse files Browse the repository at this point in the history
…a tag

Running the command gcli tag set --metalake metalake_demo or gcli tag remove --metalake metalake_demo gives unexpected output.it should give some help information.
  • Loading branch information
Abyss-lord committed Dec 19, 2024
1 parent 08f7d91 commit d339fd4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public class ErrorMessages {
public static final String UNKNOWN_TABLE = "Unknown table name.";
public static final String MALFORMED_NAME = "Malformed entity name.";
public static final String MISSING_NAME = "Missing --name option.";
public static final String MISSING_ENTITY =
"Unable to determine the entity. Please specify one" + " using the --name option.";
public static final String METALAKE_EXISTS = "Metalake already exists.";
public static final String CATALOG_EXISTS = "Catalog already exists.";
public static final String SCHEMA_EXISTS = "Schema already exists.";
Expand Down

0 comments on commit d339fd4

Please sign in to comment.