Skip to content

Commit

Permalink
fix BaseDbRunner
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon committed Feb 28, 2025
1 parent fc5d7eb commit 37375d3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,12 @@ export class BaseDbRunner {
if (desc.partitionGranularity) {
desc.dateRange = [
PreAggregationPartitionRangeLoader.extractDate(
await this.testQueries([desc.preAggregationStartEndQueries[0]])
await this.testQueries([desc.preAggregationStartEndQueries[0]]),
desc.timezone,
),
PreAggregationPartitionRangeLoader.extractDate(
await this.testQueries([desc.preAggregationStartEndQueries[1]])
await this.testQueries([desc.preAggregationStartEndQueries[1]]),
desc.timezone,
)
];
// console.log(desc);
Expand Down

0 comments on commit 37375d3

Please sign in to comment.