You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by br...@apache.org on 2013/11/05 21:04:57 UTC

svn commit: r1539117 - /hive/trunk/beeline/src/java/org/apache/hive/beeline/SQLCompletor.java

Author: brock
Date: Tue Nov  5 20:04:56 2013
New Revision: 1539117

URL: http://svn.apache.org/r1539117
Log:
HIVE-5730: Beeline throws non-terminal NPE upon starting, after mavenization (Szehon Ho reviewed by Navis)

Modified:
    hive/trunk/beeline/src/java/org/apache/hive/beeline/SQLCompletor.java

Modified: hive/trunk/beeline/src/java/org/apache/hive/beeline/SQLCompletor.java
URL: http://svn.apache.org/viewvc/hive/trunk/beeline/src/java/org/apache/hive/beeline/SQLCompletor.java?rev=1539117&r1=1539116&r2=1539117&view=diff
==============================================================================
--- hive/trunk/beeline/src/java/org/apache/hive/beeline/SQLCompletor.java (original)
+++ hive/trunk/beeline/src/java/org/apache/hive/beeline/SQLCompletor.java Tue Nov  5 20:04:56 2013
@@ -45,7 +45,7 @@ class SQLCompletor extends SimpleComplet
     // add the default SQL completions
     String keywords = new BufferedReader(new InputStreamReader(
         SQLCompletor.class.getResourceAsStream(
-            "sql-keywords.properties"))).readLine();
+            "/sql-keywords.properties"))).readLine();
 
     // now add the keywords from the current connection
     try {