# File lib/big_record/connection_adapters/hbase_rest_adapter.rb, line 81
      def columns_to_hbase_format(data = {})
        # Convert it to the hbase-ruby format
        # TODO: Add this function to hbase-ruby instead.
        data.map{|col, content| {:name => col.to_s, :value => content}}.compact
      end