# File lib/active_record/vendor/mysql.rb, line 379
  def skip_result()
    if @status == :STATUS_USE_RESULT then
      loop do
        data = read
        break if data[0] == 254 and data.length == 1
      end
      @status = :STATUS_READY
    end
  end