Add &show=schema to solr-ruby IndexInfo Luke request

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@581251 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2007-10-02 14:14:49 +00:00
parent c42ea0668e
commit 9eb8ab9e2b
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@ class Solr::Request::IndexInfo < Solr::Request::Select
end
def to_hash
{:numTerms => 0}.merge(super.to_hash)
{:numTerms => 0, :show => 'schema'}.merge(super.to_hash)
end
end