-
Type: Bug
-
Resolution: Duplicate
-
Priority: Trivial - P5
-
None
-
Affects Version/s: 2.1.0
-
Component/s: Aggregation Framework
-
None
-
Environment:Windows x64
in console server write
[initandlisten] build info: windows sys.getwindowsversion(major=6, minor=1, build=7601, platform=2, service_pack='Service Pack 1') BOOST_LIB_VERSION=1_42
-
Windows
db.test.remove();
db.test.insert({name: "test", tags: [
,
{y:2}]});
works
db.test.aggregate({$project: {tags: 1, _id: 1}}, {$unwind: "$tags"}, {$project: {is_x: "$tags.x"}});
fails
db.test.aggregate({$project: {tags: 1, _id: 0}}, {$unwind: "$tags"}, {$project: {is_x: "$tags.x"}});
in console i see
Thu Mar 08 23:27:20 [conn1] boost assertion failure px != 0 const class mongo::Value *__cdecl boost::intrusive_ptr<class mongo::Value const >::operator ->(void) const D:\boost\boost/smart_ptr/intrusive_ptr.hpp 166 unhandled windows access violation
- duplicates
-
SERVER-5012 Aggregation Framework $project Crashes Server when _Id is Removed in Prior $project
- Closed