-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/4743/#review6959
-----------------------------------------------------------
trunk/src/docs/src/documentation/content/xdocs/inputoutput.xml
<https://reviews.apache.org/r/4743/#comment15504>
We might need to put parenthetical comments on <> to explain what it is, since some non-SQL users may not be familiar with it.
trunk/src/docs/src/documentation/content/xdocs/inputoutput.xml
<https://reviews.apache.org/r/4743/#comment15505>
We should add some examples. A few examples of filters with MapReduce:
ds > "20110924"
ds < "20110925"
ds <= "20110925" and ds >= "20110924"
trunk/src/docs/src/documentation/content/xdocs/loadstore.xml
<https://reviews.apache.org/r/4743/#comment15506>
We should add some examples. Example filters with Pig:
a = load 'foo' using org.apache.hcatalog.pig.HCatLoader();
b = filter a by ds == '20110924' or ds == '20110925';
a = load 'foo' using org.apache.hcatalog.pig.HCatLoader();
b = filter a by ds > '20110924';
a = load 'foo' using org.apache.hcatalog.pig.HCatLoader();
b = filter a by ds <= '20110925' and ds >= '20110924';
On 2012-04-16 21:14:24, Alan Gates wrote:
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/4743/
-----------------------------------------------------------
(Updated 2012-04-16 21:14:24)
Review request for hcatalog.
Summary
-------
Add filter information to Load/Store and Input/Output docs
This addresses bug HCATALOG-372.
https://issues.apache.org/jira/browse/HCATALOG-372
Diffs
-----
trunk/src/docs/src/documentation/content/xdocs/inputoutput.xml 1311550
trunk/src/docs/src/documentation/content/xdocs/loadstore.xml 1311550
Diff: https://reviews.apache.org/r/4743/diff
Testing
-------
Thanks,
Alan
Additional information about filters, with a few minor edits.