@@ -3281,20 +3281,23 @@ func prepareFindOp(socket *mongoSocket, op *queryOp, limit int32) bool {
32813281 }
32823282
32833283 find := findCmd {
3284- Collection : op .collection [nameDot + 1 :],
3285- Filter : op .query ,
3286- Projection : op .selector ,
3287- Sort : op .options .OrderBy ,
3288- Skip : op .skip ,
3289- Limit : limit ,
3290- MaxTimeMS : op .options .MaxTimeMS ,
3291- MaxScan : op .options .MaxScan ,
3292- Hint : op .options .Hint ,
3293- Comment : op .options .Comment ,
3294- Snapshot : op .options .Snapshot ,
3295- OplogReplay : op .flags & flagLogReplay != 0 ,
3296- Collation : op .options .Collation ,
3297- ReadConcern : readLevel {level : op .readConcern },
3284+ Collection : op .collection [nameDot + 1 :],
3285+ Filter : op .query ,
3286+ Projection : op .selector ,
3287+ Sort : op .options .OrderBy ,
3288+ Skip : op .skip ,
3289+ Limit : limit ,
3290+ MaxTimeMS : op .options .MaxTimeMS ,
3291+ MaxScan : op .options .MaxScan ,
3292+ Hint : op .options .Hint ,
3293+ Comment : op .options .Comment ,
3294+ Snapshot : op .options .Snapshot ,
3295+ Collation : op .options .Collation ,
3296+ Tailable : op .flags & flagTailable != 0 ,
3297+ AwaitData : op .flags & flagAwaitData != 0 ,
3298+ OplogReplay : op .flags & flagLogReplay != 0 ,
3299+ NoCursorTimeout : op .flags & flagNoCursorTimeout != 0 ,
3300+ ReadConcern : readLevel {level : op .readConcern },
32983301 }
32993302
33003303 if op .limit < 0 {
0 commit comments