Skip to content

Commit

Permalink
Correct stage name for filter function validation (#2387)
Browse files Browse the repository at this point in the history
  • Loading branch information
apmoriarty committed May 13, 2024
1 parent 15f08a3 commit 93184c2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1298,7 +1298,7 @@ protected ASTJexlScript timedApplyQueryModel(QueryStopwatch timers, final ASTJex

protected ASTJexlScript timedValidateFilterFunctions(QueryStopwatch timers, ASTJexlScript queryTree, Set<String> indexOnlyFields)
throws DatawaveQueryException {
return visitorManager.timedVisit(timers, "Rewrite Null Functions",
return visitorManager.timedVisit(timers, "Validate Filter Functions",
() -> (ASTJexlScript) ValidateFilterFunctionVisitor.validate(queryTree, indexOnlyFields));
}

Expand Down

0 comments on commit 93184c2

Please sign in to comment.