# File lib/innodb/history.rb, line 21
  def each_history_list
    unless block_given?
      return enum_for(:each_history_list)
    end

    trx_sys.rsegs.each do |slot|
      yield history_list(slot[:space_id], slot[:page_number])
    end
  end