Uploaded image for project: 'Solr'
  1. Solr
  2. SOLR-424

The ruby output type produces incorrect output for numeric types without a value

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Critical
    • Resolution: Fixed
    • 1.1.0, 1.2, 1.3
    • 1.3
    • clients - ruby - flare
    • None

    Description

      When parsing the Ruby output returned from Solr, if a numerical value has no value in the index, it causes an invalid Ruby hash to be returned. For instance:

       
       'response'=>{'numFound'=>1,'start'=>0,'maxScore'=>4.951244,'docs'=>[
      	{
      	 'subclass_t'=>'Protocol',
      	 'pk_i'=>1,
      	 'id'=>'Protocol:1',
      	 'name_t'=>'Falcipain IC50',
      	 'group_id_i'=>,
      	 'score'=>4.951244}]
       }}
      

      is not a valid hash because 'group_id_i' does not resolve to anything. It should resolve to nil:

       
       'response'=>{'numFound'=>1,'start'=>0,'maxScore'=>4.951244,'docs'=>[
      	{
      	 'subclass_t'=>'Protocol',
      	 'pk_i'=>1,
      	 'id'=>'Protocol:1',
      	 'name_t'=>'Falcipain IC50',
      	 'group_id_i'=>nil,
      	 'score'=>4.951244}]
       }}
      

      Attachments

        1. fix_ruby_output.patch
          1 kB
          Kurt Schrader
        2. zero_length_int.patch
          0.8 kB
          Yonik Seeley
        3. TextResponseWriter-SOLR-424.patch
          0.7 kB
          Yousef Ourabi
        4. TextResponseWriter-424.java.patch
          0.7 kB
          Yousef Ourabi
        5. SOLR-424.patch
          2 kB
          Yonik Seeley

        Activity

          People

            ehatcher Erik Hatcher
            kschrader Kurt Schrader
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: