Class: Groonga::Command::Select::Result::DrillDownResult

Inherits:
Struct
  • Object
show all
Defined in:
lib/groonga/command.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#columnsObject

Returns the value of attribute columns

Returns:

  • (Object)

    the current value of columns



163
164
165
# File 'lib/groonga/command.rb', line 163

def columns
  @columns
end

#n_hitsObject

Returns the value of attribute n_hits

Returns:

  • (Object)

    the current value of n_hits



163
164
165
# File 'lib/groonga/command.rb', line 163

def n_hits
  @n_hits
end

#valuesObject

Returns the value of attribute values

Returns:

  • (Object)

    the current value of values



163
164
165
# File 'lib/groonga/command.rb', line 163

def values
  @values
end

Instance Method Details

#recordsObject



164
165
166
# File 'lib/groonga/command.rb', line 164

def records
  @records ||= Result.create_records(columns, values)
end