Sha256: 9e5de2f74eb536f8163906dff6a9ccae6ac56cd30e0c45532a0f710184c7800b
Contents?: true
Size: 1.32 KB
Versions: 23
Compression:
Stored size: 1.32 KB
Contents
runOn: - { minServerVersion: "4.3.4" } data: - { _id: 1, x: 11 } - { _id: 2, x: 22 } collection_name: &collection_name 'findOneAndDelete_hint' tests: - description: "FindOneAndDelete with hint string" operations: - object: collection name: findOneAndDelete arguments: filter: &filter { _id: 1 } hint: "_id_" # original document is returned by default result: &result { _id: 1, x: 11 } expectations: - command_started_event: command: findAndModify: *collection_name query: *filter hint: "_id_" remove: true outcome: &outcome collection: data: - { _id: 2, x: 22 } - description: "FindOneAndDelete with hint document" operations: - object: collection name: findOneAndDelete arguments: filter: &filter { _id: 1 } hint: { _id: 1 } # original document is returned by default result: &result { _id: 1, x: 11 } expectations: - command_started_event: command: findAndModify: *collection_name query: *filter hint: { _id: 1 } remove: true outcome: &outcome collection: data: - { _id: 2, x: 22 }
Version data entries
23 entries across 23 versions & 1 rubygems