class Groonga::Command::ColumnCopy

A command class that represents `column_copy` command.

@since 1.1.3

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/column-copy.rb, line 26
def command_name
  "column_copy"
end
parameter_names() click to toggle source
# File lib/groonga/command/column-copy.rb, line 30
def parameter_names
  [
    :from_table,
    :from_name,
    :to_table,
    :to_name,
  ]
end

Public Instance Methods

from_name() click to toggle source

@return [String] `from_name` parameter value.

@since 1.1.3

# File lib/groonga/command/column-copy.rb, line 52
def from_name
  self[:from_name]
end
from_table() click to toggle source

@return [String] `from_table` parameter value.

@since 1.1.3

# File lib/groonga/command/column-copy.rb, line 45
def from_table
  self[:from_table]
end
to_name() click to toggle source

@return [String] `to_name` parameter value.

@since 1.1.3

# File lib/groonga/command/column-copy.rb, line 66
def to_name
  self[:to_name]
end
to_table() click to toggle source

@return [String] `to_table` parameter value.

@since 1.1.3

# File lib/groonga/command/column-copy.rb, line 59
def to_table
  self[:to_table]
end