You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by at...@apache.org on 2009/01/27 00:27:47 UTC

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

Author: athusoo
Date: Mon Jan 26 23:27:35 2009
New Revision: 737936

URL: http://svn.apache.org/viewvc?rev=737936&view=rev
Log:
HIVE-249. Give execute permissions to the hive binary 
(Jeff Hammerbacher via athusoo)

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

Modified: hadoop/hive/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/CHANGES.txt?rev=737936&r1=737935&r2=737936&view=diff
==============================================================================
--- hadoop/hive/trunk/CHANGES.txt (original)
+++ hadoop/hive/trunk/CHANGES.txt Mon Jan 26 23:27:35 2009
@@ -232,3 +232,6 @@
     HIVE-65. Rewrite typechecking to use the walker interface and add
     Resolvers to UDF and UDAF to support proper implicit casting
     in a manner similar to other RDBMSs (athusoo)
+
+    HIVE-249. Give execute permissions to the hive binary 
+    (Jeff Hammerbacher via athusoo)

Modified: hadoop/hive/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/build.xml?rev=737936&r1=737935&r2=737936&view=diff
==============================================================================
--- hadoop/hive/trunk/build.xml (original)
+++ hadoop/hive/trunk/build.xml Mon Jan 26 23:27:35 2009
@@ -180,6 +180,9 @@
     <copy todir="${target.example.dir}/queries" preservelastmodified="true" flatten="true">
       <fileset dir="${ql.test.query.dir}/positive" includes="*.q" excludes="**/.svn"/>
     </copy>
+    <chmod perm="ugo+x" type="file" parallel="false">
+      <fileset dir="${target.bin.dir}"/>
+    </chmod>
   </target>
 
   <target name="eclipse-files" depends="init"