Class: Innodb::Page::FilHeader
- Inherits:
-
Struct
- Object
- Struct
- Innodb::Page::FilHeader
- Defined in:
- lib/innodb/page.rb,
lib/innodb/page.rb
Instance Attribute Summary collapse
-
#checksum ⇒ Object
Returns the value of attribute checksum.
-
#flush_lsn ⇒ Object
Returns the value of attribute flush_lsn.
-
#lsn ⇒ Object
Returns the value of attribute lsn.
-
#next ⇒ Object
Returns the value of attribute next.
-
#offset ⇒ Object
Returns the value of attribute offset.
-
#prev ⇒ Object
Returns the value of attribute prev.
-
#space_id ⇒ Object
Returns the value of attribute space_id.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
Instance Attribute Details
#checksum ⇒ Object
Returns the value of attribute checksum
20 21 22 |
# File 'lib/innodb/page.rb', line 20 def checksum @checksum end |
#flush_lsn ⇒ Object
Returns the value of attribute flush_lsn
20 21 22 |
# File 'lib/innodb/page.rb', line 20 def flush_lsn @flush_lsn end |
#lsn ⇒ Object
Returns the value of attribute lsn
20 21 22 |
# File 'lib/innodb/page.rb', line 20 def lsn @lsn end |
#next ⇒ Object
Returns the value of attribute next
20 21 22 |
# File 'lib/innodb/page.rb', line 20 def next @next end |
#offset ⇒ Object
Returns the value of attribute offset
20 21 22 |
# File 'lib/innodb/page.rb', line 20 def offset @offset end |
#prev ⇒ Object
Returns the value of attribute prev
20 21 22 |
# File 'lib/innodb/page.rb', line 20 def prev @prev end |
#space_id ⇒ Object
Returns the value of attribute space_id
20 21 22 |
# File 'lib/innodb/page.rb', line 20 def space_id @space_id end |
#type ⇒ Object
Returns the value of attribute type
20 21 22 |
# File 'lib/innodb/page.rb', line 20 def type @type end |
Instance Method Details
#lsn_low32 ⇒ Object
33 34 35 |
# File 'lib/innodb/page.rb', line 33 def lsn_low32 lsn & 0xffffffff end |