diff --git a/hbase-server/src/main/ruby/shell/commands/deleteall.rb b/hbase-server/src/main/ruby/shell/commands/deleteall.rb index 2be89e7ec08..e7a5ecd50dc 100644 --- a/hbase-server/src/main/ruby/shell/commands/deleteall.rb +++ b/hbase-server/src/main/ruby/shell/commands/deleteall.rb @@ -38,11 +38,13 @@ t to table 't1', the corresponding command would be: EOF end - def command(table, row, column, timestamp = org.apache.hadoop.hbase.HConstants::LATEST_TIMESTAMP) + def command(table, row, column, + timestamp = org.apache.hadoop.hbase.HConstants::LATEST_TIMESTAMP) deleteall(table(table), row, column, timestamp) end - def deleteall(table, row, column = nil, timestamp = org.apache.hadoop.hbase.HConstants::LATEST_TIMESTAMP) + def deleteall(table, row, column = nil, + timestamp = org.apache.hadoop.hbase.HConstants::LATEST_TIMESTAMP) format_simple_command do table._deleteall_internal(row, column, timestamp) end