Class: Groonga::Command::ColumnList

Inherits:
Base
  • Object
show all
Defined in:
lib/groonga/command/column-list.rb

Overview

A command class that represents column_list command.

Since:

  • 1.0.6

Instance Attribute Summary

Attributes inherited from Base

#arguments, #name, #original_format, #original_source

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#==, #[], #[]=, #command_format?, #has_key?, #initialize, #output_type, #to_command_format, #to_uri_format, #uri_format?

Constructor Details

This class inherits a constructor from Groonga::Command::Base

Class Method Details

.parameter_namesObject

Since:

  • 1.0.6



30
31
32
33
34
# File 'lib/groonga/command/column-list.rb', line 30

def parameter_names
  [
    :table,
  ]
end

Instance Method Details

#tableString

Returns table parameter value.

Returns:

  • (String)

    table parameter value.

Since:

  • 1.0.6



39
40
41
# File 'lib/groonga/command/column-list.rb', line 39

def table
  self[:table]
end