You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by nz...@apache.org on 2010/02/23 08:14:00 UTC

svn commit: r915216 - in /hadoop/hive/branches/branch-0.5: ./ contrib/src/test/queries/negative/ contrib/src/test/queries/positive/ contrib/src/test/results/compiler/errors/ contrib/src/test/results/compiler/parse/ contrib/src/test/results/compiler/pla...

Author: nzhang
Date: Tue Feb 23 07:13:59 2010
New Revision: 915216

URL: http://svn.apache.org/viewvc?rev=915216&view=rev
Log:
HIVE-1188. NPE when running TestJdbcDriver/TestHiveServer

Added:
    hadoop/hive/branches/branch-0.5/contrib/src/test/queries/negative/.gitignore
    hadoop/hive/branches/branch-0.5/contrib/src/test/queries/positive/.gitignore
    hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/errors/.gitignore
    hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/parse/.gitignore
    hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/plan/.gitignore
    hadoop/hive/branches/branch-0.5/data/metadb/.gitignore
    hadoop/hive/branches/branch-0.5/data/warehouse/src/.gitignore
    hadoop/hive/branches/branch-0.5/metastore/bin/.gitignore
    hadoop/hive/branches/branch-0.5/ql/src/java/org/apache/hadoop/hive/ql/thrift/.gitignore
    hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/negative/.gitignore
    hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/output/.gitignore
    hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/negative/.gitignore
    hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/positive/.gitignore
    hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/positive/.gitignore
    hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde/dynamic_type/.gitignore
    hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde2/dynamic_type/.gitignore
    hadoop/hive/branches/branch-0.5/serde/src/gen-py/serde/.gitignore
Modified:
    hadoop/hive/branches/branch-0.5/CHANGES.txt

Modified: hadoop/hive/branches/branch-0.5/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/CHANGES.txt?rev=915216&r1=915215&r2=915216&view=diff
==============================================================================
--- hadoop/hive/branches/branch-0.5/CHANGES.txt (original)
+++ hadoop/hive/branches/branch-0.5/CHANGES.txt Tue Feb 23 07:13:59 2010
@@ -489,6 +489,9 @@
     HIVE-1185. Fix RCFile resource leak when opening a non-RCFile.
     (He Yongqiang via zshao)
 
+    HIVE-1188. NPE when running TestJdbcDriver/TestHiveServer
+    (Carl Steinbach via Ning Zhang)
+
 Release 0.4.0 -  Unreleased
 
   INCOMPATIBLE CHANGES

Added: hadoop/hive/branches/branch-0.5/contrib/src/test/queries/negative/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/contrib/src/test/queries/negative/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/contrib/src/test/queries/negative/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/contrib/src/test/queries/negative/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/contrib/src/test/queries/positive/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/contrib/src/test/queries/positive/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/contrib/src/test/queries/positive/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/contrib/src/test/queries/positive/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/errors/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/errors/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/errors/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/errors/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/parse/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/parse/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/parse/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/parse/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/plan/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/plan/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/plan/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/contrib/src/test/results/compiler/plan/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/data/metadb/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/data/metadb/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/data/metadb/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/data/metadb/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/data/warehouse/src/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/data/warehouse/src/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/data/warehouse/src/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/data/warehouse/src/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/metastore/bin/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/metastore/bin/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/metastore/bin/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/metastore/bin/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/ql/src/java/org/apache/hadoop/hive/ql/thrift/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/ql/src/java/org/apache/hadoop/hive/ql/thrift/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/ql/src/java/org/apache/hadoop/hive/ql/thrift/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/ql/src/java/org/apache/hadoop/hive/ql/thrift/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/negative/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/negative/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/negative/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/negative/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/output/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/output/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/output/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/output/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/negative/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/negative/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/negative/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/negative/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/positive/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/positive/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/positive/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/parse/positive/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/positive/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/positive/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/positive/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/ql/src/test/org/apache/hadoop/hive/ql/positive/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde/dynamic_type/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde/dynamic_type/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde/dynamic_type/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde/dynamic_type/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde2/dynamic_type/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde2/dynamic_type/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde2/dynamic_type/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/serde/src/gen-java/org/apache/hadoop/hive/serde2/dynamic_type/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory

Added: hadoop/hive/branches/branch-0.5/serde/src/gen-py/serde/.gitignore
URL: http://svn.apache.org/viewvc/hadoop/hive/branches/branch-0.5/serde/src/gen-py/serde/.gitignore?rev=915216&view=auto
==============================================================================
--- hadoop/hive/branches/branch-0.5/serde/src/gen-py/serde/.gitignore (added)
+++ hadoop/hive/branches/branch-0.5/serde/src/gen-py/serde/.gitignore Tue Feb 23 07:13:59 2010
@@ -0,0 +1 @@
+# Dummy file to make Git recognize this empty directory