# File lib/big_record/connection_adapters/hbase_adapter.rb, line 164
      def get_consecutive_rows(table_name, start_row, limit, columns, stop_row = nil)
        rows = get_consecutive_rows_raw(table_name, start_row, limit, columns, stop_row)
        result = rows.collect do |row_cols|
          cols = {}
          row_cols.each do |key, col|
            begin
              cols[key] =
              if key == 'id'
                col
              else
                deserialize(col)
              end
            rescue Exception => e
              puts "Could not load column value #{key} for row=#{row_cols['id']}"
            end
          end
          cols
        end
        result
      end