class Groonga::Command::TableRemove

Public Class Methods

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

Public Instance Methods

dependent?() click to toggle source

@return [Boolean] Whether the dependent objects of the table

are also removed or not.

@since 1.1.8

# File lib/groonga/command/table-remove.rb, line 48
def dependent?
  self[:dependent] != "no"
end
name() click to toggle source

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

@since 1.1.8

# File lib/groonga/command/table-remove.rb, line 40
def name
  self[:name]
end