Class: Droonga::Plugins::Groonga::ColumnRemove::Command
- Inherits:
-
GenericCommand
- Object
- GenericCommand
- Droonga::Plugins::Groonga::ColumnRemove::Command
- Defined in:
- lib/droonga/plugins/groonga/column_remove.rb
Instance Method Summary collapse
Methods inherited from GenericCommand
Constructor Details
This class inherits a constructor from Droonga::Plugins::Groonga::GenericCommand
Instance Method Details
#process_request(request) ⇒ Object
26 27 28 29 30 31 32 33 34 35 |
# File 'lib/droonga/plugins/groonga/column_remove.rb', line 26 def process_request(request) command_class = ::Groonga::Command.find("column_remove") @command = command_class.new("column_remove", request) table_name = valid_table_name("table", :error_result => false) column_name = valid_column_name("name", :table_name => table_name, :error_result => false) remove_column(table_name, column_name) end |