Skip to content

Commit 69d82b1

Browse files
committed
fix(schema-compiler): Handle member expressions in keyDimensions
If dimension is member expression, `d.dimension` would be object, and key would be '[object Object]' string, so separate dimensions would have same key, and all but one will be eliminated
1 parent ee826e1 commit 69d82b1

File tree

2 files changed

+63
-1
lines changed

2 files changed

+63
-1
lines changed

packages/cubejs-schema-compiler/src/adapter/BaseQuery.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -1855,7 +1855,14 @@ export class BaseQuery {
18551855
keyDimensions(primaryKeyDimensions) {
18561856
// The same dimension with different granularities maybe requested, so it's not enough to filter only by dimension
18571857
return R.uniqBy(
1858-
(d) => `${d.dimension}${d.granularity ?? ''}`, this.dimensionsForSelect()
1858+
(d) => {
1859+
if (d.isMemberExpression) {
1860+
return d.dimension.definition;
1861+
}
1862+
1863+
return `${d.dimension}${d.granularity ?? ''}`;
1864+
},
1865+
this.dimensionsForSelect()
18591866
.concat(primaryKeyDimensions)
18601867
);
18611868
}

packages/cubejs-schema-compiler/test/integration/postgres/sql-generation.test.ts

+55
Original file line numberDiff line numberDiff line change
@@ -2974,6 +2974,61 @@ describe('SQL Generation', () => {
29742974
}]
29752975
));
29762976

2977+
// Subquery aggregation for multiplied measure (and any `keysSelect` for that matter)
2978+
// should pick up all dimensions, even through member expressions
2979+
it('multiplied sum with dimension member expressions', async () => runQueryTest(
2980+
{
2981+
measures: [
2982+
'visitors_visitors_checkins_view.revenue',
2983+
'visitors_visitors_checkins_view.visitor_checkins_count',
2984+
],
2985+
dimensions: [
2986+
{
2987+
expression: new Function(
2988+
'visitors_visitors_checkins_view',
2989+
// eslint-disable-next-line no-new-func,no-template-curly-in-string
2990+
'return `LOWER(${visitors_visitors_checkins_view.source})`'
2991+
),
2992+
expressionName: 'lower_source',
2993+
// eslint-disable-next-line no-template-curly-in-string
2994+
definition: 'LOWER(${visitors_visitors_checkins_view.source})',
2995+
cubeName: 'visitors_visitors_checkins_view',
2996+
},
2997+
{
2998+
expression: new Function(
2999+
'visitors_visitors_checkins_view',
3000+
// eslint-disable-next-line no-new-func,no-template-curly-in-string
3001+
'return `UPPER(${visitors_visitors_checkins_view.source})`'
3002+
),
3003+
expressionName: 'upper_source',
3004+
// eslint-disable-next-line no-template-curly-in-string
3005+
definition: 'UPPER(${visitors_visitors_checkins_view.source})',
3006+
cubeName: 'visitors_visitors_checkins_view',
3007+
},
3008+
],
3009+
},
3010+
[
3011+
{
3012+
lower_source: null,
3013+
upper_source: null,
3014+
visitors_visitors_checkins_view__revenue: '1400',
3015+
visitors_visitors_checkins_view__visitor_checkins_count: '0',
3016+
},
3017+
{
3018+
lower_source: 'google',
3019+
upper_source: 'GOOGLE',
3020+
visitors_visitors_checkins_view__revenue: '300',
3021+
visitors_visitors_checkins_view__visitor_checkins_count: '1',
3022+
},
3023+
{
3024+
lower_source: 'some',
3025+
upper_source: 'SOME',
3026+
visitors_visitors_checkins_view__revenue: '300',
3027+
visitors_visitors_checkins_view__visitor_checkins_count: '5',
3028+
},
3029+
]
3030+
));
3031+
29773032
// TODO not implemented
29783033
// it('multi stage bucketing', async () => runQueryTest(
29793034
// {

0 commit comments

Comments
 (0)