You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jv...@apache.org on 2010/11/24 04:46:11 UTC

svn commit: r1038462 - in /hive/trunk: CHANGES.txt conf/hive-default.xml

Author: jvs
Date: Wed Nov 24 03:46:11 2010
New Revision: 1038462

URL: http://svn.apache.org/viewvc?rev=1038462&view=rev
Log:
HIVE-1810 doc followup to HIVE-1785
(Liyin Tang via jvs)


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

Modified: hive/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hive/trunk/CHANGES.txt?rev=1038462&r1=1038461&r2=1038462&view=diff
==============================================================================
--- hive/trunk/CHANGES.txt (original)
+++ hive/trunk/CHANGES.txt Wed Nov 24 03:46:11 2010
@@ -274,6 +274,9 @@ Trunk -  Unreleased
     HIVE-1785 change Pre/Post Query Hooks to take in 1 parameter:  HookContext
     (Liyin Tang via jvs)
 
+    HIVE-1810 doc followup to HIVE-1785
+    (Liyin Tang via jvs)
+
   OPTIMIZATIONS
 
   BUG FIXES

Modified: hive/trunk/conf/hive-default.xml
URL: http://svn.apache.org/viewvc/hive/trunk/conf/hive-default.xml?rev=1038462&r1=1038461&r2=1038462&view=diff
==============================================================================
--- hive/trunk/conf/hive-default.xml (original)
+++ hive/trunk/conf/hive-default.xml Wed Nov 24 03:46:11 2010
@@ -428,13 +428,13 @@
 <property>
   <name>hive.exec.pre.hooks</name>
   <value></value>
-  <description>Comma-separated list of pre-execution hooks to be invoked for each statement.  A pre-execution hook is specified as the name of a Java class which implements the org.apache.hadoop.hive.ql.hooks.PreExecute interface.</description>
+  <description>Comma-separated list of pre-execution hooks to be invoked for each statement.  A pre-execution hook is specified as the name of a Java class which implements the org.apache.hadoop.hive.ql.hooks.ExecuteWithHookContext interface.</description>
 </property>
 
 <property>
   <name>hive.exec.post.hooks</name>
   <value></value>
-  <description>Comma-separated list of post-execution hooks to be invoked for each statement.  A post-execution hook is specified as the name of a Java class which implements the org.apache.hadoop.hive.ql.hooks.PostExecute interface.</description>
+  <description>Comma-separated list of post-execution hooks to be invoked for each statement.  A post-execution hook is specified as the name of a Java class which implements the org.apache.hadoop.hive.ql.hooks.ExecuteWithHookContext interface.</description>
 </property>
 
 <property>