HBASE-9439 shell command list snows something not meaningful

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1526742 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Hsieh 2013-09-26 23:10:10 +00:00
parent 22ec681004
commit 2782846450
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ module Hbase
#----------------------------------------------------------------------------------------------
# Returns a list of tables in hbase
def list(regex = ".*")
Arrays.asList(@admin.getTableNames(regex))
@admin.getTableNames(regex).to_a
end
#----------------------------------------------------------------------------------------------