Skip to content

Commit

Permalink
proper var naming
Browse files Browse the repository at this point in the history
  • Loading branch information
patricebender committed Feb 26, 2025
1 parent b61556f commit 457235d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db-service/lib/cqn4sql.js
Original file line number Diff line number Diff line change
Expand Up @@ -877,8 +877,8 @@ function cqn4sql(originalQuery, model) {

// to be attached to dummy query
const elements = {}
const wildcardIndex = column.expand.includes('*')
if (wildcardIndex) {
const containsWildcard = column.expand.includes('*')
if (containsWildcard) {
// expand with wildcard vanishes as expand is part of the group by (OData $apply + $expand)
return null
}
Expand Down

0 comments on commit 457235d

Please sign in to comment.