<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 04:29:01 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[SERVER-32048] Updates using a numeric path component may cause index entries not to be created</title>
                <link>https://jira.mongodb.org/browse/SERVER-32048</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;div class=&quot;panel&quot; style=&quot;background-color: #EEEEEE;border-color: #ccc;border-width: 1px;&quot;&gt;&lt;div class=&quot;panelHeader&quot; style=&quot;border-bottom-width: 1px;border-bottom-color: #ccc;background-color: #6CB33F;&quot;&gt;&lt;b&gt;Issue Status as of Dec 15, 2017&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;panelContent&quot; style=&quot;background-color: #EEEEEE;&quot;&gt;
&lt;p&gt;&lt;b&gt;ISSUE SUMMARY&lt;/b&gt;&lt;br/&gt;
Updates over array elements with an explicit numerical path component (e.g. &lt;tt&gt;a.5.c&lt;/tt&gt;), where the array element does not yet exist, can fail to generate &lt;tt&gt;null&lt;/tt&gt; index keys for multikey indexes on other fields in the array element (e.g. for the index {&lt;tt&gt;&quot;a.b&quot;: 1&lt;/tt&gt;}). Updates using the &lt;tt&gt;$&lt;/tt&gt; positional operator are not affected. This index corruption will cause equality to &lt;tt&gt;null&lt;/tt&gt; queries to miss results.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;UPDATES CAUSING INDEX CORRUPTION&lt;/b&gt;&lt;br/&gt;
The following updates will fail to generate a &lt;tt&gt;null&lt;/tt&gt; index key for the index {&lt;tt&gt;&quot;a.b&quot;: 1&lt;/tt&gt;}:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Updates to &lt;tt&gt;a.&amp;lt;n&amp;gt;.c&lt;/tt&gt;, where &lt;tt&gt;&amp;lt;n&amp;gt;&lt;/tt&gt; is an integer greater than or equal to the length of the array &lt;tt&gt;a&lt;/tt&gt;, and &lt;tt&gt;a&lt;/tt&gt; is not empty. The update must create the array element &lt;tt&gt;a.&amp;lt;n&amp;gt;&lt;/tt&gt; to cause index corruption, so it must be one of &lt;tt&gt;$set&lt;/tt&gt;, &lt;tt&gt;$inc&lt;/tt&gt;, &lt;tt&gt;$mul&lt;/tt&gt;, &lt;tt&gt;$addToSet&lt;/tt&gt;, &lt;tt&gt;$bit&lt;/tt&gt;, &lt;tt&gt;$min&lt;/tt&gt;, &lt;tt&gt;$max&lt;/tt&gt;, &lt;tt&gt;$currentDate&lt;/tt&gt;, or &lt;tt&gt;$push&lt;/tt&gt;, &lt;tt&gt;$pushAll&lt;/tt&gt;.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;The following updates are &lt;b&gt;not&lt;/b&gt; affected:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Updates to &lt;tt&gt;a.&amp;lt;n&amp;gt;.c&lt;/tt&gt;, where &lt;tt&gt;&amp;lt;n&amp;gt;&lt;/tt&gt; is less than the length of the array &lt;tt&gt;a&lt;/tt&gt;.&lt;/li&gt;
	&lt;li&gt;Updates to &lt;tt&gt;a.&amp;lt;n&amp;gt;.c&lt;/tt&gt;, when the array &lt;tt&gt;a&lt;/tt&gt; is empty.&lt;/li&gt;
	&lt;li&gt;Updates to &lt;tt&gt;a.$.c&lt;/tt&gt;.&lt;/li&gt;
	&lt;li&gt;Updates to &lt;tt&gt;a.&amp;lt;n&amp;gt;&lt;/tt&gt;.&lt;/li&gt;
	&lt;li&gt;&lt;tt&gt;$rename&lt;/tt&gt;, &lt;tt&gt;$setOnInsert&lt;/tt&gt;, &lt;tt&gt;$unset&lt;/tt&gt;, &lt;tt&gt;$pop&lt;/tt&gt;, &lt;tt&gt;$pull&lt;/tt&gt;, and &lt;tt&gt;$pullAll&lt;/tt&gt;.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;b&gt;QUERIES AFFECTED BY INDEX CORRUPTION&lt;/b&gt;&lt;br/&gt;
