# File lib/big_record/connection_adapters/cassandra_adapter.rb, line 138 def get_columns(table_name, row, columns, options={}) row_cols = get_columns_raw(table_name, row, columns, options) return nil unless row_cols && !row_cols.empty? result = {} row_cols.each do |key,value| begin result[key] = if key == 'id' value else deserialize(value) end rescue Exception => e puts "Could not load column value #{key} for row=#{row.name}" end end result end