Skip to content

Commit

Permalink
OAK-11454 Explain query output: fix synchronousPropertyCondition
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmueller committed Feb 4, 2025
1 parent ae48fc1 commit fad34c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ protected static void addSyncIndexPlan(IndexPlan plan, StringBuilder sb) {
PlanResult pr = getPlanResult(plan);
if (pr.hasPropertyIndexResult()) {
FulltextIndexPlanner.PropertyIndexResult pres = pr.getPropertyIndexResult();
sb.append(" synchronousPropertyCondition: ").append(pres.propertyName);
sb.append(" propertyCondition: ").append(pres.propertyName);
if (!pres.propertyName.equals(pres.pr.propertyName)) {
sb.append("[").append(pres.pr.propertyName).append("]");
}
Expand Down

0 comments on commit fad34c4

Please sign in to comment.