fix: fix compilation warning

This commit is contained in:
slzhou 2023-05-24 16:45:06 +08:00
parent d7b1613d85
commit 768372fc7b
1 changed files with 1 additions and 1 deletions

View File

@ -3765,7 +3765,7 @@ bool filterRangeExecute(SFilterInfo *info, SColumnDataAgg **pDataStatis, int32_t
SColumnDataAgg *pAgg = pDataStatis[j]; SColumnDataAgg *pAgg = pDataStatis[j];
SArray *points = taosArrayInit(2, sizeof(SFltSclPoint)); SArray *points = taosArrayInit(2, sizeof(SFltSclPoint));
fltSclBuildRangeFromBlockSma(colRange, pAgg, numOfRows, points); fltSclBuildRangeFromBlockSma(colRange, pAgg, numOfRows, points);
qDebug("column data agg: nulls %d, rows %d, max %" PRId64 " min " PRId64, pAgg->numOfNull, numOfRows, pAgg->max, qDebug("column data agg: nulls %d, rows %d, max %" PRId64 " min %" PRId64, pAgg->numOfNull, numOfRows, pAgg->max,
pAgg->min); pAgg->min);
SArray *merged = taosArrayInit(8, sizeof(SFltSclPoint)); SArray *merged = taosArrayInit(8, sizeof(SFltSclPoint));