class Innodb::Page::Index::RecordHeader
Constants
- RECORD_INFO_DELETED_FLAG
This record has been marked as deleted.
- RECORD_INFO_MIN_REC_FLAG
This record is the minimum record at this level of the B-tree.
Public Instance Methods
deleted?()
click to toggle source
# File lib/innodb/page/index.rb, line 48 def deleted? (info_flags & RECORD_INFO_DELETED_FLAG) != 0 end
min_rec?()
click to toggle source
# File lib/innodb/page/index.rb, line 44 def min_rec? (info_flags & RECORD_INFO_MIN_REC_FLAG) != 0 end