From cfc83751bb76306086dfad8c89eec28ff78e04a9 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Thu, 27 Jan 2022 18:38:56 +0800 Subject: [PATCH] [td-11818] fix compiler error. --- source/client/src/clientImpl.c | 1 - source/libs/executor/src/executorimpl.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/source/client/src/clientImpl.c b/source/client/src/clientImpl.c index 63da5862d3..609ffb57ae 100644 --- a/source/client/src/clientImpl.c +++ b/source/client/src/clientImpl.c @@ -1,5 +1,4 @@ -#include "../../libs/scheduler/inc/schedulerInt.h" #include "clientInt.h" #include "clientLog.h" #include "parser.h" diff --git a/source/libs/executor/src/executorimpl.c b/source/libs/executor/src/executorimpl.c index 572da6a32c..5797837772 100644 --- a/source/libs/executor/src/executorimpl.c +++ b/source/libs/executor/src/executorimpl.c @@ -7831,7 +7831,7 @@ static tsdbReadHandleT doCreateDataReadHandle(STableScanPhyNode* pTableScanNode, STableGroupInfo groupInfo = {0}; uint64_t uid = pTableScanNode->scan.uid; - int32_t code = doCreateTableGroup(readerHandle, pTableScanNode->scan.tableType, uid, queryId, taskId); + int32_t code = doCreateTableGroup(readerHandle, pTableScanNode->scan.tableType, uid, &groupInfo, queryId, taskId); if (code != TSDB_CODE_SUCCESS) { goto _error; }