HBASE-782 The DELETE key in the hbase shell deletes the wrong character
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@728733 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7e439ed42f
commit
e1d9bf64c2
|
@ -113,6 +113,8 @@ Release 0.19.0 - Unreleased
|
|||
HBASE-1070 Up default index interval in TRUNK and branch
|
||||
HBASE-1045 Hangup by regionserver causes write to fail
|
||||
HBASE-1079 Dumb NPE in ServerCallable hides the RetriesExhausted exception
|
||||
HBASE-782 The DELETE key in the hbase shell deletes the wrong character
|
||||
(Tim Sell via Stack)
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-901 Add a limit to key length, check key and value length on client side
|
||||
|
|
|
@ -333,7 +333,7 @@ module IRB
|
|||
# Suppress output if last_value is 'nil'
|
||||
# Otherwise, when user types help, get ugly 'nil'
|
||||
# after all output.
|
||||
if @context.last_value
|
||||
if @context.last_value != nil
|
||||
super
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue