Skip to content

Commit

Permalink
fix: Fix missing match function name
Browse files Browse the repository at this point in the history
  • Loading branch information
travisstebbins committed Feb 12, 2025
1 parent 7a9c658 commit 063accf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,10 @@ export class QueryBuilder_PureProtocolProcessorPlugin extends PureProtocolProces
processingContext,
);
} else if (
matchFunctionName(
functionName,
matchFunctionName(functionName, [
QUERY_BUILDER_SUPPORTED_FUNCTIONS.TDS_GROUP_BY,
)
QUERY_BUILDER_SUPPORTED_FUNCTIONS.RELATION_GROUP_BY,
])
) {
return V1_buildGroupByFunctionExpression(
functionName,
Expand Down

0 comments on commit 063accf

Please sign in to comment.