Class: Groonga::Command::ColumnCreateSimilar
- Defined in:
- lib/groonga/command/column-create-similar.rb
Instance Attribute Summary
Attributes inherited from Base
#arguments, #command_name, #original_format, #original_source, #path_prefix
Class Method Summary collapse
Instance Method Summary collapse
-
#base_column ⇒ String
The base column name.
-
#name ⇒ String
The column name.
-
#table ⇒ String
Table name.
Methods inherited from Base
#==, #[], #[]=, #command_format?, #initialize, #key?, #output_type, #request_id, #to_command_format, #to_elasticsearch_format, #to_s, #to_uri_format, #uri_format?
Constructor Details
This class inherits a constructor from Groonga::Command::Base
Class Method Details
.command_name ⇒ Object
23 24 25 |
# File 'lib/groonga/command/column-create-similar.rb', line 23 def command_name "column_create_similar" end |
.parameter_names ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/groonga/command/column-create-similar.rb', line 27 def parameter_names [ :table, :name, :base_column, ] end |
Instance Method Details
#base_column ⇒ String
Returns The base column name.
55 56 57 |
# File 'lib/groonga/command/column-create-similar.rb', line 55 def base_column self[:base_column] end |
#name ⇒ String
Returns The column name.
48 49 50 |
# File 'lib/groonga/command/column-create-similar.rb', line 48 def name self[:name] end |
#table ⇒ String
Returns table name.
41 42 43 |
# File 'lib/groonga/command/column-create-similar.rb', line 41 def table self[:table] end |