未验证 提交 333934e7 编写于 作者: S Shengliang Guan 提交者: GitHub

Merge pull request #3080 from taosdata/bugfix/td-1150

fix td-1150
......@@ -136,7 +136,11 @@ static void tscProcessStreamTimer(void *handle, void *tmrId) {
}
pQueryInfo->window.ekey = etime;
if (pQueryInfo->window.skey >= pQueryInfo->window.ekey) {
tscSetRetryTimer(pStream, pSql, pStream->slidingTime);
int64_t timer = pStream->slidingTime;
if (pStream->precision == TSDB_TIME_PRECISION_MICRO) {
timer /= 1000l;
}
tscSetRetryTimer(pStream, pSql, timer);
return;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册