You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by zs...@apache.org on 2008/12/19 07:38:01 UTC

svn commit: r727945 - in /hadoop/hive/trunk: CHANGES.txt build-common.xml

Author: zshao
Date: Thu Dec 18 22:38:01 2008
New Revision: 727945

URL: http://svn.apache.org/viewvc?rev=727945&view=rev
Log:
HIVE-184. Tests fail due to including old hive jar files. (David Phillips via zshao)

Modified:
    hadoop/hive/trunk/CHANGES.txt
    hadoop/hive/trunk/build-common.xml

Modified: hadoop/hive/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/CHANGES.txt?rev=727945&r1=727944&r2=727945&view=diff
==============================================================================
--- hadoop/hive/trunk/CHANGES.txt (original)
+++ hadoop/hive/trunk/CHANGES.txt Thu Dec 18 22:38:01 2008
@@ -52,6 +52,9 @@
 
   BUG FIXES
 
+    HIVE-184. Tests fail due to including old hive jar files.
+    (David Phillips via zshao)
+
     HIVE-188. Hive CLI quits when stdout is closed. (zshao)
 
     HIVE-104. Tables with at least 1 non-string columns to use DynamicSerDe.

Modified: hadoop/hive/trunk/build-common.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/build-common.xml?rev=727945&r1=727944&r2=727945&view=diff
==============================================================================
--- hadoop/hive/trunk/build-common.xml (original)
+++ hadoop/hive/trunk/build-common.xml Thu Dec 18 22:38:01 2008
@@ -99,15 +99,9 @@
   <path id="common-classpath">
     <pathelement location="${hadoop.jar}"/>
     <pathelement location="${build.dir.hive}/classes"/>
-    <fileset dir="${build.dir.hive}">
-      <include name="**/hive_*.jar"/>
-    </fileset>
-    <fileset dir="${src.dir.hive}/lib">
-      <include name="**/*.jar"/>
-    </fileset>
-    <fileset dir="${src.dir.hive}/ql/lib">
-      <include name="**/*.jar"/>
-    </fileset>
+    <fileset dir="${build.dir.hive}" includes="hive_*.jar"/>
+    <fileset dir="${src.dir.hive}/lib" includes="*.jar"/>
+    <fileset dir="${src.dir.hive}/ql/lib" includes="*.jar"/>
   </path>
 
   <path id="classpath">