# File lib/big_record/connection_adapters/hbase_rest_adapter.rb, line 107 def get_raw(table_name, row, column, options={}) result = nil timestamp = options[:timestamp] || nil log "SELECT (#{column}) FROM #{table_name} WHERE ROW=#{row};" do columns = @connection.show_row(table_name, row, timestamp, column, options).columns result = (columns.size == 1) ? columns.first.value : columns.map(&:value) end result end