From 23d8ebf1298e7da3a51630e59b1b49659f99701a Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Mon, 22 Aug 2022 15:15:03 +0800 Subject: [PATCH] fix:error in grou by tag --- source/libs/executor/src/executil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/executor/src/executil.c b/source/libs/executor/src/executil.c index 66da50f2d5..39b2bcef4b 100644 --- a/source/libs/executor/src/executil.c +++ b/source/libs/executor/src/executil.c @@ -711,7 +711,7 @@ int32_t getColInfoResultForGroupby(void* metaHandle, SNodeList* group, STableLis pStart += varDataTLen(data); } else { memcpy(pStart, data, pValue->info.bytes); - pStart += pValue->info.type; + pStart += pValue->info.bytes; } } }