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:
Michael Stack 2008-06-18 18:18:26 +00:00
parent de39e81f3a
commit c95535765a
1 changed files with 2 additions and 2 deletions

View File

@ -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)