HBASE-19871 delete.rb should require user to provide the column
This commit is contained in:
parent
6f253c55d8
commit
01cd883f88
|
@ -40,12 +40,12 @@ t to table 't1', the corresponding command would be:
|
|||
EOF
|
||||
end
|
||||
|
||||
def command(table, row, column = nil,
|
||||
def command(table, row, column,
|
||||
timestamp = org.apache.hadoop.hbase.HConstants::LATEST_TIMESTAMP, args = {})
|
||||
delete(table(table), row, column, timestamp, args)
|
||||
end
|
||||
|
||||
def delete(table, row, column = nil,
|
||||
def delete(table, row, column,
|
||||
timestamp = org.apache.hadoop.hbase.HConstants::LATEST_TIMESTAMP, args = {})
|
||||
format_simple_command do
|
||||
table._delete_internal(row, column, timestamp, args, false)
|
||||
|
|
Loading…
Reference in New Issue