HBASE-9190-Update scan.rb description to match the naming convention of META after namespace change (Ram)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1513588 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e06fa1d529
commit
c8abdc34c5
|
@ -478,7 +478,7 @@ EOF
|
|||
end
|
||||
|
||||
# Make a String of the passed kv
|
||||
# Intercept cells whose format we know such as the info:regioninfo in .META.
|
||||
# Intercept cells whose format we know such as the info:regioninfo in hbase:meta
|
||||
def to_string(column, kv, maxlength = -1)
|
||||
if is_meta_table?
|
||||
if column == 'info:regioninfo' or column == 'info:splitA' or column == 'info:splitB'
|
||||
|
|
|
@ -38,8 +38,8 @@ Filter Language document attached to the HBASE-4176 JIRA
|
|||
|
||||
Some examples:
|
||||
|
||||
hbase> scan '.META.'
|
||||
hbase> scan '.META.', {COLUMNS => 'info:regioninfo'}
|
||||
hbase> scan 'hbase:meta'
|
||||
hbase> scan 'hbase:meta', {COLUMNS => 'info:regioninfo'}
|
||||
hbase> scan 't1', {COLUMNS => ['c1', 'c2'], LIMIT => 10, STARTROW => 'xyz'}
|
||||
hbase> scan 't1', {COLUMNS => 'c1', TIMERANGE => [1303668804, 1303668904]}
|
||||
hbase> scan 't1', {FILTER => "(PrefixFilter ('row2') AND
|
||||
|
|
Loading…
Reference in New Issue