退出和退出Hive有什么区别

svgewumm  于 2021-06-26  发布在  Hive
关注(0)|答案(1)|浏览(322)

当我退出Hive时,“退出”和“退出”有什么区别吗?

dw1jzc5e

dw1jzc5e1#

从hive文档来看,quit和exit执行的功能与退出hivecli完全相同。
此外,根据源代码,这两个命令在功能上是相同的。

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

相关问题