The following queries will miss results due to index corruption of {&lt;tt&gt;&quot;a.b&quot;: 1&lt;/tt&gt;}:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;{&lt;tt&gt;&quot;a.b&quot;: null&lt;/tt&gt;}&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;The following queries are &lt;b&gt;not&lt;/b&gt; affected:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;{&lt;tt&gt;&quot;a.b&quot;: {$exists: false&lt;/tt&gt;}}&lt;/li&gt;
	&lt;li&gt;{&lt;tt&gt;&quot;a.b&quot;: {$exists: true&lt;/tt&gt;}}&lt;/li&gt;
	&lt;li&gt;{&lt;tt&gt;&quot;a.b&quot;: {$ne: null&lt;/tt&gt;}}&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;b&gt;HOW DO I TELL WHETHER I&apos;M AFFECTED?&lt;/b&gt;&lt;br/&gt;
If you have never issued updates with explicit numerical path components, you&apos;re not affected. In order to test whether you are affected, run the &lt;a href=&quot;https://docs.mongodb.com/manual/reference/command/validate/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;&lt;tt&gt;validate&lt;/tt&gt;&lt;/a&gt; command with &lt;tt&gt;full:true&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;HOW DO I RECOVER?&lt;/b&gt;&lt;br/&gt;
Rebuild any affected indexes.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;HOW TO PREVENT THIS ISSUE?&lt;/b&gt;&lt;br/&gt;
Upgrade to a version where this issue is fixed. The issue is fixed in 3.6.1, 3.4.11, 3.2.19, 3.0.16.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;AFFECTED VERSIONS&lt;/b&gt;&lt;br/&gt;
This affects 3.0.15 and earlier versions of 3.0; 3.2.18 and earlier versions of 3.2; 3.4.10 and earlier versions of 3.4; 3.6.0 and earlier versions of 3.6.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;FIX VERSION&lt;/b&gt;&lt;br/&gt;
3.6.1, 3.4.11, 3.2.19, 3.0.16&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="462118">SERVER-32048</key>
            <summary>Updates using a numeric path component may cause index entries not to be created</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="13201">Fixed</resolution>
                                        <assignee username="tess.avitabile@mongodb.com">Tess Avitabile</assignee>
                                    <reporter username="max.hirschhorn@mongodb.com">Max Hirschhorn</reporter>
                        <labels>
                    </labels>
                <created>Tue, 21 Nov 2017 02:32:06 +0000</created>
                <updated>Mon, 30 Oct 2023 23:10:23 +0000</updated>
                            <resolved>Wed, 6 Dec 2017 22:17:41 +0000</resolved>
                                    <version>3.0.15</version>
                    <version>3.2.17</version>
                    <version>3.4.10</version>
                    <version>3.6.0-rc4</version>
                                    <fixVersion>3.0.16</fixVersion>
                    <fixVersion>3.2.19</fixVersion>
                    <fixVersion>3.4.11</fixVersion>
                    <fixVersion>3.6.1</fixVersion>
                    <fixVersion>3.7.1</fixVersion>
                                    <component>Write Ops</component>
                                        <votes>0</votes>
                                    <watches>16</watches>
                                                                                                                <comments>
                            <comment id="1753167" author="xgen-internal-githook" created="Fri, 15 Dec 2017 16:54:29 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Tess Avitabile&apos;, &apos;username&apos;: &apos;tessavitabile&apos;, &apos;email&apos;: &apos;tess.avitabile@mongodb.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-32048&quot; title=&quot;Updates using a numeric path component may cause index entries not to be created&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-32048&quot;&gt;&lt;del&gt;SERVER-32048&lt;/del&gt;&lt;/a&gt; Ensure updates that implicitly create an array element generate new null index keys&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 69f94d7172801725bad43dba99ca0e5400eb293c)&lt;br/&gt;
