# File lib/thinking_sphinx/field.rb, line 55
    def initialize(source, columns, options = {})
      super
      
      @sortable = options[:sortable] || false
      @infixes  = options[:infixes]  || false
      @prefixes = options[:prefixes] || false
      
      source.fields << self
    end