Repository: incubator-blur Updated Branches: refs/heads/master a9d12888d -> 8dc3c2ce6
Fixed BLUR-403. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/8dc3c2ce Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/8dc3c2ce Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/8dc3c2ce Branch: refs/heads/master Commit: 8dc3c2ce6f200696650fadb6d0852bd208a6b063 Parents: a9d1288 Author: Aaron McCurry <[email protected]> Authored: Thu Jan 22 04:40:22 2015 -0500 Committer: Aaron McCurry <[email protected]> Committed: Thu Jan 22 04:40:22 2015 -0500 ---------------------------------------------------------------------- blur-shell/src/main/java/org/apache/blur/shell/Main.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/8dc3c2ce/blur-shell/src/main/java/org/apache/blur/shell/Main.java ---------------------------------------------------------------------- diff --git a/blur-shell/src/main/java/org/apache/blur/shell/Main.java b/blur-shell/src/main/java/org/apache/blur/shell/Main.java index f246eee..1052c44 100644 --- a/blur-shell/src/main/java/org/apache/blur/shell/Main.java +++ b/blur-shell/src/main/java/org/apache/blur/shell/Main.java @@ -395,7 +395,7 @@ public class Main { public static String[] tableCommands = { "create", "enable", "disable", "remove", "truncate", "describe", "list", "schema", "stats", "layout", "parse", "definecolumn", "optimize", "copy" }; public static String[] dataCommands = { "query", "get", "mutate", "delete", "highlight", "selector", "terms", - "create-snapshot", "remove-snapshot", "list-snapshots" }; + "create-snapshot", "remove-snapshot", "list-snapshots", "import" }; public static String[] clusterCommands = { "controllers", "shards", "clusterlist", "cluster", "safemodewait", "top" }; public static String[] shellCommands = { "help", "debug", "timed", "quit", "reset", "user", "whoami", "trace", "trace-remove", "trace-list" }; @@ -700,6 +700,7 @@ public class Main { register(builder, new ListPlatformCommandsCommand()); register(builder, new DescribePlatformCommandCommand()); register(builder, new ExecutePlatformCommandCommand()); + register(builder, new ImportDataCommand()); commands = builder.build(); }
