Skip to content

Commit cf2e0a2

Browse files
fix: expand + groupby may return null, dont attach .element (#1042)
this resolves an `Uncaught Object.defineProperty called on non-object` dump this is a workaround for an issue reported in cap/issues#17907 --> we need to put all this logic in the OData protocol adapter, this coding should not be necessary for the DB. This initiative has already started in #990
1 parent 39fbadf commit cf2e0a2

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

db-service/lib/cqn4sql.js

+11-5
Original file line numberDiff line numberDiff line change
@@ -879,8 +879,8 @@ function cqn4sql(originalQuery, model) {
879879

880880
// to be attached to dummy query
881881
const elements = {}
882-
const wildcardIndex = column.expand.findIndex(e => e === '*')
883-
if (wildcardIndex !== -1) {
882+
const containsWildcard = column.expand.includes('*')
883+
if (containsWildcard) {
884884
// expand with wildcard vanishes as expand is part of the group by (OData $apply + $expand)
885885
return null
886886
}
@@ -890,8 +890,10 @@ function cqn4sql(originalQuery, model) {
890890

891891
if (expand.expand) {
892892
const nested = _subqueryForGroupBy(expand, fullRef, expand.as || expand.ref.map(idOnly).join('_'))
893-
setElementOnColumns(nested, expand.element)
894-
elements[expand.as || expand.ref.map(idOnly).join('_')] = nested
893+
if(nested) {
894+
setElementOnColumns(nested, expand.element)
895+
elements[expand.as || expand.ref.map(idOnly).join('_')] = nested
896+
}
895897
return nested
896898
}
897899

@@ -912,7 +914,11 @@ function cqn4sql(originalQuery, model) {
912914
elements[c.as || c.ref.at(-1)] = c.element
913915
})
914916
return res
915-
})
917+
}).filter(c => c)
918+
919+
if (expandedColumns.length === 0) {
920+
return null
921+
}
916922

917923
const SELECT = {
918924
from: null,

db-service/test/cqn4sql/expand.test.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,8 @@ describe('Expands with aggregations are special', () => {
11561156

11571157
it('wildcard expand vanishes for aggregations', () => {
11581158
const q = CQL`SELECT from bookshop.TestPublisher {
1159-
ID
1159+
ID,
1160+
texts { publisher {*} }
11601161
} group by ID, publisher.structuredKey_ID, publisher.title`
11611162

11621163
const qx = CQL`SELECT from bookshop.TestPublisher as TestPublisher

0 commit comments

Comments
 (0)