You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by na...@apache.org on 2010/02/22 07:32:37 UTC

svn commit: r912492 - in /hadoop/hive/trunk: CHANGES.txt build.xml conf/hive-default.xml

Author: namit
Date: Mon Feb 22 06:32:36 2010
New Revision: 912492

URL: http://svn.apache.org/viewvc?rev=912492&view=rev
Log:
HIVE-1183. hive.hwi.war.file vanished from hive-default.xml
(Zheng Shao via namit)

M    conf/hive-default.xml
M    CHANGES.txt
M    build.xml

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

Modified: hadoop/hive/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/CHANGES.txt?rev=912492&r1=912491&r2=912492&view=diff
==============================================================================
--- hadoop/hive/trunk/CHANGES.txt (original)
+++ hadoop/hive/trunk/CHANGES.txt Mon Feb 22 06:32:36 2010
@@ -201,6 +201,9 @@
     HIVE-1134. Bucketed Map Join bug fix
     (He Yongqiang via namit)
 
+    HIVE-1183. hive.hwi.war.file vanished from hive-default.xml
+    (Zheng Shao via namit)
+
 Release 0.5.0 -  Unreleased
 
   INCOMPATIBLE CHANGES

Modified: hadoop/hive/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/build.xml?rev=912492&r1=912491&r2=912492&view=diff
==============================================================================
--- hadoop/hive/trunk/build.xml (original)
+++ hadoop/hive/trunk/build.xml Mon Feb 22 06:32:36 2010
@@ -236,7 +236,11 @@
       <fileset dir="${hive.root}/bin/ext" excludes="**/.svn"/>
     </copy>
     <copy file="${hive.root}/bin/hive-config.sh" todir="${target.bin.dir}"/>
-    <copy file="${basedir}/conf/hive-default.xml" todir="${target.conf.dir}"/>
+    <copy file="${basedir}/conf/hive-default.xml" todir="${target.conf.dir}">
+      <filterset>
+        <filter token="VERSION" value="${version}"/>
+      </filterset>
+    </copy>
     <copy file="${basedir}/conf/hive-log4j.properties" todir="${target.conf.dir}"/>
     <!-- Create php thrift package -->
     <copy todir="${target.lib.dir}/php">
@@ -280,7 +284,7 @@
       <fileset file="${build.dir.hive}/common/hive-common-${version}.jar"/>
       <fileset file="${build.dir.hive}/ql/hive-exec-${version}.jar"/>
       <fileset file="${build.dir.hive}/metastore/hive-metastore-${version}.jar"/>
-      <fileset file="${build.dir.hive}/hive-hwi-${version}.war"/>
+      <fileset file="${build.dir.hive}/hwi/hive-hwi-${version}.war"/>
       <fileset file="${build.dir.hive}/contrib/hive-contrib-${version}.jar"/>
     </copy>
     <copy todir="${target.example.dir}/files" preservelastmodified="true" flatten="true">

Modified: hadoop/hive/trunk/conf/hive-default.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/conf/hive-default.xml?rev=912492&r1=912491&r2=912492&view=diff
==============================================================================
--- hadoop/hive/trunk/conf/hive-default.xml (original)
+++ hadoop/hive/trunk/conf/hive-default.xml Mon Feb 22 06:32:36 2010
@@ -378,6 +378,12 @@
 </property>
 
 <property>
+  <name>hive.hwi.war.file</name>
+  <value>lib/hive-hwi-@VERSION@.war</value>
+  <description>This sets the path to the HWI war file, relative to ${HIVE_HOME}. </description>
+</property>
+
+<property>
   <name>hive.hwi.listen.host</name>
   <value>0.0.0.0</value>
   <description>This is the host address the Hive Web Interface will listen on</description>