5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-17 01:11:07 +08:00

SQOOP-365 Update show command to reflect actual implementation

git-svn-id: https://svn.apache.org/repos/asf/sqoop/branches/sqoop2@1344437 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bilung Lee 2012-05-30 20:06:40 +00:00
parent 1de77f9163
commit a8c6010554

View File

@ -27,11 +27,10 @@ public class ShowCommand extends SqoopCommand
{
private ShowServerFunction serverFunction;
private ShowVersionFunction versionFunction;
private ShowConnectorFunction connectorFunction;
protected ShowCommand(Shell shell) {
super(shell, "show", "\\sh",
new String[] {"server", "version", "connector", "connection", "job"},
new String[] {"server", "version", "connector"},
"Show", "info");
}
@ -71,4 +70,4 @@ public Object execute(List args) {
throw new SqoopException(ClientError.CLIENT_0002, msg);
}
}
}
}