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 fc5d7eb commit 37375d3Copy full SHA for 37375d3
packages/cubejs-schema-compiler/test/integration/utils/BaseDbRunner.ts
@@ -178,10 +178,12 @@ export class BaseDbRunner {
178
if (desc.partitionGranularity) {
179
desc.dateRange = [
180
PreAggregationPartitionRangeLoader.extractDate(
181
- await this.testQueries([desc.preAggregationStartEndQueries[0]])
+ await this.testQueries([desc.preAggregationStartEndQueries[0]]),
182
+ desc.timezone,
183
),
184
- await this.testQueries([desc.preAggregationStartEndQueries[1]])
185
+ await this.testQueries([desc.preAggregationStartEndQueries[1]]),
186
187
)
188
];
189
// console.log(desc);
0 commit comments