We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ac484a commit 1ff6db0Copy full SHA for 1ff6db0
1 file changed
testsuites/benchmark/src/test/java/org/eclipse/rdf4j/benchmark/plan/QueryPlanSnapshotCliTest.java
@@ -411,6 +411,9 @@ void compareExistingInteractiveModeCanBrowseAndViewRun() throws Exception {
411
412
String printed = outputBuffer.toString(StandardCharsets.UTF_8);
413
assertTrue(printed.contains("Run details:"), printed);
414
+ assertTrue(printed.contains("Original query:"), printed);
415
+ assertTrue(printed.contains("=== Unoptimized Explanation ==="), printed);
416
+ assertTrue(printed.contains("Plan text"), printed);
417
assertFalse(printed.contains("[1] [0]"), printed);
418
}
419
0 commit comments