class Innodb::DataType::TransactionIdType
Transaction ID.
Attributes
name[R]
width[R]
Public Class Methods
new(base_type, modifiers, properties)
click to toggle source
# File lib/innodb/data_type.rb, line 356 def initialize(base_type, modifiers, properties) @width = 6 @name = Innodb::DataType.make_name(base_type, modifiers, properties) end
Public Instance Methods
read(cursor)
click to toggle source
# File lib/innodb/data_type.rb, line 361 def read(cursor) cursor.name("transaction_id") { cursor.read_uint48 } end