-
Type: Task
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: 5.0.0-rc6
-
Component/s: None
-
Fully Compatible
-
v5.0
-
Execution Team 2021-09-20, Execution Team 2021-10-04
In the design for timeseries, we've said that we would prohibit drops of system.views if timeseries collections are present, but that does not appear to be implemented in the 5.0 rc series.
> db.runCommand({create: "ts", timeseries: {timeField: "time"}}) { "ok" : 1 } > db.system.views.find() { "_id" : "test.ts", "viewOn" : "system.buckets.ts", "pipeline" : [ { "$_internalUnpackBucket" : { "timeField" : "time", "bucketMaxSpanSeconds" : 3600, "exclude" : [ ] } } ] } > db.system.views.drop() true > db.system.views.find() >
- causes
-
SERVER-83874 Move primary operation doesn't drop db.system.views on the donor
- Closed