fix(charts): apply resample before rolling window in post-processing pipeline (#37987)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Varun Chawla
2026-03-04 11:25:42 -08:00
committed by GitHub
parent 27d54f8421
commit 796c206ee7
6 changed files with 12 additions and 10 deletions

View File

@@ -75,9 +75,9 @@ export default function buildQuery(formData: QueryFormData) {
time_offsets: isTimeComparison(fd, queryObject) ? fd.time_compare : [],
post_processing: [
pivotOperatorInRuntime,
resampleOperator(fd, queryObject),
rollingWindowOperator(fd, queryObject),
timeCompareOperator(fd, queryObject),
resampleOperator(fd, queryObject),
renameOperator(fd, queryObject),
flattenOperator(fd, queryObject),
],