Skip to content

Commit 4597f7c

Browse files
committed
OAK-11454 Explain query output: fix synchronousPropertyCondition
1 parent fad34c4 commit 4597f7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

oak-lucene/src/test/java/org/apache/jackrabbit/oak/plugins/index/lucene/property/SynchronousPropertyIndexTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,9 @@ public void queryPlan() throws Exception{
331331
runAsyncIndex();
332332

333333
assertThat(explain("select * from [nt:base] where [jcr:content/foo] = 'bar'"),
334-
containsString("synchronousPropertyCondition: foo[jcr:content/foo] bar"));
334+
containsString("propertyCondition: foo[jcr:content/foo] bar"));
335335
assertThat(explain("select * from [nt:base] where [foo] = 'bar'"),
336-
containsString("synchronousPropertyCondition: foo bar"));
336+
containsString("propertyCondition: foo bar"));
337337
}
338338

339339
@Test

0 commit comments

Comments
 (0)