We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4236893 commit 9131d79Copy full SHA for 9131d79
packages/cubejs-schema-compiler/src/adapter/PreAggregations.ts
@@ -112,10 +112,9 @@ export class PreAggregations {
112
113
return R.pipe(
114
R.unnest as (list: any[][]) => any[],
115
+ R.filter((agg: FullPreAggregationDescription) => !(disableExternalPreAggregations && agg.external)),
116
R.uniqBy(desc => desc.tableName)
- )(
117
- preAggregations
118
- ).filter(agg => !(disableExternalPreAggregations && agg.external));
+ )(preAggregations);
119
}
120
121
private preAggregationsDescriptionLocal(): FullPreAggregationDescription[] {
0 commit comments