fix:fix some compiling errors.
This commit is contained in:
parent
343988beeb
commit
f933aa01cb
|
@ -19,14 +19,14 @@
|
||||||
#include "thash.h"
|
#include "thash.h"
|
||||||
#include "ttypes.h"
|
#include "ttypes.h"
|
||||||
|
|
||||||
|
//#include "tfill.h"
|
||||||
#include "function.h"
|
#include "function.h"
|
||||||
#include "taggfunction.h"
|
#include "taggfunction.h"
|
||||||
#include "tfill.h"
|
|
||||||
#include "thistogram.h"
|
|
||||||
#include "ttszip.h"
|
|
||||||
#include "tpercentile.h"
|
|
||||||
#include "tbuffer.h"
|
#include "tbuffer.h"
|
||||||
#include "tcompression.h"
|
#include "tcompression.h"
|
||||||
|
#include "thistogram.h"
|
||||||
|
#include "tpercentile.h"
|
||||||
|
#include "ttszip.h"
|
||||||
//#include "queryLog.h"
|
//#include "queryLog.h"
|
||||||
#include "tdatablock.h"
|
#include "tdatablock.h"
|
||||||
#include "tudf.h"
|
#include "tudf.h"
|
||||||
|
@ -3681,7 +3681,7 @@ static void interp_function_impl(SqlFunctionCtx *pCtx) {
|
||||||
if (isNull(start, srcType) || isNull(end, srcType)) {
|
if (isNull(start, srcType) || isNull(end, srcType)) {
|
||||||
setNull(pCtx->pOutput, srcType, pCtx->inputBytes);
|
setNull(pCtx->pOutput, srcType, pCtx->inputBytes);
|
||||||
} else {
|
} else {
|
||||||
taosGetLinearInterpolationVal(&point, pCtx->resDataInfo.type, &point1, &point2, srcType);
|
// taosGetLinearInterpolationVal(&point, pCtx->resDataInfo.type, &point1, &point2, srcType);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
setNull(pCtx->pOutput, srcType, pCtx->inputBytes);
|
setNull(pCtx->pOutput, srcType, pCtx->inputBytes);
|
||||||
|
|
Loading…
Reference in New Issue