# File lib/big_record/connection_adapters/hbase_rest_adapter.rb, line 383
      def self.translate_to_adapter_format(options)
        # Translating to the hbase-ruby column descriptor
        # TODO: Refactor this
        hbase_params = {}

        hbase_params[:name] = options[:name].to_s if options[:name]
        hbase_params[:compression] = options[:compression] if options[:compression]
        hbase_params[:max_versions] = options[:versions] if options[:versions]
        hbase_params[:bloomfilter] = options[:bloom_filter] if options[:bloom_filter]

        hbase_params
      end