fix: set precision of interval with value from table scan node

This commit is contained in:
kailixu 2023-08-15 19:59:13 +08:00
parent edd4a78772
commit 3b69736b29
1 changed files with 1 additions and 0 deletions

View File

@ -1677,6 +1677,7 @@ SInterval extractIntervalInfo(const STableScanPhysiNode* pTableScanNode) {
.intervalUnit = pTableScanNode->intervalUnit,
.slidingUnit = pTableScanNode->slidingUnit,
.offset = pTableScanNode->offset,
.precision = pTableScanNode->scan.node.pOutputDataBlockDesc->precision,
};
return interval;