# File lib/thinking_sphinx/excerpter.rb, line 18
  def excerpt!(text)
    result = ThinkingSphinx::Connection.take do |connection|
      query = statement_for text
      ThinkingSphinx::Logger.log :query, query do
        connection.execute(query).first['snippet']
      end
    end

    encoded? ? result : ThinkingSphinx::UTF8.encode(result)
  end