From 9076b8640083a4b5e33f45339daed132c2420e70 Mon Sep 17 00:00:00 2001 From: slzhou Date: Thu, 9 Mar 2023 21:20:01 +0800 Subject: [PATCH] fix: pass CI test --- source/libs/function/test/udf1.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/libs/function/test/udf1.c b/source/libs/function/test/udf1.c index 1977c09e0f..7798a0bf3d 100644 --- a/source/libs/function/test/udf1.c +++ b/source/libs/function/test/udf1.c @@ -35,5 +35,6 @@ DLL_EXPORT int32_t udf1(SUdfDataBlock *block, SUdfColumn *resultCol) { #ifdef WINDOWS Sleep(1); #endif + resultData->numOfRows = block->numOfRows; return 0; -} \ No newline at end of file +}