class Groonga::Command::ColumnCreateSimilar

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/column-create-similar.rb, line 23
def command_name
  "column_create_similar"
end
parameter_names() click to toggle source
# File lib/groonga/command/column-create-similar.rb, line 27
def parameter_names
  [
    :table,
    :name,
    :base_column,
  ]
end

Public Instance Methods

base_column() click to toggle source

@return [String] The base column name.

@since 1.5.2

# File lib/groonga/command/column-create-similar.rb, line 55
def base_column
  self[:base_column]
end
name() click to toggle source

@return [String] The column name.

@since 1.5.2

# File lib/groonga/command/column-create-similar.rb, line 48
def name
  self[:name]
end
table() click to toggle source

@return [String] table name.

@since 1.5.2

# File lib/groonga/command/column-create-similar.rb, line 41
def table
  self[:table]
end