class Groonga::Command::TableRename

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/table-rename.rb, line 23
def command_name
  "table_rename"
end
parameter_names() click to toggle source
# File lib/groonga/command/table-rename.rb, line 27
def parameter_names
  [
    :name,
    :new_name,
  ]
end

Public Instance Methods

name() click to toggle source

@return [String] The table name to be renamed.

@since 1.2.4

# File lib/groonga/command/table-rename.rb, line 40
def name
  self[:name]
end
new_name() click to toggle source

@return [String] The new table name.

@since 1.2.4

# File lib/groonga/command/table-rename.rb, line 47
def new_name
  self[:new_name]
end