# File lib/big_record/connection_adapters/hbase_adapter.rb, line 113 def get_raw(table_name, row, column, options={}) result = nil log "SELECT (#{column}) FROM #{table_name} WHERE ROW=#{row};" do result = @connection.get(table_name, row, column, options) end result end