Class: GroongaSchema::Table::CommandApplier

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

Instance Method Summary collapse

Constructor Details

#initialize(table, command) ⇒ CommandApplier

Returns a new instance of CommandApplier.



171
172
173
174
# File 'lib/groonga-schema/table.rb', line 171

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

Instance Method Details

#applyObject



176
177
178
179
180
181
182
183
# File 'lib/groonga-schema/table.rb', line 176

def apply
  apply_flags
  apply_key_type
  apply_value_type
  apply_default_tokenizer
  apply_normalizer
  apply_token_filters
end