# File lib/thinking_sphinx/attribute.rb, line 180
    def live_value(instance)
      object = instance
      column = @columns.first
      column.__stack.each { |method|
        object = object.send(method)
        return sphinx_value(nil) if object.nil?
      }
      
      sphinx_value object.send(column.__name)
    end