From 3e80cead0bb04560f7594ad1b1c210632c641fbf Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Wed, 20 Apr 2022 15:21:51 +0800 Subject: [PATCH] fix:fix an link error. --- source/libs/function/src/taggfunction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/function/src/taggfunction.c b/source/libs/function/src/taggfunction.c index 757a3b6107..c990df943a 100644 --- a/source/libs/function/src/taggfunction.c +++ b/source/libs/function/src/taggfunction.c @@ -3608,7 +3608,7 @@ static void interp_function_impl(SqlFunctionCtx *pCtx) { if (isNull((char *)&pCtx->start.val, srcType) || isNull((char *)&pCtx->end.val, srcType)) { setNull(pCtx->pOutput, srcType, pCtx->inputBytes); } else { - taosGetLinearInterpolationVal(&point, pCtx->resDataInfo.type, &point1, &point2, TSDB_DATA_TYPE_DOUBLE); +// taosGetLinearInterpolationVal(&point, pCtx->resDataInfo.type, &point1, &point2, TSDB_DATA_TYPE_DOUBLE); } } else { setNull(pCtx->pOutput, srcType, pCtx->inputBytes); -- GitLab