Skip to content

Commit

Permalink
HBASE-22779 fix TestTableShell is broken
Browse files Browse the repository at this point in the history
Signed-off-by: Duo Zhang <zhangduo@apache.org>
Signed-off-by: Jan Hentschel <jan.hentschel@ultratendency.com>
  • Loading branch information
ArthurSXL8 authored and HorizonNet committed Aug 2, 2019
1 parent 7e6684b commit a6f0653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hbase-shell/src/main/ruby/hbase/table.rb
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def _append_internal(row, column, value, args = {})
ttl = args[TTL]
set_op_ttl(append, ttl) if ttl
end
append.add(family, qualifier, value.to_s.to_java_bytes)
append.addColumn(family, qualifier, value.to_s.to_java_bytes)
result = @table.append(append)
return nil if result.isEmpty

Expand Down

0 comments on commit a6f0653

Please sign in to comment.