2022-03-09 02:22:53 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can use, redistribute, and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3
|
|
|
|
|
* or later ("AGPL"), as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef TDENGINE_BUILTINSIMPL_H
|
|
|
|
|
#define TDENGINE_BUILTINSIMPL_H
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "function.h"
|
2022-04-12 05:10:47 +00:00
|
|
|
#include "functionMgt.h"
|
2022-03-09 02:22:53 +00:00
|
|
|
|
|
|
|
|
bool functionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
2022-04-22 14:43:07 +00:00
|
|
|
int32_t functionFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
2022-05-10 10:21:54 +00:00
|
|
|
int32_t dummyProcess(SqlFunctionCtx* UNUSED_PARAM(pCtx));
|
2022-04-28 02:30:00 +00:00
|
|
|
int32_t functionFinalizeWithResultBuf(SqlFunctionCtx* pCtx, SSDataBlock* pBlock, char* finalResult);
|
2022-03-09 02:22:53 +00:00
|
|
|
|
2022-04-12 05:10:47 +00:00
|
|
|
EFuncDataRequired countDataRequired(SFunctionNode* pFunc, STimeWindow* pTimeWindow);
|
2022-03-27 14:43:07 +00:00
|
|
|
bool getCountFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
2022-04-04 06:54:39 +00:00
|
|
|
int32_t countFunction(SqlFunctionCtx *pCtx);
|
2022-05-05 11:50:11 +00:00
|
|
|
int32_t countInvertFunction(SqlFunctionCtx *pCtx);
|
2022-03-09 02:22:53 +00:00
|
|
|
|
2022-04-16 07:15:28 +00:00
|
|
|
EFuncDataRequired statisDataRequired(SFunctionNode* pFunc, STimeWindow* pTimeWindow);
|
2022-03-27 14:43:07 +00:00
|
|
|
bool getSumFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
2022-04-04 06:54:39 +00:00
|
|
|
int32_t sumFunction(SqlFunctionCtx *pCtx);
|
2022-05-05 11:50:11 +00:00
|
|
|
int32_t sumInvertFunction(SqlFunctionCtx *pCtx);
|
2022-03-09 02:22:53 +00:00
|
|
|
|
2022-05-09 08:06:15 +00:00
|
|
|
bool minmaxFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
2022-03-27 14:43:07 +00:00
|
|
|
bool getMinmaxFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
2022-04-04 06:54:39 +00:00
|
|
|
int32_t minFunction(SqlFunctionCtx* pCtx);
|
|
|
|
|
int32_t maxFunction(SqlFunctionCtx *pCtx);
|
2022-05-09 08:06:15 +00:00
|
|
|
int32_t minmaxFunctionFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
2022-03-10 03:12:44 +00:00
|
|
|
|
2022-04-22 08:56:04 +00:00
|
|
|
bool getAvgFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool avgFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
|
|
|
|
int32_t avgFunction(SqlFunctionCtx* pCtx);
|
2022-04-25 01:44:39 +00:00
|
|
|
int32_t avgFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
2022-05-05 11:50:11 +00:00
|
|
|
int32_t avgInvertFunction(SqlFunctionCtx* pCtx);
|
2022-04-22 08:56:04 +00:00
|
|
|
|
2022-03-27 14:43:07 +00:00
|
|
|
bool getStddevFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
2022-04-02 08:59:02 +00:00
|
|
|
bool stddevFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
2022-04-04 06:54:39 +00:00
|
|
|
int32_t stddevFunction(SqlFunctionCtx* pCtx);
|
2022-04-22 14:43:07 +00:00
|
|
|
int32_t stddevFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
2022-05-05 11:50:11 +00:00
|
|
|
int32_t stddevInvertFunction(SqlFunctionCtx* pCtx);
|
2022-03-21 07:25:13 +00:00
|
|
|
|
2022-05-09 11:37:16 +00:00
|
|
|
bool getLeastSQRFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool leastSQRFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
|
|
|
|
int32_t leastSQRFunction(SqlFunctionCtx* pCtx);
|
|
|
|
|
int32_t leastSQRFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
|
|
|
|
int32_t leastSQRInvertFunction(SqlFunctionCtx* pCtx);
|
|
|
|
|
|
2022-04-02 08:59:02 +00:00
|
|
|
bool getPercentileFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool percentileFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
2022-04-04 06:54:39 +00:00
|
|
|
int32_t percentileFunction(SqlFunctionCtx *pCtx);
|
2022-04-22 14:43:07 +00:00
|
|
|
int32_t percentileFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
2022-04-02 08:59:02 +00:00
|
|
|
|
2022-04-04 06:54:39 +00:00
|
|
|
bool getDiffFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool diffFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResInfo);
|
|
|
|
|
int32_t diffFunction(SqlFunctionCtx *pCtx);
|
2022-03-11 06:11:34 +00:00
|
|
|
|
2022-04-04 06:54:39 +00:00
|
|
|
bool getFirstLastFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
int32_t firstFunction(SqlFunctionCtx *pCtx);
|
|
|
|
|
int32_t lastFunction(SqlFunctionCtx *pCtx);
|
2022-05-18 10:51:40 +00:00
|
|
|
int32_t lastFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
2022-03-22 10:17:04 +00:00
|
|
|
|
2022-04-21 09:44:08 +00:00
|
|
|
bool getTopBotFuncEnv(SFunctionNode* UNUSED_PARAM(pFunc), SFuncExecEnv* pEnv);
|
|
|
|
|
int32_t topFunction(SqlFunctionCtx *pCtx);
|
2022-05-09 09:48:23 +00:00
|
|
|
int32_t bottomFunction(SqlFunctionCtx *pCtx);
|
2022-04-22 14:43:07 +00:00
|
|
|
int32_t topBotFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
2022-04-21 09:44:08 +00:00
|
|
|
|
2022-04-28 13:27:46 +00:00
|
|
|
bool getSpreadFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool spreadFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
|
|
|
|
int32_t spreadFunction(SqlFunctionCtx* pCtx);
|
|
|
|
|
int32_t spreadFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
|
|
|
|
|
2022-05-17 13:22:21 +00:00
|
|
|
bool getElapsedFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool elapsedFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
|
|
|
|
int32_t elapsedFunction(SqlFunctionCtx* pCtx);
|
|
|
|
|
int32_t elapsedFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
|
|
|
|
|
2022-05-06 07:51:18 +00:00
|
|
|
bool getHistogramFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool histogramFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
|
|
|
|
int32_t histogramFunction(SqlFunctionCtx* pCtx);
|
|
|
|
|
int32_t histogramFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
|
|
|
|
|
2022-05-17 02:34:59 +00:00
|
|
|
bool getHLLFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
int32_t hllFunction(SqlFunctionCtx* pCtx);
|
|
|
|
|
int32_t hllFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
|
|
|
|
|
2022-05-10 12:32:03 +00:00
|
|
|
bool getStateFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool stateFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
|
|
|
|
int32_t stateCountFunction(SqlFunctionCtx* pCtx);
|
2022-05-11 07:42:31 +00:00
|
|
|
int32_t stateDurationFunction(SqlFunctionCtx* pCtx);
|
2022-05-10 12:32:03 +00:00
|
|
|
|
2022-05-12 06:38:56 +00:00
|
|
|
bool getCsumFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
int32_t csumFunction(SqlFunctionCtx* pCtx);
|
|
|
|
|
|
2022-05-12 12:40:17 +00:00
|
|
|
bool getMavgFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
2022-05-12 12:40:17 +00:00
|
|
|
bool mavgFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
2022-05-12 12:40:17 +00:00
|
|
|
int32_t mavgFunction(SqlFunctionCtx* pCtx);
|
|
|
|
|
|
2022-05-13 13:13:35 +00:00
|
|
|
bool getSampleFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool sampleFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
|
|
|
|
int32_t sampleFunction(SqlFunctionCtx* pCtx);
|
2022-05-16 03:03:15 +00:00
|
|
|
//int32_t sampleFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
|
|
|
|
|
|
|
|
|
bool getTailFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool tailFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
|
|
|
|
int32_t tailFunction(SqlFunctionCtx* pCtx);
|
2022-05-20 05:59:20 +00:00
|
|
|
//int32_t tailFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
|
|
|
|
|
|
|
|
|
bool getUniqueFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
bool uniqueFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
|
|
|
|
|
int32_t uniqueFunction(SqlFunctionCtx *pCtx);
|
|
|
|
|
//int32_t uniqueFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
|
|
|
|
|
|
2022-05-13 13:13:35 +00:00
|
|
|
|
2022-05-09 08:06:15 +00:00
|
|
|
bool getSelectivityFuncEnv(SFunctionNode* pFunc, SFuncExecEnv* pEnv);
|
|
|
|
|
|
2022-03-09 02:22:53 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif // TDENGINE_BUILTINSIMPL_H
|