HBASE-7939 Apply fixup for 'hbase-6972 HBase Shell deleteall should not require column to be defined

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1450039 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2013-02-26 05:59:38 +00:00
parent c075a8413c
commit 2fa525feea
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ t to table 't1', the corresponding command would be:
EOF
end
def command(table, row, column,
def command(table, row, column = nil,
timestamp = org.apache.hadoop.hbase.HConstants::LATEST_TIMESTAMP)
deleteall(table(table), row, column, timestamp)
end