From 2680ebff380b7ea2fcd81de091f18f21f85f1562 Mon Sep 17 00:00:00 2001 From: shenglian zhou Date: Wed, 28 Dec 2022 14:31:12 +0800 Subject: [PATCH] fix: set row for data block --- source/libs/function/src/tudf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/libs/function/src/tudf.c b/source/libs/function/src/tudf.c index e8206399b2..cbfc0e360b 100644 --- a/source/libs/function/src/tudf.c +++ b/source/libs/function/src/tudf.c @@ -875,6 +875,8 @@ int32_t convertScalarParamToDataBlock(SScalarParam *input, int32_t numOfCols, SS } } + output->info.rows = numOfRows; + return 0; } -- GitLab