We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d95a2fa commit 124bb38Copy full SHA for 124bb38
packages/cubejs-schema-compiler/src/adapter/BaseQuery.js
@@ -261,6 +261,8 @@ export class BaseQuery {
261
}).filter(R.identity).map(this.newTimeDimension.bind(this));
262
this.allFilters = this.timeDimensions.concat(this.segments).concat(this.filters);
263
264
+ this.collectAllMemberNames(); // Ensure member names are computed so that they are not lazily added during join computation
265
+
266
this.join = this.joinGraph.buildJoin(this.allJoinHints);
267
this.cubeAliasPrefix = this.options.cubeAliasPrefix;
268
this.preAggregationsSchemaOption = this.options.preAggregationsSchema ?? DEFAULT_PREAGGREGATIONS_SCHEMA;
0 commit comments