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 c14a5a9 commit 0068b92Copy full SHA for 0068b92
src/test/spec/unified_runner/mod.rs
@@ -42,6 +42,9 @@ const SKIPPED_OPERATIONS: &[&str] = &[
42
"listIndexNames",
43
"listIndexes",
44
"mapReduce",
45
+ "startTransaction",
46
+ "abortTransaction",
47
+ "commitTransaction",
48
"watch",
49
];
50
src/test/spec/unified_runner/operation.rs
@@ -318,6 +318,7 @@ impl TestOperation for InsertMany {
318
#[serde(rename_all = "camelCase", deny_unknown_fields)]
319
pub(super) struct InsertOne {
320
document: Document,
321
+ session: Option<String>,
322
#[serde(flatten)]
323
options: Option<InsertOneOptions>,
324
}
0 commit comments