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 b908a6a commit b0a21a6Copy full SHA for b0a21a6
1 file changed
google-cloud-firestore/src/test/java/com/google/cloud/firestore/it/ITPipelineTest.java
@@ -3883,7 +3883,11 @@ public void testPipelineInTransactionsWithOptions() throws Exception {
3883
firestore
3884
.runTransaction(
3885
transaction -> {
3886
- PipelineExecuteOptions options = new PipelineExecuteOptions().with("foo", "bar");
+ PipelineExecuteOptions options =
3887
+ new PipelineExecuteOptions()
3888
+ .withExplainOptions(
3889
+ new ExplainOptions()
3890
+ .withExecutionMode(ExplainOptions.ExecutionMode.ANALYZE));
3891
List<PipelineResult> results =
3892
transaction.execute(pipeline, options).get().getResults();
3893
assertThat(results).hasSize(1);
0 commit comments