Skip to content

Commit f014b7d

Browse files
committed
WIP
1 parent b3eaf2d commit f014b7d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitmodules

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[submodule "specifications"]
22
path = testdata/specifications
3-
url = https://github.com/mongodb/specifications
3+
url = https://github.com/qingyang-hu/specifications.git
4+
branch = drivers3064

internal/integration/unified/collection_operation_execution.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1500,6 +1500,8 @@ func createFindCursor(ctx context.Context, operation *operation) (*cursorResult,
15001500
case "maxAwaitTimeMS":
15011501
maxAwaitTimeMS := time.Duration(val.Int32()) * time.Millisecond
15021502
opts.SetMaxAwaitTime(maxAwaitTimeMS)
1503+
case "rawData":
1504+
opts.SetRawBucketsData(val.Boolean())
15031505
default:
15041506
return nil, fmt.Errorf("unrecognized find option %q", key)
15051507
}

0 commit comments

Comments
 (0)