Re: Solr 8.4.1, NOT NULL query not working on plong & pint type fields (fieldname:* )

2020-11-26 Thread Deepu
Hi Shawn, Thanks for taking time and replay. Thanks, Deepu On Thu, Nov 26, 2020 at 10:53 PM Shawn Heisey wrote: > On 11/25/2020 10:42 AM, Deepu wrote: > > We are in the process of migrating from Solr 5 to Solr 8, during testing > > identified that "Not null" queries on plong & pint field types

Re: Solr 8.4.1, NOT NULL query not working on plong & pint type fields (fieldname:* )

2020-11-26 Thread Shawn Heisey
On 11/25/2020 10:42 AM, Deepu wrote: We are in the process of migrating from Solr 5 to Solr 8, during testing identified that "Not null" queries on plong & pint field types are not giving any results, it is working fine with solr 5.4 version. could you please let me know if you have suggestions

Solr 8.4.1, NOT NULL query not working on plong & pint type fields (fieldname:* )

2020-11-25 Thread Deepu
Dear Team, We are in the process of migrating from Solr 5 to Solr 8, during testing identified that "Not null" queries on plong & pint field types are not giving any results, it is working fine with solr 5.4 version. could you please let me know if you have suggestions on this issue? Thanks Deep

Re: NOT NULL Query

2008-10-15 Thread Chris Hostetter
1) strictly speaking there is no such thing as a NULL field value in Solr -- there are fields that have a value and fields that don't and as mentioned yourField:[* TO *] will give you all docs that have a value in the yourField field. 2) http://people.apache.org/~hossman/#threadhijack Thread H

Re: NOT NULL Query

2008-10-15 Thread mike topper
I think you can do field:["" TO *] to grab everything that is not null. -Mike John E. McBride wrote: Hello All, I need to run a query which asks: field = NOT NULL should this perhaps be done with a filter? I can't find out how to do NOT NULL from the documentation, would appreciate any advi

Re: NOT NULL Query

2008-10-15 Thread Ryan McKinley
try: field:[* TO *] On Oct 15, 2008, at 9:44 AM, John E. McBride wrote: Hello All, I need to run a query which asks: field = NOT NULL should this perhaps be done with a filter? I can't find out how to do NOT NULL from the documentation, would appreciate any advice. Thanks, John

NOT NULL Query

2008-10-15 Thread John E. McBride
Hello All, I need to run a query which asks: field = NOT NULL should this perhaps be done with a filter? I can't find out how to do NOT NULL from the documentation, would appreciate any advice. Thanks, John