Hi everyone! So it seems like I ran into a bug with sdouble. I have a document with two fields. field1 is double
<field name="field1" type="double" indexed="true" stored="true" omitNorms="true"/> <field name="field2" type="sdouble" indexed="true" stored="true" omitNorms="true"/> when I index I send for both of them the same value (73000000) and when I'm querying I'm getting the following <double name="field1">73000000</double> <double name="field2">7.3E7</double> What do you think? Why am I getting different notations? BTW I'm using solr 1.2 Thanks! Jonathan