class Groonga::Command::LogicalTableRemove

A command class that represents `logical_table_remove` command.

@since 1.1.3

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/logical-table-remove.rb, line 26
def command_name
  "logical_table_remove"
end
parameter_names() click to toggle source
# File lib/groonga/command/logical-table-remove.rb, line 30
def parameter_names
  [
    :logical_table,
    :shard_key,
    :min,
    :min_border,
    :max,
    :max_border,
  ]
end

Public Instance Methods

logical_table() click to toggle source

@return [String] `logical_table` parameter value.

@since 1.1.3

# File lib/groonga/command/logical-table-remove.rb, line 47
def logical_table
  self[:logical_table]
end
max() click to toggle source

@return [String] `max` parameter value.

@since 1.1.3

# File lib/groonga/command/logical-table-remove.rb, line 75
def max
  self[:max]
end
max_border() click to toggle source

@return [String] `max_border` parameter value.

@since 1.1.3

# File lib/groonga/command/logical-table-remove.rb, line 82
def max_border
  self[:max_border]
end
min() click to toggle source

@return [String] `min` parameter value.

@since 1.1.3

# File lib/groonga/command/logical-table-remove.rb, line 61
def min
  self[:min]
end
min_border() click to toggle source

@return [String] `min_border` parameter value.

@since 1.1.3

# File lib/groonga/command/logical-table-remove.rb, line 68
def min_border
  self[:min_border]
end
shard_key() click to toggle source

@return [String] `shard_key` parameter value.

@since 1.1.3

# File lib/groonga/command/logical-table-remove.rb, line 54
def shard_key
  self[:shard_key]
end