Module: Innodb

Defined in:
lib/innodb.rb,
lib/innodb/version.rb

Overview

A set of classes for parsing and working with InnoDB data files.

Defined Under Namespace

Classes: Checksum, DataDictionary, DataType, Field, FsegEntry, History, HistoryList, IbufBitmap, IbufIndex, Index, Inode, LSN, List, Log, LogBlock, LogGroup, LogReader, LogRecord, Page, Record, RecordDescriber, Space, Stats, System, UndoLog, UndoRecord, Xdes

Constant Summary collapse

VERSION =
"0.9.13"
@@debug =
false

Class Method Summary collapse

Class Method Details

.debug=(value) ⇒ Object



12
13
14
# File 'lib/innodb.rb', line 12

def self.debug=(value)
  @@debug = value
end

.debug?Boolean

Returns:

  • (Boolean)


8
9
10
# File 'lib/innodb.rb', line 8

def self.debug?
  @@debug == true
end