# File lib/rubyrep/proxy_block_cursor.rb, line 51
    def next_row
      if self.last_row
        row, self.last_row = self.last_row, nil
      else
        row = cursor.next_row
      end
      row
    end