HBASE-487 Replace hql w/ a hbase-friendly jirb or jython shell; Fix formatting issue outputting messy binary values
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@669247 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
de39e81f3a
commit
c95535765a
|
@ -93,8 +93,8 @@ module Formatter
|
|||
|
||||
def output(width, str)
|
||||
# Make up a spec for printf
|
||||
spec = "%%-%d.%ds" % [width, width]
|
||||
@out.printf(spec % str)
|
||||
spec = "%%-%ds" % width
|
||||
@out.printf(spec, str)
|
||||
end
|
||||
|
||||
def footer(startTime = nil)
|
||||
|
|
Loading…
Reference in New Issue