Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-11135

BSONObjBuilder.appendNumber(numeric_limits<long long>::min()) results in 0 value

    • Type: Icon: Bug Bug
    • Resolution: Done
    • Priority: Icon: Critical - P2 Critical - P2
    • 2.5.4
    • Affects Version/s: None
    • Component/s: Internal Code, Write Ops
    • Labels:
      None
    • ALL

      Adding this to jsobjtests.cpp shows the error.

              class AppendNumberLongMin {
              public:
                  void run() {
                      BSONObjBuilder b;
                      b.appendNumber("a", std::numeric_limits<long long>::min());
                      BSONObj o1 = b.obj();
      
                      BSONObj o2 = BSON("a" << std::numeric_limits<long long>::min());
      
                      ASSERT_EQUALS(o1, o2);
                  }
              };
      

      Output:

      JsobjTests::BSONObjTests::AppendNumberLongMin	Expected o1 == o2 ({ a: 0 } == { a: -9223372036854775808 }) @src/mongo/dbtests/jsobjtests.cpp:567
      
      

            Assignee:
            benety.goh@mongodb.com Benety Goh
            Reporter:
            scotthernandez Scott Hernandez (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: