hive - hive 中的退出和退出有什么区别

标签 hive exit

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

最佳答案

来自 hive documentation ,似乎 quit 和 exit 执行与退出 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 (...

关于hive - hive 中的退出和退出有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45710167/

相关文章:

android - android 中的退出按钮不起作用

bash - 如何退出 bash 中的所有调用脚本?

jquery - .getJSON请求永不退出

bash - 在 BASH/SHELL 中捕获输出和退出代码

azure - 无法将 azure Blob 文件加载到 HDINSIGHT 中的 Hive 表中

hadoop - 如果我得到 HiverServerException 我该怎么办

apache-spark - 字符串分区键与整数分区键的 Hive/Impala 性能

sql - Hive是否支持AND子句

sql - SQL对同一数据集按不同级别进行分组

python - 通过菜单选项退出程序