We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45e4657 commit 2b4a64aCopy full SHA for 2b4a64a
mongo/options/bulkwriteoptions.go
@@ -98,15 +98,3 @@ func (b *BulkWriteOptionsBuilder) SetLet(let interface{}) *BulkWriteOptionsBuild
98
99
return b
100
}
101
-
102
-// SetRawData sets the value for the RawData field. If true, it allows the CRUD operations to access timeseries
103
-// collections on the bucket-level. This option is only valid for MongoDB versions >= 9.0. The default value is false.
104
-func (b *BulkWriteOptionsBuilder) SetRawData(rawData bool) *BulkWriteOptionsBuilder {
105
- b.Opts = append(b.Opts, func(opts *BulkWriteOptions) error {
106
- opts.RawData = &rawData
107
108
- return nil
109
- })
110
111
- return b
112
-}
0 commit comments