(cherry picked from commit 80b311e0a8537a47eb723ed4b6c010b5d1006551)&lt;br/&gt;
(cherry picked from commit 5e58d9f0b6e6b42a0c9f4817e88ee1bfb7527d81)&lt;br/&gt;
(cherry picked from commit 752daa306095fb1610bb5db13b7b106ac87ec6cb)&lt;br/&gt;
Branch: v3.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/59af713ebb0004c73a2891759ac28ed580e8b4b1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/59af713ebb0004c73a2891759ac28ed580e8b4b1&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1751863" author="xgen-internal-githook" created="Thu, 14 Dec 2017 14:50:20 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Tess Avitabile&apos;, &apos;email&apos;: &apos;tess.avitabile@mongodb.com&apos;, &apos;username&apos;: &apos;tessavitabile&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-32048&quot; title=&quot;Updates using a numeric path component may cause index entries not to be created&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-32048&quot;&gt;&lt;del&gt;SERVER-32048&lt;/del&gt;&lt;/a&gt; Ensure updates that implicitly create an array element generate new null index keys&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 69f94d7172801725bad43dba99ca0e5400eb293c)&lt;br/&gt;
(cherry picked from commit 80b311e0a8537a47eb723ed4b6c010b5d1006551)&lt;br/&gt;
(cherry picked from commit 5e58d9f0b6e6b42a0c9f4817e88ee1bfb7527d81)&lt;br/&gt;
Branch: v3.2&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/752daa306095fb1610bb5db13b7b106ac87ec6cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/752daa306095fb1610bb5db13b7b106ac87ec6cb&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1750321" author="xgen-internal-githook" created="Tue, 12 Dec 2017 22:18:38 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Tess Avitabile&apos;, &apos;email&apos;: &apos;tess.avitabile@mongodb.com&apos;, &apos;username&apos;: &apos;tessavitabile&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-32048&quot; title=&quot;Updates using a numeric path component may cause index entries not to be created&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-32048&quot;&gt;&lt;del&gt;SERVER-32048&lt;/del&gt;&lt;/a&gt; Ensure updates that implicitly create an array element generate new null index keys&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 69f94d7172801725bad43dba99ca0e5400eb293c)&lt;br/&gt;
(cherry picked from commit 80b311e0a8537a47eb723ed4b6c010b5d1006551)&lt;br/&gt;
Branch: v3.4&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/5e58d9f0b6e6b42a0c9f4817e88ee1bfb7527d81&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/5e58d9f0b6e6b42a0c9f4817e88ee1bfb7527d81&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1748995" author="xgen-internal-githook" created="Mon, 11 Dec 2017 21:53:50 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Tess Avitabile&apos;, &apos;email&apos;: &apos;tess.avitabile@mongodb.com&apos;, &apos;username&apos;: &apos;tessavitabile&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-32048&quot; title=&quot;Updates using a numeric path component may cause index entries not to be created&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-32048&quot;&gt;&lt;del&gt;SERVER-32048&lt;/del&gt;&lt;/a&gt; Ensure updates that implicitly create an array element generate new null index keys&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 69f94d7172801725bad43dba99ca0e5400eb293c)&lt;br/&gt;
Branch: v3.6&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/80b311e0a8537a47eb723ed4b6c010b5d1006551&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/80b311e0a8537a47eb723ed4b6c010b5d1006551&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1744824" author="xgen-internal-githook" created="Wed, 6 Dec 2017 22:17:25 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Tess Avitabile&apos;, &apos;username&apos;: &apos;tessavitabile&apos;, &apos;email&apos;: &apos;tess.avitabile@mongodb.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-32048&quot; title=&quot;Updates using a numeric path component may cause index entries not to be created&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-32048&quot;&gt;&lt;del&gt;SERVER-32048&lt;/del&gt;&lt;/a&gt; Ensure updates that implicitly create an array element generate new null index keys&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/69f94d7172801725bad43dba99ca0e5400eb293c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/69f94d7172801725bad43dba99ca0e5400eb293c&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10420">
                    <name>Backports</name>
                                            <outwardlinks description="backported by">
                                                        </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                                                <inwardlinks description="is depended on by">
                                                        </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                                        </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18555" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname># of Sprints</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_12450" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
                        <customfieldname>Backport Requested</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="15141"><![CDATA[v3.6]]></customfieldvalue>
    <customfieldvalue key="14340"><![CDATA[v3.4]]></customfieldvalue>
    <customfieldvalue key="13440"><![CDATA[v3.2]]></customfieldvalue>
    <customfieldvalue key="12643"><![CDATA[v3.0]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10038"><![CDATA[Fully Compatible]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 27 Nov 2017 18:58:44 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        6 years, 8 weeks, 5 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[]]></customfieldvalue>


                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>false</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>luke.bonanomi@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            6 years, 8 weeks, 5 days ago
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_16465" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Linked BF Score</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10032" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Operating System</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10026"><![CDATA[ALL]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>max.hirschhorn@mongodb.com</customfieldvalue>
            <customfieldvalue>tess.avitabile@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|htkk7b:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|htc7wv:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="1979">Query 2017-12-04</customfieldvalue>
    <customfieldvalue id="2034">Query 2017-12-18</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10053" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time In Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_22870" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Triagers</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11861" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>User Summary</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="11858"><![CDATA[Completed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|htk6b3:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>