-
Type: Bug
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: 1.26.0
-
Component/s: Import/Export
-
None
-
Not Needed
-
Iteration Yonkers
Problem Description
Community user reports that when we export document that contains NumberLong fields, in the exported JSON file the type is wrong.
Steps to Reproduce
- Create a new collection export_test
- Insert a document {_id: ObjectId("6045a072e208592596c96009"), long: NumberLong("1234567890000")}
- Export export_test to JSON using the Compass export function
Expected Results
[{
"_id":
,
"long":
}]
Actual Results
[{
"_id":
,
"long": 12345678900000
}]
Additional Notes
- depends on
-
NODE-4044 Export NumberLong Doesn't Work Properly
- Closed