mongo 2.4.0.rc0 → 2.4.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +1 -2
- data/lib/mongo/bulk_write/validatable.rb +3 -1
- data/lib/mongo/client.rb +30 -3
- data/lib/mongo/cluster/app_metadata.rb +7 -2
- data/lib/mongo/collection.rb +3 -1
- data/lib/mongo/collection/view.rb +3 -1
- data/lib/mongo/collection/view/aggregation.rb +3 -1
- data/lib/mongo/collection/view/builder/find_command.rb +20 -5
- data/lib/mongo/collection/view/map_reduce.rb +3 -1
- data/lib/mongo/collection/view/writable.rb +12 -2
- data/lib/mongo/cursor/builder/get_more_command.rb +3 -2
- data/lib/mongo/error/closed_stream.rb +1 -1
- data/lib/mongo/error/invalid_server_preference.rb +1 -1
- data/lib/mongo/index/view.rb +3 -1
- data/lib/mongo/operation/write/bulk/mergable.rb +1 -1
- data/lib/mongo/operation/write/create_index.rb +1 -1
- data/lib/mongo/operation/write/delete.rb +1 -1
- data/lib/mongo/operation/write/update.rb +1 -1
- data/lib/mongo/protocol/delete.rb +4 -1
- data/lib/mongo/protocol/get_more.rb +4 -1
- data/lib/mongo/protocol/insert.rb +7 -3
- data/lib/mongo/protocol/kill_cursors.rb +4 -1
- data/lib/mongo/protocol/message.rb +5 -1
- data/lib/mongo/protocol/query.rb +11 -4
- data/lib/mongo/protocol/update.rb +4 -1
- data/lib/mongo/server/connectable.rb +8 -2
- data/lib/mongo/server/connection_pool.rb +3 -1
- data/lib/mongo/server/monitor.rb +1 -0
- data/lib/mongo/socket.rb +16 -8
- data/lib/mongo/socket/ssl.rb +24 -9
- data/lib/mongo/uri.rb +6 -6
- data/lib/mongo/version.rb +1 -1
- data/mongo.gemspec +1 -1
- data/spec/mongo/bulk_write_spec.rb +117 -0
- data/spec/mongo/collection/view/aggregation_spec.rb +26 -0
- data/spec/mongo/collection/view/builder/find_command_spec.rb +244 -2
- data/spec/mongo/collection/view/map_reduce_spec.rb +13 -0
- data/spec/mongo/collection/view/readable_spec.rb +26 -0
- data/spec/mongo/collection/view/writable_spec.rb +104 -0
- data/spec/mongo/collection/view_spec.rb +13 -0
- data/spec/mongo/collection_spec.rb +226 -7
- data/spec/mongo/crud_spec.rb +5 -5
- data/spec/mongo/index/view_spec.rb +53 -0
- data/spec/mongo/server/connection_spec.rb +45 -26
- data/spec/mongo/socket/ssl_spec.rb +358 -22
- data/spec/spec_helper.rb +4 -0
- data/spec/support/authorization.rb +3 -3
- data/spec/support/certificates/client_cert.pem +21 -0
- data/spec/support/certificates/client_key.pem +28 -0
- data/spec/support/certificates/client_key_encrypted.pem +30 -0
- data/spec/support/crud.rb +67 -22
- data/spec/support/crud/read.rb +18 -36
- data/spec/support/crud/write.rb +0 -44
- data/spec/support/crud_tests/read/aggregate-collation.yml +17 -0
- data/spec/support/crud_tests/read/aggregate-out.yml +28 -0
- data/spec/support/crud_tests/read/aggregate.yml +1 -35
- data/spec/support/crud_tests/read/count-collation.yml +15 -0
- data/spec/support/crud_tests/read/count.yml +3 -15
- data/spec/support/crud_tests/read/distinct-collation.yml +17 -0
- data/spec/support/crud_tests/read/distinct.yml +1 -14
- data/spec/support/crud_tests/read/find-collation.yml +15 -0
- data/spec/support/crud_tests/read/find.yml +1 -12
- data/spec/support/crud_tests/write/deleteMany-collation.yml +22 -0
- data/spec/support/crud_tests/write/deleteMany.yml +1 -23
- data/spec/support/crud_tests/write/deleteOne-collation.yml +22 -0
- data/spec/support/crud_tests/write/deleteOne.yml +1 -21
- data/spec/support/crud_tests/write/findOneAndDelete-collation.yml +23 -0
- data/spec/support/crud_tests/write/findOneAndDelete.yml +2 -28
- data/spec/support/crud_tests/write/findOneAndReplace-collation.yml +24 -0
- data/spec/support/crud_tests/write/findOneAndReplace-upsert.yml +47 -0
- data/spec/support/crud_tests/write/findOneAndReplace.yml +13 -53
- data/spec/support/crud_tests/write/findOneAndUpdate-collation.yml +27 -0
- data/spec/support/crud_tests/write/findOneAndUpdate.yml +8 -51
- data/spec/support/crud_tests/write/insertMany.yml +1 -2
- data/spec/support/crud_tests/write/insertOne.yml +1 -2
- data/spec/support/crud_tests/write/replaceOne-collation.yml +23 -0
- data/spec/support/crud_tests/write/replaceOne-upsert.yml +48 -0
- data/spec/support/crud_tests/write/replaceOne.yml +11 -45
- data/spec/support/crud_tests/write/updateMany-collation.yml +27 -0
- data/spec/support/crud_tests/write/updateMany.yml +10 -42
- data/spec/support/crud_tests/write/updateOne-collation.yml +24 -0
- data/spec/support/crud_tests/write/updateOne.yml +7 -33
- data/spec/support/sdam/rs/new_primary_new_setversion.yml +1 -1
- data/spec/support/sdam/rs/null_election_id.yml +1 -0
- data/spec/support/sdam/rs/primary_disconnect_electionid.yml +2 -3
- data/spec/support/sdam/rs/primary_disconnect_setversion.yml +1 -2
- data/spec/support/sdam/single/direct_connection_rsarbiter.yml +1 -1
- data/spec/support/sdam/single/direct_connection_rsprimary.yml +1 -1
- data/spec/support/sdam/single/direct_connection_rssecondary.yml +1 -1
- metadata +40 -4
- metadata.gz.sig +0 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
data:
|
2
|
+
- {_id: 1, x: 11}
|
3
|
+
- {_id: 2, x: 'ping'}
|
4
|
+
- {_id: 3, x: 'pINg'}
|
5
|
+
minServerVersion: '3.4'
|
6
|
+
|
7
|
+
tests:
|
8
|
+
-
|
9
|
+
description: "UpdateMany when many documents match with collation"
|
10
|
+
operation:
|
11
|
+
name: "updateMany"
|
12
|
+
arguments:
|
13
|
+
filter:
|
14
|
+
x: 'ping'
|
15
|
+
update:
|
16
|
+
$set: {x: 'pong'}
|
17
|
+
collation: { locale: 'en_US', strength: 2 } # https://docs.mongodb.com/master/reference/collation/#collation-document
|
18
|
+
|
19
|
+
outcome:
|
20
|
+
result:
|
21
|
+
matchedCount: 2
|
22
|
+
modifiedCount: 2
|
23
|
+
collection:
|
24
|
+
data:
|
25
|
+
- {_id: 1, x: 11}
|
26
|
+
- {_id: 2, x: 'pong'}
|
27
|
+
- {_id: 3, x: 'pong'}
|
@@ -2,8 +2,6 @@ data:
|
|
2
2
|
- {_id: 1, x: 11}
|
3
3
|
- {_id: 2, x: 22}
|
4
4
|
- {_id: 3, x: 33}
|
5
|
-
- {_id: 4, x: 'ping'}
|
6
|
-
- {_id: 5, x: 'pINg'}
|
7
5
|
|
8
6
|
tests:
|
9
7
|
-
|
@@ -11,9 +9,9 @@ tests:
|
|
11
9
|
operation:
|
12
10
|
name: "updateMany"
|
13
11
|
arguments:
|
14
|
-
filter:
|
15
|
-
_id: {$gt: 1
|
16
|
-
update:
|
12
|
+
filter:
|
13
|
+
_id: {$gt: 1}
|
14
|
+
update:
|
17
15
|
$inc: {x: 1}
|
18
16
|
|
19
17
|
outcome:
|
@@ -25,37 +23,13 @@ tests:
|
|
25
23
|
- {_id: 1, x: 11}
|
26
24
|
- {_id: 2, x: 23}
|
27
25
|
- {_id: 3, x: 34}
|
28
|
-
- {_id: 4, x: 'ping'}
|
29
|
-
- {_id: 5, x: 'pINg'}
|
30
|
-
-
|
31
|
-
description: "UpdateMany when many documents match with collation"
|
32
|
-
operation:
|
33
|
-
name: "updateMany"
|
34
|
-
arguments:
|
35
|
-
filter:
|
36
|
-
x: 'ping'
|
37
|
-
update:
|
38
|
-
$set: {x: 'pong'}
|
39
|
-
collation: { locale: 'en_US', strength: 2 }
|
40
|
-
|
41
|
-
outcome:
|
42
|
-
result:
|
43
|
-
matchedCount: 2
|
44
|
-
modifiedCount: 2
|
45
|
-
collection:
|
46
|
-
data:
|
47
|
-
- {_id: 1, x: 11}
|
48
|
-
- {_id: 2, x: 22}
|
49
|
-
- {_id: 3, x: 33}
|
50
|
-
- {_id: 4, x: 'pong'}
|
51
|
-
- {_id: 5, x: 'pong'}
|
52
26
|
-
|
53
27
|
description: "UpdateMany when one document matches"
|
54
28
|
operation:
|
55
29
|
name: "updateMany"
|
56
30
|
arguments:
|
57
31
|
filter: {_id: 1}
|
58
|
-
update:
|
32
|
+
update:
|
59
33
|
$inc: {x: 1}
|
60
34
|
|
61
35
|
outcome:
|
@@ -67,15 +41,13 @@ tests:
|
|
67
41
|
- {_id: 1, x: 12}
|
68
42
|
- {_id: 2, x: 22}
|
69
43
|
- {_id: 3, x: 33}
|
70
|
-
- {_id: 4, x: 'ping'}
|
71
|
-
- {_id: 5, x: 'pINg'}
|
72
44
|
-
|
73
45
|
description: "UpdateMany when no documents match"
|
74
46
|
operation:
|
75
47
|
name: "updateMany"
|
76
48
|
arguments:
|
77
|
-
filter: {_id:
|
78
|
-
update:
|
49
|
+
filter: {_id: 4}
|
50
|
+
update:
|
79
51
|
$inc: {x: 1}
|
80
52
|
|
81
53
|
outcome:
|
@@ -87,15 +59,13 @@ tests:
|
|
87
59
|
- {_id: 1, x: 11}
|
88
60
|
- {_id: 2, x: 22}
|
89
61
|
- {_id: 3, x: 33}
|
90
|
-
- {_id: 4, x: 'ping'}
|
91
|
-
- {_id: 5, x: 'pINg'}
|
92
62
|
-
|
93
63
|
description: "UpdateMany with upsert when no documents match"
|
94
64
|
operation:
|
95
65
|
name: "updateMany"
|
96
66
|
arguments:
|
97
|
-
filter: {_id:
|
98
|
-
update:
|
67
|
+
filter: {_id: 4}
|
68
|
+
update:
|
99
69
|
$inc: {x: 1}
|
100
70
|
upsert: true
|
101
71
|
|
@@ -103,12 +73,10 @@ tests:
|
|
103
73
|
result:
|
104
74
|
matchedCount: 0
|
105
75
|
modifiedCount: 0
|
106
|
-
upsertedId:
|
76
|
+
upsertedId: 4
|
107
77
|
collection:
|
108
78
|
data:
|
109
79
|
- {_id: 1, x: 11}
|
110
80
|
- {_id: 2, x: 22}
|
111
81
|
- {_id: 3, x: 33}
|
112
|
-
- {_id: 4, x:
|
113
|
-
- {_id: 5, x: 'pINg'}
|
114
|
-
- {_id: 6, x: 1}
|
82
|
+
- {_id: 4, x: 1}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
data:
|
2
|
+
- {_id: 1, x: 11}
|
3
|
+
- {_id: 2, x: 'ping'}
|
4
|
+
minServerVersion: '3.4'
|
5
|
+
|
6
|
+
tests:
|
7
|
+
-
|
8
|
+
description: "UpdateOne when one document matches with collation"
|
9
|
+
operation:
|
10
|
+
name: "updateOne"
|
11
|
+
arguments:
|
12
|
+
filter: {x: 'PING'}
|
13
|
+
update:
|
14
|
+
$set: {x: 'pong'}
|
15
|
+
collation: { locale: 'en_US', strength: 2} # https://docs.mongodb.com/master/reference/collation/#collation-document
|
16
|
+
|
17
|
+
outcome:
|
18
|
+
result:
|
19
|
+
matchedCount: 1
|
20
|
+
modifiedCount: 1
|
21
|
+
collection:
|
22
|
+
data:
|
23
|
+
- {_id: 1, x: 11}
|
24
|
+
- {_id: 2, x: 'pong'}
|
@@ -2,7 +2,6 @@ data:
|
|
2
2
|
- {_id: 1, x: 11}
|
3
3
|
- {_id: 2, x: 22}
|
4
4
|
- {_id: 3, x: 33}
|
5
|
-
- {_id: 4, x: 'ping'}
|
6
5
|
|
7
6
|
tests:
|
8
7
|
-
|
@@ -10,9 +9,9 @@ tests:
|
|
10
9
|
operation:
|
11
10
|
name: "updateOne"
|
12
11
|
arguments:
|
13
|
-
filter:
|
12
|
+
filter:
|
14
13
|
_id: {$gt: 1}
|
15
|
-
update:
|
14
|
+
update:
|
16
15
|
$inc: {x: 1}
|
17
16
|
|
18
17
|
outcome:
|
@@ -27,7 +26,7 @@ tests:
|
|
27
26
|
name: "updateOne"
|
28
27
|
arguments:
|
29
28
|
filter: {_id: 1}
|
30
|
-
update:
|
29
|
+
update:
|
31
30
|
$inc: {x: 1}
|
32
31
|
|
33
32
|
outcome:
|
@@ -39,34 +38,12 @@ tests:
|
|
39
38
|
- {_id: 1, x: 12}
|
40
39
|
- {_id: 2, x: 22}
|
41
40
|
- {_id: 3, x: 33}
|
42
|
-
- {_id: 4, x: 'ping'}
|
43
|
-
-
|
44
|
-
description: "UpdateOne when one document matches with collation"
|
45
|
-
operation:
|
46
|
-
name: "updateOne"
|
47
|
-
arguments:
|
48
|
-
filter: {x: 'PING'}
|
49
|
-
update:
|
50
|
-
$set: {x: 'pong'}
|
51
|
-
collation: { locale: 'en_US', strength: 2}
|
52
|
-
|
53
|
-
outcome:
|
54
|
-
result:
|
55
|
-
matchedCount: 1
|
56
|
-
modifiedCount: 1
|
57
|
-
collection:
|
58
|
-
data:
|
59
|
-
- {_id: 1, x: 11}
|
60
|
-
- {_id: 2, x: 22}
|
61
|
-
- {_id: 3, x: 33}
|
62
|
-
- {_id: 4, x: 'pong'}
|
63
|
-
|
64
41
|
-
|
65
42
|
description: "UpdateOne when no documents match"
|
66
43
|
operation:
|
67
44
|
name: "updateOne"
|
68
45
|
arguments:
|
69
|
-
filter: {_id:
|
46
|
+
filter: {_id: 4}
|
70
47
|
update:
|
71
48
|
$inc: {x: 1}
|
72
49
|
|
@@ -79,13 +56,12 @@ tests:
|
|
79
56
|
- {_id: 1, x: 11}
|
80
57
|
- {_id: 2, x: 22}
|
81
58
|
- {_id: 3, x: 33}
|
82
|
-
- {_id: 4, x: 'ping'}
|
83
59
|
-
|
84
60
|
description: "UpdateOne with upsert when no documents match"
|
85
61
|
operation:
|
86
62
|
name: "updateOne"
|
87
63
|
arguments:
|
88
|
-
filter: {_id:
|
64
|
+
filter: {_id: 4}
|
89
65
|
update:
|
90
66
|
$inc: {x: 1}
|
91
67
|
upsert: true
|
@@ -94,12 +70,10 @@ tests:
|
|
94
70
|
result:
|
95
71
|
matchedCount: 0
|
96
72
|
modifiedCount: 0
|
97
|
-
upsertedId:
|
73
|
+
upsertedId: 4
|
98
74
|
collection:
|
99
75
|
data:
|
100
76
|
- {_id: 1, x: 11}
|
101
77
|
- {_id: 2, x: 22}
|
102
78
|
- {_id: 3, x: 33}
|
103
|
-
- {_id: 4, x:
|
104
|
-
- {_id: 5, x: 1}
|
105
|
-
|
79
|
+
- {_id: 4, x: 1}
|
@@ -136,8 +136,7 @@ phases: [
|
|
136
136
|
ismaster: false,
|
137
137
|
secondary: true,
|
138
138
|
hosts: ["a:27017", "b:27017"],
|
139
|
-
setName: "rs"
|
140
|
-
setVersion: 2
|
139
|
+
setName: "rs"
|
141
140
|
}]
|
142
141
|
],
|
143
142
|
outcome: {
|
@@ -146,7 +145,7 @@ phases: [
|
|
146
145
|
type: "RSPrimary",
|
147
146
|
setName: "rs",
|
148
147
|
setVersion: 1,
|
149
|
-
electionId: {"$oid": "
|
148
|
+
electionId: {"$oid": "000000000000000000000003"}
|
150
149
|
},
|
151
150
|
"b:27017": {
|
152
151
|
type: "RSSecondary",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.0.
|
4
|
+
version: 2.4.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tyler Brock
|
@@ -32,7 +32,7 @@ cert_chain:
|
|
32
32
|
EhIn2f8suSc9QAqYt7w4T+PMtjxWTVcXs+Uy2PbDtjhtEBz6ZsP6YSsOpJbrCjCV
|
33
33
|
wZtXjpRUvWz86V5vjhHCTE8fqfEb85aeDwUCckPzpio=
|
34
34
|
-----END CERTIFICATE-----
|
35
|
-
date: 2016-
|
35
|
+
date: 2016-11-01 00:00:00.000000000 Z
|
36
36
|
dependencies:
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: bson
|
@@ -40,14 +40,14 @@ dependencies:
|
|
40
40
|
requirements:
|
41
41
|
- - "~>"
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: 4.2.0.
|
43
|
+
version: 4.2.0.rc1
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
46
|
version_requirements: !ruby/object:Gem::Requirement
|
47
47
|
requirements:
|
48
48
|
- - "~>"
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: 4.2.0.
|
50
|
+
version: 4.2.0.rc1
|
51
51
|
description: A Ruby driver for MongoDB
|
52
52
|
email: mongodb-dev@googlegroups.com
|
53
53
|
executables:
|
@@ -432,6 +432,9 @@ files:
|
|
432
432
|
- spec/support/authorization.rb
|
433
433
|
- spec/support/certificates/ca.pem
|
434
434
|
- spec/support/certificates/client.pem
|
435
|
+
- spec/support/certificates/client_cert.pem
|
436
|
+
- spec/support/certificates/client_key.pem
|
437
|
+
- spec/support/certificates/client_key_encrypted.pem
|
435
438
|
- spec/support/certificates/crl.pem
|
436
439
|
- spec/support/certificates/crl_client_revoked.pem
|
437
440
|
- spec/support/certificates/password_protected.pem
|
@@ -457,19 +460,34 @@ files:
|
|
457
460
|
- spec/support/crud.rb
|
458
461
|
- spec/support/crud/read.rb
|
459
462
|
- spec/support/crud/write.rb
|
463
|
+
- spec/support/crud_tests/read/aggregate-collation.yml
|
464
|
+
- spec/support/crud_tests/read/aggregate-out.yml
|
460
465
|
- spec/support/crud_tests/read/aggregate.yml
|
466
|
+
- spec/support/crud_tests/read/count-collation.yml
|
461
467
|
- spec/support/crud_tests/read/count.yml
|
468
|
+
- spec/support/crud_tests/read/distinct-collation.yml
|
462
469
|
- spec/support/crud_tests/read/distinct.yml
|
470
|
+
- spec/support/crud_tests/read/find-collation.yml
|
463
471
|
- spec/support/crud_tests/read/find.yml
|
472
|
+
- spec/support/crud_tests/write/deleteMany-collation.yml
|
464
473
|
- spec/support/crud_tests/write/deleteMany.yml
|
474
|
+
- spec/support/crud_tests/write/deleteOne-collation.yml
|
465
475
|
- spec/support/crud_tests/write/deleteOne.yml
|
476
|
+
- spec/support/crud_tests/write/findOneAndDelete-collation.yml
|
466
477
|
- spec/support/crud_tests/write/findOneAndDelete.yml
|
478
|
+
- spec/support/crud_tests/write/findOneAndReplace-collation.yml
|
479
|
+
- spec/support/crud_tests/write/findOneAndReplace-upsert.yml
|
467
480
|
- spec/support/crud_tests/write/findOneAndReplace.yml
|
481
|
+
- spec/support/crud_tests/write/findOneAndUpdate-collation.yml
|
468
482
|
- spec/support/crud_tests/write/findOneAndUpdate.yml
|
469
483
|
- spec/support/crud_tests/write/insertMany.yml
|
470
484
|
- spec/support/crud_tests/write/insertOne.yml
|
485
|
+
- spec/support/crud_tests/write/replaceOne-collation.yml
|
486
|
+
- spec/support/crud_tests/write/replaceOne-upsert.yml
|
471
487
|
- spec/support/crud_tests/write/replaceOne.yml
|
488
|
+
- spec/support/crud_tests/write/updateMany-collation.yml
|
472
489
|
- spec/support/crud_tests/write/updateMany.yml
|
490
|
+
- spec/support/crud_tests/write/updateOne-collation.yml
|
473
491
|
- spec/support/crud_tests/write/updateOne.yml
|
474
492
|
- spec/support/gridfs.rb
|
475
493
|
- spec/support/gridfs_tests/delete.yml
|
@@ -756,6 +774,9 @@ test_files:
|
|
756
774
|
- spec/support/authorization.rb
|
757
775
|
- spec/support/certificates/ca.pem
|
758
776
|
- spec/support/certificates/client.pem
|
777
|
+
- spec/support/certificates/client_cert.pem
|
778
|
+
- spec/support/certificates/client_key.pem
|
779
|
+
- spec/support/certificates/client_key_encrypted.pem
|
759
780
|
- spec/support/certificates/crl.pem
|
760
781
|
- spec/support/certificates/crl_client_revoked.pem
|
761
782
|
- spec/support/certificates/password_protected.pem
|
@@ -781,19 +802,34 @@ test_files:
|
|
781
802
|
- spec/support/crud/read.rb
|
782
803
|
- spec/support/crud/write.rb
|
783
804
|
- spec/support/crud.rb
|
805
|
+
- spec/support/crud_tests/read/aggregate-collation.yml
|
806
|
+
- spec/support/crud_tests/read/aggregate-out.yml
|
784
807
|
- spec/support/crud_tests/read/aggregate.yml
|
808
|
+
- spec/support/crud_tests/read/count-collation.yml
|
785
809
|
- spec/support/crud_tests/read/count.yml
|
810
|
+
- spec/support/crud_tests/read/distinct-collation.yml
|
786
811
|
- spec/support/crud_tests/read/distinct.yml
|
812
|
+
- spec/support/crud_tests/read/find-collation.yml
|
787
813
|
- spec/support/crud_tests/read/find.yml
|
814
|
+
- spec/support/crud_tests/write/deleteMany-collation.yml
|
788
815
|
- spec/support/crud_tests/write/deleteMany.yml
|
816
|
+
- spec/support/crud_tests/write/deleteOne-collation.yml
|
789
817
|
- spec/support/crud_tests/write/deleteOne.yml
|
818
|
+
- spec/support/crud_tests/write/findOneAndDelete-collation.yml
|
790
819
|
- spec/support/crud_tests/write/findOneAndDelete.yml
|
820
|
+
- spec/support/crud_tests/write/findOneAndReplace-collation.yml
|
821
|
+
- spec/support/crud_tests/write/findOneAndReplace-upsert.yml
|
791
822
|
- spec/support/crud_tests/write/findOneAndReplace.yml
|
823
|
+
- spec/support/crud_tests/write/findOneAndUpdate-collation.yml
|
792
824
|
- spec/support/crud_tests/write/findOneAndUpdate.yml
|
793
825
|
- spec/support/crud_tests/write/insertMany.yml
|
794
826
|
- spec/support/crud_tests/write/insertOne.yml
|
827
|
+
- spec/support/crud_tests/write/replaceOne-collation.yml
|
828
|
+
- spec/support/crud_tests/write/replaceOne-upsert.yml
|
795
829
|
- spec/support/crud_tests/write/replaceOne.yml
|
830
|
+
- spec/support/crud_tests/write/updateMany-collation.yml
|
796
831
|
- spec/support/crud_tests/write/updateMany.yml
|
832
|
+
- spec/support/crud_tests/write/updateOne-collation.yml
|
797
833
|
- spec/support/crud_tests/write/updateOne.yml
|
798
834
|
- spec/support/gridfs.rb
|
799
835
|
- spec/support/gridfs_tests/delete.yml
|