if (cmd_trimmed.toLowerCase().equals("quit") || cmd_trimmed.toLowerCase().equals("exit")) {
// if we have come this far - either the previous commands
// are all successful or this is command line. in either case
// this counts as a successful run
ss.close();
System.exit(0);
} else if (...
1条答案
按热度按时间dw1jzc5e1#
从hive文档来看,quit和exit执行的功能与退出hivecli完全相同。
此外,根据源代码,这两个命令在功能上是相同的。