From 8a4c928de0c05dd5b07ab60abcfefc998885da98 Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Fri, 16 Mar 2012 19:45:06 +0000 Subject: [PATCH] HBASE-5592 Make it easier to get a table from shell git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1301715 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/ruby/hbase/table.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/ruby/hbase/table.rb b/src/main/ruby/hbase/table.rb index 6dcf47e697a..41dcf21b293 100644 --- a/src/main/ruby/hbase/table.rb +++ b/src/main/ruby/hbase/table.rb @@ -25,6 +25,7 @@ include Java module Hbase class Table include HBaseConstants + attr_reader :table def initialize(configuration, table_name, formatter) @table = org.apache.hadoop.hbase.client.HTable.new(configuration, table_name)