You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. res = s.select(keyword, fields='id,pubDate')
2. res = res.next_batch()
What is the expected output? What do you see instead?
1. solr => path=/select params={fl=id,pubDate,score ...
2. solr => path=/select params={fl=*,score ...
(2) missing field list param
What version of the product are you using? On what operating system?
solrpy-0.9.4, Windows
Please provide any additional information below.
Original issue reported on code.google.com by otor...@gmail.com on 6 Apr 2011 at 9:44
The text was updated successfully, but these errors were encountered:
next_batch() also loses the "score" parameter from the original search, so it ends up defaulting to "True". The monkey-patch kinda works for me, but I had to add
If it means anything, I had this same issue in both versions for python 2 and 3. I actually ran a performance test on my data to show the difference it made and verify the problem. The monkey patch worked perfectly.
Original issue reported on code.google.com by
otor...@gmail.com
on 6 Apr 2011 at 9:44The text was updated successfully, but these errors were encountered: