Re: SolrIndexSearcher#getDocList() method returns zero results, if query includes tdate range query

2017-04-25 Thread Victor Solakhian
Hi Chris, I think you are leading me to the right direction. I'm not sure how that would have worked in Solr 4.5, ... unless > perhaps your definition of a "date" field was different in the schema's > you used in 4.5, and did not involve a Trie based date field (the very > old legacy date

Re: SolrIndexSearcher#getDocList() method returns zero results, if query includes tdate range query

2017-04-25 Thread Victor Solakhian
. > Cheers -- Rick > > On April 25, 2017 11:34:17 AM EDT, Victor Solakhian <vsolakh...@gmail.com> > wrote: > >We have code that uses *SolrIndexSearcher#getDocList()* method to get > >document IDs for the query. > > > >First a Solr query string is generate

Re: SolrIndexSearcher#getDocList() method returns zero results, if query includes tdate range query

2017-04-28 Thread Victor Solakhian
) { log.error("Failed to get LuceneQParser", e); } return qParser; } Thanks again, Victor On Tue, Apr 25, 2017 at 6:19 PM, Victor Solakhian <vsolakh...@gmail.com> wrote: > Hi Chris, > > I think you are leading me to the right direction. > > I

SolrIndexSearcher#getDocList() method returns zero results, if query includes tdate range query

2017-04-25 Thread Victor Solakhian
We have code that uses *SolrIndexSearcher#getDocList()* method to get document IDs for the query. First a Solr query string is generated from UI, then the following code creates a Lucene Query org.apache.lucene.search.Query query = parser.parse(solrQueryString); where parser is