# File lib/innodb/undo_log.rb, line 110
    def each_undo_record
      unless block_given?
        return enum_for(:each_undo_record)
      end

      while rec = undo_record
        yield rec
      end
    end