<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:02:29 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-3231] Upsert with $db is failing</title>
                <link>https://jira.mongodb.org/browse/SERVER-3231</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;A similar problem was reported a while back as &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-627&quot; title=&quot;can&amp;#39;t upsert a dbref&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-627&quot;&gt;&lt;del&gt;SERVER-627&lt;/del&gt;&lt;/a&gt;. The fix covered $id and $ref cases, but didn&apos;t fix it for references containing a $db value. If you check &lt;a href=&quot;https://github.com/mongodb/mongo/blame/master/db/jsobj.cpp&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/blame/master/db/jsobj.cpp&lt;/a&gt; @ line 847 and 847 you&apos;ll see that it checks for $ref and $id, but not for $db. This is causing certain upserts to fail with &quot;not okForStorage&quot;. Removing the $db value from the references before attempting to upsert avoids the problem, so I&apos;m using that as a workaround for now.&lt;/p&gt;

&lt;p&gt;Also, it took me ages to riddle out what was causing this. Is there any way you could give more specific information about the invalid syntax? Something like &quot;okForStorage failed with message: key &apos;$db&apos; is not allowed. Check your record and try again.&quot; would have saved an incredible amount of time. &quot;not okForStorage&quot; is just cryptic and unhelpful.&lt;/p&gt;</description>
                <environment></environment>
        <key id="18077">SERVER-3231</key>
            <summary>Upsert with $db is failing</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="9">Done</resolution>
                                        <assignee username="scotthernandez">Scott Hernandez</assignee>
                                    <reporter username="bugslayer">John Crenshaw</reporter>
                        <labels>
                    </labels>
                <created>Thu, 9 Jun 2011 17:04:30 +0000</created>
                <updated>Tue, 12 Jul 2016 00:19:26 +0000</updated>
                            <resolved>Thu, 12 Dec 2013 18:20:34 +0000</resolved>
                                                    <fixVersion>2.5.2</fixVersion>
                                    <component>Write Ops</component>
                                        <votes>0</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="470046" author="scotthernandez" created="Thu, 12 Dec 2013 18:20:34 +0000"  >&lt;p&gt;Please create a new issue and do not re-open this since it has already been committed and released.&lt;/p&gt;</comment>
                            <comment id="470020" author="jonathan.abrahams" created="Thu, 12 Dec 2013 17:44:30 +0000"  >&lt;p&gt;// Test that &apos;$id&apos;, &apos;$db&apos;, and &apos;$ref&apos; are acceptable field names in&lt;br/&gt;
// the correct case (ie, subdoc) but not otherwise.&lt;br/&gt;
// &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-3231&quot; title=&quot;Upsert with $db is failing&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-3231&quot;&gt;&lt;del&gt;SERVER-3231&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
coll.update(&lt;/p&gt;
{ n: 0 }
&lt;p&gt;, { $set: { $id: 1, $db: 1, $ref: 1 }});&lt;br/&gt;
var gle = db.runCommand(&lt;/p&gt;
{ getLastError: 1 }
&lt;p&gt;);&lt;br/&gt;
assert(gle.err != null, &apos;gleObj: &apos; + tojson(gle));&lt;br/&gt;
coll.update(&lt;/p&gt;
{ n: 0 }
&lt;p&gt;, &lt;/p&gt;
{ n: 0 }
&lt;p&gt;);&lt;/p&gt;

&lt;p&gt;coll.update(&lt;/p&gt;
{ n: 0 }
&lt;p&gt;, { $set: { &apos;x.$id&apos;: 1, &apos;x.$db&apos;: 1, &apos;x.$ref&apos;: 1 }});&lt;br/&gt;
var gle = db.runCommand(&lt;/p&gt;
{ getLastError: 1 }
&lt;p&gt;);&lt;br/&gt;
assert(gle.err == null, &apos;gleObj: &apos; + tojson(gle));&lt;br/&gt;
coll.update(&lt;/p&gt;
{ n: 0 }
&lt;p&gt;, &lt;/p&gt;
{ n: 0 }
&lt;p&gt;);&lt;/p&gt;

&lt;p&gt;Assert thrown from second update:&lt;/p&gt;

&lt;p&gt;2013-12-12T12:39:01.485-0500 assert failed : gleObj: {&lt;br/&gt;
	&quot;err&quot; : &quot;The DBRef $db field must be a String, not a NumberDouble&quot;,&lt;br/&gt;
	&quot;code&quot; : 55,&lt;br/&gt;
	&quot;n&quot; : 0,&lt;br/&gt;
	&quot;connectionId&quot; : 171,&lt;br/&gt;
	&quot;ok&quot; : 1&lt;br/&gt;
} at src/mongo/shell/assert.js:7&lt;/p&gt;</comment>
                            <comment id="389986" author="scotthernandez" created="Sat, 27 Jul 2013 12:56:28 +0000"  >&lt;p&gt;fixed in &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-7557&quot; title=&quot;Update doesn&amp;#39;t support &amp;quot;$&amp;quot;s in the field (not at the start)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-7557&quot;&gt;&lt;del&gt;SERVER-7557&lt;/del&gt;&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                            <outwardlinks description="duplicates">
                                        <issuelink>
            <issuekey id="55309">SERVER-7557</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="141889">SERVER-14244</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>3.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>Sat, 27 Jul 2013 12:56:28 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        10 years, 9 weeks, 6 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>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>ramon.fernandez@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            10 years, 9 weeks, 6 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Old_Backport</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10000"><![CDATA[No]]></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>bugslayer</customfieldvalue>
            <customfieldvalue>jonathan.abrahams</customfieldvalue>
            <customfieldvalue>scotthernandez</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hroy5r:</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>20488</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_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_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hsztuf:</customfieldvalue>

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