From 3e9439abd3eabaf50313190f66156a64eb762e53 Mon Sep 17 00:00:00 2001 From: Cary Xu Date: Fri, 10 Dec 2021 14:18:52 +0800 Subject: [PATCH] update --- src/client/src/tscParseInsert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/tscParseInsert.c b/src/client/src/tscParseInsert.c index 66918d1917..29ff6165b2 100644 --- a/src/client/src/tscParseInsert.c +++ b/src/client/src/tscParseInsert.c @@ -569,9 +569,9 @@ int tsParseOneRow(char **str, STableDataBlocks *pDataBlocks, int16_t timePrec, i // 4. perform the convert if (isNeedConvertRow) { // put converted row to next location to minimize the memcpy + pDataBlocks->ordered = false; ++(*convertOffset); convertSMemRow(row + (*convertOffset) * rowSize, row, pDataBlocks); - pDataBlocks->ordered = false; } else { *convertOffset = 0; } -- GitLab