From 77faed4a23a3bcc774328493579879b82e0f1d08 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Wed, 6 Jul 2022 20:29:52 +0800 Subject: [PATCH] fix json tag value --- source/libs/index/src/indexFilter.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/libs/index/src/indexFilter.c b/source/libs/index/src/indexFilter.c index cfafe5d506..7bed059dfd 100644 --- a/source/libs/index/src/indexFilter.c +++ b/source/libs/index/src/indexFilter.c @@ -517,6 +517,8 @@ static int32_t sifGetOperFn(int32_t funcId, sif_func_t *func, SIdxFltStatus *sta static int32_t sifExecOper(SOperatorNode *node, SIFCtx *ctx, SIFParam *output) { int32_t code = 0; if (sifValidOp(node->opType) < 0) { + code = TSDB_CODE_QRY_INVALID_INPUT; + ctx->code = code; output->status = SFLT_NOT_INDEX; return code; }