You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ng...@apache.org on 2018/01/25 21:31:42 UTC

hive git commit: HIVE-18501: Typo in Beeline option name (Naveen Gangam, reviewed by Yongzhi Chen)

Repository: hive
Updated Branches:
  refs/heads/master 3f7127f59 -> a4bad8b3c


HIVE-18501: Typo in Beeline option name (Naveen Gangam, reviewed by Yongzhi Chen)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/a4bad8b3
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/a4bad8b3
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/a4bad8b3

Branch: refs/heads/master
Commit: a4bad8b3ce5c0815eb51d2664fbcb29b7d1e9b14
Parents: 3f7127f
Author: Naveen Gangam <ng...@apache.org>
Authored: Fri Jan 19 17:04:02 2018 -0500
Committer: Naveen Gangam <ng...@apache.org>
Committed: Thu Jan 25 16:30:44 2018 -0500

----------------------------------------------------------------------
 beeline/src/java/org/apache/hive/beeline/BeeLine.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/a4bad8b3/beeline/src/java/org/apache/hive/beeline/BeeLine.java
----------------------------------------------------------------------
diff --git a/beeline/src/java/org/apache/hive/beeline/BeeLine.java b/beeline/src/java/org/apache/hive/beeline/BeeLine.java
index b2db66b..402fadd 100644
--- a/beeline/src/java/org/apache/hive/beeline/BeeLine.java
+++ b/beeline/src/java/org/apache/hive/beeline/BeeLine.java
@@ -741,7 +741,7 @@ public class BeeLine implements Closeable {
 
     dbName = commandLine.getOptionValue("database");
     getOpts().setVerbose(Boolean.parseBoolean(commandLine.getOptionValue("verbose")));
-    getOpts().setSilent(Boolean.parseBoolean(commandLine.getOptionValue("slient")));
+    getOpts().setSilent(Boolean.parseBoolean(commandLine.getOptionValue("silent")));
 
     int code = 0;
     if (commandLine.getOptionValues("e") != null) {