# File lib/big_record/connection_adapters/hbase_rest_adapter.rb, line 129 def get_columns_raw(table_name, row, columns = nil, options={}) result = {} timestamp = options[:timestamp] || nil log "SELECT (#{columns.join(", ")}) FROM #{table_name} WHERE ROW=#{row};" do row = @connection.show_row(table_name, row, timestamp, columns, options) result.merge!({'id' => row.name}) columns = row.columns columns.each{ |col| result.merge!({col.name => col.value}) } end result end