蜂巢中退出和退出有什么区别

时间:2017-08-16 09:42:07

标签: hive exit

退出配置单元时,“退出”和“退出”之间有什么区别吗?

1 个答案:

答案 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 (...