From 5a343bd01c0565a651f7345aaf69da35de571e03 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Wed, 4 Jan 2023 11:48:54 +0800 Subject: [PATCH] fix(query): increase the index when handling the var data type. --- source/libs/executor/src/executorimpl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/libs/executor/src/executorimpl.c b/source/libs/executor/src/executorimpl.c index 2e8611c7dd..ecd6f382f4 100644 --- a/source/libs/executor/src/executorimpl.c +++ b/source/libs/executor/src/executorimpl.c @@ -875,6 +875,7 @@ void extractQualifiedTupleByFilterResult(SSDataBlock* pBlock, const SColumnInfoD while(j < totalRows) { if (pIndicator[j] == 0) { + j += 1; continue; } -- GitLab