HBASE-5946 Thrift Filter Language documentation is inconsistent
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1471254 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b0702f3d8d
commit
15a10f8f7d
|
@ -383,10 +383,10 @@
|
|||
<para>If the filterIfColumnMissing flag is set to true the columns of the row will not be emitted if the specified column to check is not found in the row. The default value is false.</para>
|
||||
<para>If the setLatestVersionOnly flag is set to false, it will test previous versions (timestamps) too. The default value is true.</para>
|
||||
<para>These flags are optional and if you must set neither or both</para>
|
||||
<para><emphasis role="bold">Syntax:</emphasis> SingleColumnValueFilter(<compare operator>, ‘<comparator>’, ‘<family>’, ‘<qualifier>’,<filterIfColumnMissing_boolean>, <latest_version_boolean>) </para>
|
||||
<para><emphasis role="bold">Syntax:</emphasis> SingleColumnValueFilter(<compare operator>, ‘<comparator>’, ‘<family>’, ‘<qualifier>) </para>
|
||||
<para><emphasis role="bold">Example:</emphasis> "SingleColumnValueFilter (<=, ‘abc’,‘FamilyA’, ‘Column1’, true, false)" </para>
|
||||
<para><emphasis role="bold">Example:</emphasis> "SingleColumnValueFilter (<=, ‘abc’,‘FamilyA’, ‘Column1’)" </para>
|
||||
<para><emphasis role="bold">Syntax:</emphasis> SingleColumnValueFilter(‘<family>’, ‘<qualifier>’, <compare operator>, ‘<comparator>’, <filterIfColumnMissing_boolean>, <latest_version_boolean>) </para>
|
||||
<para><emphasis role="bold">Syntax:</emphasis> SingleColumnValueFilter(‘<family>’, ‘<qualifier>, <compare operator>, ‘<comparator>’) </para>
|
||||
<para><emphasis role="bold">Example:</emphasis> "SingleColumnValueFilter (‘FamilyA’, ‘Column1’, <=, ‘abc’, true, false)" </para>
|
||||
<para><emphasis role="bold">Example:</emphasis> "SingleColumnValueFilter (‘FamilyA’, ‘Column1’, <=, ‘abc’)" </para>
|
||||
</listitem>
|
||||
|
||||
<listitem>
|
||||
|
@ -395,10 +395,10 @@
|
|||
behaves same as SingleColumnValueFilter – however, if the column is found and the
|
||||
condition passes, all the columns of the row will be emitted except for the tested
|
||||
column value. </para>
|
||||
<para><emphasis role="bold">Syntax:</emphasis> SingleColumnValueExcludeFilter(<compare operator>, '<comparator>', '<family>', '<qualifier>',<latest_version_boolean>, <filterIfColumnMissing_boolean>)</para>
|
||||
<para><emphasis role="bold">Syntax:</emphasis> SingleColumnValueExcludeFilter(<compare operator>, '<comparator>', '<family>', '<qualifier>') </para>
|
||||
<para><emphasis role="bold">Example:</emphasis> "SingleColumnValueExcludeFilter (‘<=’, ‘abc’,‘FamilyA’, ‘Column1’, ‘false’, ‘true’)"</para>
|
||||
<para><emphasis role="bold">Example:</emphasis> "SingleColumnValueExcludeFilter (‘<=’, ‘abc’, ‘FamilyA’, ‘Column1’)" </para>
|
||||
<para><emphasis role="bold">Syntax:</emphasis> SingleColumnValueExcludeFilter('<family>', '<qualifier>', <compare operator>, '<comparator>', <latest_version_boolean>, <filterIfColumnMissing_boolean>)</para>
|
||||
<para><emphasis role="bold">Syntax:</emphasis> SingleColumnValueExcludeFilter('<family>', '<qualifier>', <compare operator>, '<comparator>') </para>
|
||||
<para><emphasis role="bold">Example:</emphasis> "SingleColumnValueExcludeFilter (‘FamilyA’, ‘Column1’, ‘<=’, ‘abc’, ‘false’, ‘true’)"</para>
|
||||
<para><emphasis role="bold">Example:</emphasis> "SingleColumnValueExcludeFilter (‘FamilyA’, ‘Column1’, ‘<=’, ‘abc’)" </para>
|
||||
</listitem>
|
||||
|
||||
<listitem>
|
||||
|
|
Loading…
Reference in New Issue