HBASE-2043 Shell's scan broken

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@890192 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Daniel Cryans 2009-12-14 06:20:21 +00:00
parent 21f8097353
commit 6965cf5135
2 changed files with 3 additions and 6 deletions

View File

@ -226,6 +226,7 @@ Release 0.21.0 - Unreleased
HBASE-2013 Add useful helpers to HBaseTestingUtility.java (Lars George
via J-D)
HBASE-2031 When starting HQuorumPeer, try to match on more than 1 address
HBASE-2043 Shell's scan broken
NEW FEATURES
HBASE-1901 "General" partitioner for "hbase-48" bulk (behind the api, write
@ -233,6 +234,7 @@ Release 0.21.0 - Unreleased
OPTIMIZATIONS
HBASE-410 [testing] Speed up the test suite
HBASE-2041 Change WAL default configuration values
Release 0.20.0 - Tue Sep 8 12:53:05 PDT 2009

View File

@ -401,12 +401,7 @@ module HBase
scan = Scan.new(startrow.to_java_bytes)
end
for c in columns
split = KeyValue.parseColumn(c.to_java_bytes)
if split.length > 1
scan.addColumn(split[0], split[1])
else
scan.addFamily(split[0])
end
scan.addColumns(c)
end
if filter != nil
scan.setFilter(filter)