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

XMLWordPrintableJSON

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

      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
              Reporter:
              Scott Hernandez (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

                Created:
                Updated:
                Resolved: