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



161
162
163
# File 'lib/groonga/command.rb', line 161

def columns
  @columns
end

#n_hitsObject

Returns the value of attribute n_hits

Returns:

  • (Object)

    the current value of n_hits



161
162
163
# File 'lib/groonga/command.rb', line 161

def n_hits
  @n_hits
end

#valuesObject

Returns the value of attribute values

Returns:

  • (Object)

    the current value of values



161
162
163
# File 'lib/groonga/command.rb', line 161

def values
  @values
end

Instance Method Details

#recordsObject



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

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