PHP Classes

File: vendor/mongodb/mongodb/tests/SpecTests/transactions/findOneAndUpdate.json

Recommend this page to a friend!
  Classes of walid laggoune   MongoDB Queue PHP Query Execute   vendor/mongodb/mongodb/tests/SpecTests/transactions/findOneAndUpdate.json   Download  
File: vendor/mongodb/mongodb/tests/SpecTests/transactions/findOneAndUpdate.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: MongoDB Queue PHP Query Execute
Query and execute multiple queries using MongoDB
Author: By
Last change:
Date: 4 years ago
Size: 9,915 bytes
 

Contents

Class file image Download
{ "runOn": [ { "minServerVersion": "4.0", "topology": [ "replicaset" ] }, { "minServerVersion": "4.1.8", "topology": [ "sharded" ] } ], "database_name": "transaction-tests", "collection_name": "test", "data": [ { "_id": 1 }, { "_id": 2 }, { "_id": 3 } ], "tests": [ { "description": "findOneAndUpdate", "operations": [ { "name": "startTransaction", "object": "session0" }, { "name": "findOneAndUpdate", "object": "collection", "arguments": { "session": "session0", "filter": { "_id": 3 }, "update": { "$inc": { "x": 1 } }, "returnDocument": "Before" }, "result": { "_id": 3 } }, { "name": "findOneAndUpdate", "object": "collection", "arguments": { "session": "session0", "filter": { "_id": 4 }, "update": { "$inc": { "x": 1 } }, "upsert": true, "returnDocument": "After" }, "result": { "_id": 4, "x": 1 } }, { "name": "commitTransaction", "object": "session0" }, { "name": "startTransaction", "object": "session0" }, { "name": "findOneAndUpdate", "object": "collection", "arguments": { "session": "session0", "filter": { "_id": 3 }, "update": { "$inc": { "x": 1 } }, "returnDocument": "Before" }, "result": { "_id": 3, "x": 1 } }, { "name": "commitTransaction", "object": "session0" }, { "name": "startTransaction", "object": "session0" }, { "name": "findOneAndUpdate", "object": "collection", "arguments": { "session": "session0", "filter": { "_id": 3 }, "update": { "$inc": { "x": 1 } }, "returnDocument": "Before" }, "result": { "_id": 3, "x": 2 } }, { "name": "abortTransaction", "object": "session0" } ], "expectations": [ { "command_started_event": { "command": { "findAndModify": "test", "query": { "_id": 3 }, "update": { "$inc": { "x": 1 } }, "new": false, "lsid": "session0", "txnNumber": { "$numberLong": "1" }, "startTransaction": true, "autocommit": false, "readConcern": null, "writeConcern": null }, "command_name": "findAndModify", "database_name": "transaction-tests" } }, { "command_started_event": { "command": { "findAndModify": "test", "query": { "_id": 4 }, "update": { "$inc": { "x": 1 } }, "new": true, "upsert": true, "lsid": "session0", "txnNumber": { "$numberLong": "1" }, "startTransaction": null, "autocommit": false, "readConcern": null, "writeConcern": null }, "command_name": "findAndModify", "database_name": "transaction-tests" } }, { "command_started_event": { "command": { "commitTransaction": 1, "lsid": "session0", "txnNumber": { "$numberLong": "1" }, "startTransaction": null, "autocommit": false, "readConcern": null, "writeConcern": null }, "command_name": "commitTransaction", "database_name": "admin" } }, { "command_started_event": { "command": { "findAndModify": "test", "query": { "_id": 3 }, "update": { "$inc": { "x": 1 } }, "new": false, "lsid": "session0", "txnNumber": { "$numberLong": "2" }, "startTransaction": true, "autocommit": false, "readConcern": { "afterClusterTime": 42 }, "writeConcern": null }, "command_name": "findAndModify", "database_name": "transaction-tests" } }, { "command_started_event": { "command": { "commitTransaction": 1, "lsid": "session0", "txnNumber": { "$numberLong": "2" }, "startTransaction": null, "autocommit": false, "readConcern": null, "writeConcern": null }, "command_name": "commitTransaction", "database_name": "admin" } }, { "command_started_event": { "command": { "findAndModify": "test", "query": { "_id": 3 }, "update": { "$inc": { "x": 1 } }, "new": false, "lsid": "session0", "txnNumber": { "$numberLong": "3" }, "startTransaction": true, "autocommit": false, "readConcern": { "afterClusterTime": 42 }, "writeConcern": null }, "command_name": "findAndModify", "database_name": "transaction-tests" } }, { "command_started_event": { "command": { "abortTransaction": 1, "lsid": "session0", "txnNumber": { "$numberLong": "3" }, "startTransaction": null, "autocommit": false, "readConcern": null, "writeConcern": null }, "command_name": "abortTransaction", "database_name": "admin" } } ], "outcome": { "collection": { "data": [ { "_id": 1 }, { "_id": 2 }, { "_id": 3, "x": 2 }, { "_id": 4, "x": 1 } ] } } }, { "description": "collection writeConcern ignored for findOneAndUpdate", "operations": [ { "name": "startTransaction", "object": "session0", "arguments": { "options": { "writeConcern": { "w": "majority" } } } }, { "name": "findOneAndUpdate", "object": "collection", "collectionOptions": { "writeConcern": { "w": "majority" } }, "arguments": { "session": "session0", "filter": { "_id": 3 }, "update": { "$inc": { "x": 1 } }, "returnDocument": "Before" }, "result": { "_id": 3 } }, { "name": "commitTransaction", "object": "session0" } ], "expectations": [ { "command_started_event": { "command": { "findAndModify": "test", "query": { "_id": 3 }, "update": { "$inc": { "x": 1 } }, "new": false, "lsid": "session0", "txnNumber": { "$numberLong": "1" }, "startTransaction": true, "autocommit": false, "readConcern": null, "writeConcern": null }, "command_name": "findAndModify", "database_name": "transaction-tests" } }, { "command_started_event": { "command": { "commitTransaction": 1, "lsid": "session0", "txnNumber": { "$numberLong": "1" }, "startTransaction": null, "autocommit": false, "readConcern": null, "writeConcern": { "w": "majority" } }, "command_name": "commitTransaction", "database_name": "admin" } } ] } ] }