# File lib/innodb/log_reader.rb, line 43
  def each_record(follow, wait=0.5)
    begin
      loop { yield record }
    rescue EOFError, ChecksumError
      sleep(wait) and retry if follow
    end
  end