Skip to content

Commit

Permalink
Update feature audit so QoQ is no longer missing
Browse files Browse the repository at this point in the history
  • Loading branch information
bdw429s committed Feb 28, 2025
1 parent e36e6ea commit 809054f
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1019,8 +1019,7 @@ public void visit( BoxFunctionInvocation node ) {
boolean missing = !functionService.hasGlobalFunction( name );
if ( isQoQ( node ) ) {
name = "queryExecute (QoQ)";
// hard coded for now since we don't support
missing = true;
missing = false;
}
featuresUsed.add(
new FeatureUsed( name, FeatureType.BIF, module, missing, node.getPosition() )
Expand Down Expand Up @@ -1049,7 +1048,7 @@ public void visit( BoxComponent node ) {
if ( isQoQ( node ) ) {
name = "query (QoQ)";
// hard coded for now since we don't support
missing = true;
missing = false;
}
featuresUsed.add(
new FeatureUsed( name, FeatureType.COMPONENT, module, missing, node.getPosition() )
Expand Down

0 comments on commit 809054f

Please # to comment.