Skip to content

Commit 7ecde98

Browse files
committed
GH-5691 CLI for running and storing query explanations
1 parent 34e0c52 commit 7ecde98

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

core/common/iterator/src/main/java/org/eclipse/rdf4j/common/iteration/LookAheadIteration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public final boolean hasNext() {
5454
return false;
5555
}
5656

57-
if(Thread.currentThread().isInterrupted()) {
57+
if (Thread.currentThread().isInterrupted()) {
5858
log.debug("Thread {} is interrupted, closing iteration", Thread.currentThread().getName());
5959
close();
6060
return false;

testsuites/benchmark/src/main/java/org/eclipse/rdf4j/benchmark/plan/QueryPlanSnapshotCli.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ private QueryExecutionVerification verifyRepeatedExecution(SailRepositoryConnect
10231023
.evaluate()
10241024
.stream()
10251025
.count();
1026-
}catch (QueryInterruptedException interrupted) {
1026+
} catch (QueryInterruptedException interrupted) {
10271027
softLimitReached = true;
10281028
break;
10291029
}

0 commit comments

Comments
 (0)