fix(stream): fix syntax error.
This commit is contained in:
parent
df0f71a31c
commit
6b94573231
|
@ -600,8 +600,8 @@ static void doRecordThroughput(STaskExecStatisInfo* pInfo, int64_t totalBlocks,
|
||||||
double st, const char* id) {
|
double st, const char* id) {
|
||||||
double el = (taosGetTimestampMs() - st) / 1000.0;
|
double el = (taosGetTimestampMs() - st) / 1000.0;
|
||||||
|
|
||||||
stDebug("s-task:%s batch of input blocks exec end, elapsed time:%.2fs, result size:%.2fMiB, numOfBlocks:%d", id, el,
|
stDebug("s-task:%s batch of input blocks exec end, elapsed time:%.2fs, result size:%.2fMiB, numOfBlocks:%" PRId64, id,
|
||||||
SIZE_IN_MiB(totalSize), totalBlocks);
|
el, SIZE_IN_MiB(totalSize), totalBlocks);
|
||||||
|
|
||||||
pInfo->outputDataBlocks += totalBlocks;
|
pInfo->outputDataBlocks += totalBlocks;
|
||||||
pInfo->outputDataSize += totalSize;
|
pInfo->outputDataSize += totalSize;
|
||||||
|
|
Loading…
Reference in New Issue