退出配置单元时,“退出”和“退出”之间有什么区别吗?
答案 0 :(得分:4)
从hive documentation开始,退出和退出似乎执行退出hive CLI的完全相同的功能。
此外,根据source code,这两个命令在功能上完全相同。
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 (...