Class: Innodb::List::History

Inherits:
Innodb::List show all
Defined in:
lib/innodb/list.rb

Constant Summary

Constants inherited from Innodb::List

ADDRESS_SIZE, BASE_NODE_SIZE, NODE_SIZE

Instance Attribute Summary

Attributes inherited from Innodb::List

#base, #space

Instance Method Summary collapse

Methods inherited from Innodb::List

#each, #empty?, #first, get_address, get_base_node, get_node, #include?, #initialize, #last, #length, #list_cursor, #next, #prev

Constructor Details

This class inherits a constructor from Innodb::List

Instance Method Details

#object_from_address(address) ⇒ Object



236
237
238
239
240
241
242
243
# File 'lib/innodb/list.rb', line 236

def object_from_address(address)
  return unless address

  page = @space.page(address.page)
  return unless page

  Innodb::UndoLog.new(page, address.offset - 34)
end