You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by av...@apache.org on 2012/05/21 17:43:32 UTC

svn commit: r1341126 - in /incubator/hcatalog/branches/branch-0.4: CHANGES.txt src/docs/overview.html

Author: avandana
Date: Mon May 21 17:43:32 2012
New Revision: 1341126

URL: http://svn.apache.org/viewvc?rev=1341126&view=rev
Log:
HCAT-411 Incorrect example provided in the HCatalog documentation (Overview page) (merged from trunk)

Modified:
    incubator/hcatalog/branches/branch-0.4/CHANGES.txt
    incubator/hcatalog/branches/branch-0.4/src/docs/overview.html

Modified: incubator/hcatalog/branches/branch-0.4/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.4/CHANGES.txt?rev=1341126&r1=1341125&r2=1341126&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.4/CHANGES.txt (original)
+++ incubator/hcatalog/branches/branch-0.4/CHANGES.txt Mon May 21 17:43:32 2012
@@ -30,6 +30,8 @@ Release 0.4.1 - Unreleased
   HCAT-368 Documentation improvements: doc set & API docs (lefty via gates)
 
   BUG FIXES
+  HCAT-411 Incorrect example provided in the HCatalog documentation (Overview page) avandana
+
   HCAT-355 Include 1.1.0 version of hadoop as test dependency to fix random test failures in build (rohini via avandana)
 
   HCAT-409 MultiOutputformat should make getJobContext public (rohini via avandana)

Modified: incubator/hcatalog/branches/branch-0.4/src/docs/overview.html
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.4/src/docs/overview.html?rev=1341126&r1=1341125&r2=1341126&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.4/src/docs/overview.html (original)
+++ incubator/hcatalog/branches/branch-0.4/src/docs/overview.html Mon May 21 17:43:32 2012
@@ -98,7 +98,7 @@ store Z into 'data/processedevents/20100
 <p>With HCatalog, HCatalog will send a JMS message that data is available. The Pig job can then be started.</p>
 <pre class="code">
 A = load 'rawevents' using HCatLoader;
-B = filter A by date = '20100819' and by bot_finder(zeta) = 0;
+B = filter A by date == '20100819' and by bot_finder(zeta) = 0;
 &hellip;
 store Z into 'processedevents' using HCatStorer("date=20100819");
 </pre>