class Groonga::Command::ColumnList

A command class that represents `column_list` command.

@since 1.0.6

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/column-list.rb, line 27
def command_name
  "column_list"
end
parameter_names() click to toggle source
# File lib/groonga/command/column-list.rb, line 31
def parameter_names
  [
    :table,
  ]
end

Public Instance Methods

table() click to toggle source

@return [String] `table` parameter value. @since 1.0.6

# File lib/groonga/command/column-list.rb, line 42
def table
  self[:table]
end