Author: stack Date: Tue Feb 26 05:59:38 2013 New Revision: 1450039 URL: http://svn.apache.org/r1450039 Log: HBASE-7939 Apply fixup for 'hbase-6972 HBase Shell deleteall should not require column to be defined
Modified: hbase/trunk/hbase-server/src/main/ruby/shell/commands/deleteall.rb Modified: hbase/trunk/hbase-server/src/main/ruby/shell/commands/deleteall.rb URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-server/src/main/ruby/shell/commands/deleteall.rb?rev=1450039&r1=1450038&r2=1450039&view=diff ============================================================================== --- hbase/trunk/hbase-server/src/main/ruby/shell/commands/deleteall.rb (original) +++ hbase/trunk/hbase-server/src/main/ruby/shell/commands/deleteall.rb Tue Feb 26 05:59:38 2013 @@ -38,7 +38,7 @@ t to table 't1', the corresponding comma 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