module Groonga::Client::Searcher::SelectRequest

Public Instance Methods

result_set() click to toggle source

For backward compatibility

# File lib/groonga/client/searcher/select_request.rb, line 22
def result_set
  response
end

Private Instance Methods

create_response() click to toggle source
Calls superclass method
# File lib/groonga/client/searcher/select_request.rb, line 27
def create_response
  response = super
  response.extend(SourcesSupport)
  response.sources
  response
end