Class: GroongaSchema::Column::CommandApplier

Inherits:
Object
  • Object
show all
Defined in:
lib/groonga-schema/column.rb

Instance Method Summary collapse

Constructor Details

#initialize(column, command) ⇒ CommandApplier

Returns a new instance of CommandApplier.



159
160
161
162
# File 'lib/groonga-schema/column.rb', line 159

def initialize(column, command)
  @column = column
  @command = command
end

Instance Method Details

#applyObject



164
165
166
167
168
# File 'lib/groonga-schema/column.rb', line 164

def apply
  apply_flags
  apply_value_type
  apply_sources
end