2017-08-16 17 views

答えて

4

hive documentationから、終了と終了はハイブCLIを終了するのとまったく同じ機能を実行するようです。

さらに、source codeによれば、2つのコマンドは機能上同一です。

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

リンクが壊れる可能性があるので、関連する部分を回答に追加することをお勧めします(リンクに加えて) –

関連する問題