executorimpl.c 171.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * 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/>.
 */
15

H
Haojun Liao 已提交
16 17
#include "filter.h"
#include "function.h"
18 19
#include "functionMgt.h"
#include "os.h"
H
Haojun Liao 已提交
20
#include "querynodes.h"
21
#include "tfill.h"
dengyihao's avatar
dengyihao 已提交
22
#include "tname.h"
X
Xiaoyu Wang 已提交
23
#include "tref.h"
24

H
Haojun Liao 已提交
25
#include "tdatablock.h"
26
#include "tglobal.h"
H
Haojun Liao 已提交
27
#include "tmsg.h"
H
Haojun Liao 已提交
28
#include "tsort.h"
29
#include "ttime.h"
H
Haojun Liao 已提交
30

31
#include "executorimpl.h"
dengyihao's avatar
dengyihao 已提交
32
#include "index.h"
33
#include "query.h"
34 35
#include "tcompare.h"
#include "tcompression.h"
H
Haojun Liao 已提交
36
#include "thash.h"
37
#include "ttypes.h"
dengyihao's avatar
dengyihao 已提交
38
#include "vnode.h"
39

H
Haojun Liao 已提交
40
#define IS_MAIN_SCAN(runtime)          ((runtime)->scanFlag == MAIN_SCAN)
41 42 43 44 45 46
#define SET_REVERSE_SCAN_FLAG(runtime) ((runtime)->scanFlag = REVERSE_SCAN)

#define GET_FORWARD_DIRECTION_FACTOR(ord) (((ord) == TSDB_ORDER_ASC) ? QUERY_ASC_FORWARD_STEP : QUERY_DESC_FORWARD_STEP)

#if 0
static UNUSED_FUNC void *u_malloc (size_t __size) {
wafwerar's avatar
wafwerar 已提交
47
  uint32_t v = taosRand();
48 49 50 51

  if (v % 1000 <= 0) {
    return NULL;
  } else {
wafwerar's avatar
wafwerar 已提交
52
    return taosMemoryMalloc(__size);
53 54 55 56
  }
}

static UNUSED_FUNC void* u_calloc(size_t num, size_t __size) {
wafwerar's avatar
wafwerar 已提交
57
  uint32_t v = taosRand();
58 59 60
  if (v % 1000 <= 0) {
    return NULL;
  } else {
wafwerar's avatar
wafwerar 已提交
61
    return taosMemoryCalloc(num, __size);
62 63 64 65
  }
}

static UNUSED_FUNC void* u_realloc(void* p, size_t __size) {
wafwerar's avatar
wafwerar 已提交
66
  uint32_t v = taosRand();
67 68 69
  if (v % 5 <= 1) {
    return NULL;
  } else {
wafwerar's avatar
wafwerar 已提交
70
    return taosMemoryRealloc(p, __size);
71 72 73 74 75 76 77 78
  }
}

#define calloc  u_calloc
#define malloc  u_malloc
#define realloc u_realloc
#endif

X
Xiaoyu Wang 已提交
79
#define CLEAR_QUERY_STATUS(q, st)   ((q)->status &= (~(st)))
80 81
#define QUERY_IS_INTERVAL_QUERY(_q) ((_q)->interval.interval > 0)

L
Liu Jicong 已提交
82 83 84
int32_t getMaximumIdleDurationSec() { return tsShellActivityTimer * 2; }

static int32_t getExprFunctionId(SExprInfo* pExprInfo) {
85
  assert(pExprInfo != NULL && pExprInfo->pExpr != NULL && pExprInfo->pExpr->nodeType == TEXPR_UNARYEXPR_NODE);
86
  return 0;
87 88 89 90
}

static void doSetTagValueToResultBuf(char* output, const char* val, int16_t type, int16_t bytes);

91
static void setBlockStatisInfo(SqlFunctionCtx* pCtx, SExprInfo* pExpr, SSDataBlock* pSDataBlock);
92

X
Xiaoyu Wang 已提交
93
static void releaseQueryBuf(size_t numOfTables);
94 95 96 97 98

static void destroySFillOperatorInfo(void* param, int32_t numOfOutput);
static void destroyProjectOperatorInfo(void* param, int32_t numOfOutput);
static void destroyOrderOperatorInfo(void* param, int32_t numOfOutput);
static void destroyAggOperatorInfo(void* param, int32_t numOfOutput);
X
Xiaoyu Wang 已提交
99

H
Haojun Liao 已提交
100
static void destroyIntervalOperatorInfo(void* param, int32_t numOfOutput);
H
Haojun Liao 已提交
101 102
static void destroyExchangeOperatorInfo(void* param, int32_t numOfOutput);

103 104
static void destroyOperatorInfo(SOperatorInfo* pOperator);

105
void doSetOperatorCompleted(SOperatorInfo* pOperator) {
106
  pOperator->status = OP_EXEC_DONE;
107

108
  pOperator->cost.totalCost = (taosGetTimestampUs() - pOperator->pTaskInfo->cost.start * 1000) / 1000.0;
H
Haojun Liao 已提交
109
  if (pOperator->pTaskInfo != NULL) {
110
    setTaskStatus(pOperator->pTaskInfo, TASK_COMPLETED);
111 112
  }
}
113

H
Haojun Liao 已提交
114
int32_t operatorDummyOpenFn(SOperatorInfo* pOperator) {
115
  OPTR_SET_OPENED(pOperator);
116
  pOperator->cost.openCost = 0;
H
Haojun Liao 已提交
117
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
118 119
}

120
SOperatorFpSet createOperatorFpSet(__optr_open_fn_t openFn, __optr_fn_t nextFn, __optr_fn_t streamFn,
L
Liu Jicong 已提交
121
                                   __optr_fn_t cleanup, __optr_close_fn_t closeFn, __optr_encode_fn_t encode,
122
                                   __optr_decode_fn_t decode, __optr_explain_fn_t explain) {
123 124 125 126 127 128 129 130 131 132 133 134 135 136
  SOperatorFpSet fpSet = {
      ._openFn = openFn,
      .getNextFn = nextFn,
      .getStreamResFn = streamFn,
      .cleanupFn = cleanup,
      .closeFn = closeFn,
      .encodeResultRow = encode,
      .decodeResultRow = decode,
      .getExplainFn = explain,
  };

  return fpSet;
}

H
Haojun Liao 已提交
137
void operatorDummyCloseFn(void* param, int32_t numOfCols) {}
H
Haojun Liao 已提交
138

X
Xiaoyu Wang 已提交
139 140 141
static int32_t doCopyToSDataBlock(SExecTaskInfo* taskInfo, SSDataBlock* pBlock, SExprInfo* pExprInfo,
                                  SDiskbasedBuf* pBuf, SGroupResInfo* pGroupResInfo, const int32_t* rowCellOffset,
                                  SqlFunctionCtx* pCtx, int32_t numOfExprs);
H
Haojun Liao 已提交
142

143
static void initCtxOutputBuffer(SqlFunctionCtx* pCtx, int32_t size);
L
Liu Jicong 已提交
144 145
static void doSetTableGroupOutputBuf(SOperatorInfo* pOperator, SAggOperatorInfo* pAggInfo, int32_t numOfOutput,
                                     uint64_t groupId);
146

L
Liu Jicong 已提交
147 148
// setup the output buffer for each operator
static bool hasNull(SColumn* pColumn, SColumnDataAgg* pStatis) {
dengyihao's avatar
dengyihao 已提交
149 150
  if (TSDB_COL_IS_TAG(pColumn->flag) || TSDB_COL_IS_UD_COL(pColumn->flag) ||
      pColumn->colId == PRIMARYKEY_TIMESTAMP_COL_ID) {
151 152 153 154 155 156 157 158 159 160
    return false;
  }

  if (pStatis != NULL && pStatis->numOfNull == 0) {
    return false;
  }

  return true;
}

161
#if 0
L
Liu Jicong 已提交
162 163
static bool chkResultRowFromKey(STaskRuntimeEnv* pRuntimeEnv, SResultRowInfo* pResultRowInfo, char* pData,
                                int16_t bytes, bool masterscan, uint64_t uid) {
164 165 166
  bool existed = false;
  SET_RES_WINDOW_KEY(pRuntimeEnv->keyBuf, pData, bytes, uid);

L
Liu Jicong 已提交
167 168
  SResultRow** p1 =
      (SResultRow**)taosHashGet(pRuntimeEnv->pResultRowHashTable, pRuntimeEnv->keyBuf, GET_RES_WINDOW_KEY_LEN(bytes));
169 170 171 172 173 174 175 176 177 178 179

  // in case of repeat scan/reverse scan, no new time window added.
  if (QUERY_IS_INTERVAL_QUERY(pRuntimeEnv->pQueryAttr)) {
    if (!masterscan) {  // the *p1 may be NULL in case of sliding+offset exists.
      return p1 != NULL;
    }

    if (p1 != NULL) {
      if (pResultRowInfo->size == 0) {
        existed = false;
      } else if (pResultRowInfo->size == 1) {
dengyihao's avatar
dengyihao 已提交
180
        //        existed = (pResultRowInfo->pResult[0] == (*p1));
181 182
      } else {  // check if current pResultRowInfo contains the existed pResultRow
        SET_RES_EXT_WINDOW_KEY(pRuntimeEnv->keyBuf, pData, bytes, uid, pResultRowInfo);
L
Liu Jicong 已提交
183 184
        int64_t* index =
            taosHashGet(pRuntimeEnv->pResultRowListSet, pRuntimeEnv->keyBuf, GET_RES_EXT_WINDOW_KEY_LEN(bytes));
185 186 187 188 189 190 191 192 193 194 195 196 197
        if (index != NULL) {
          existed = true;
        } else {
          existed = false;
        }
      }
    }

    return existed;
  }

  return p1 != NULL;
}
198
#endif
199

200
SResultRow* getNewResultRow(SDiskbasedBuf* pResultBuf, int64_t tableGroupId, int32_t interBufSize) {
L
Liu Jicong 已提交
201
  SFilePage* pData = NULL;
202 203 204 205 206 207 208 209 210 211 212 213 214

  // in the first scan, new space needed for results
  int32_t pageId = -1;
  SIDList list = getDataBufPagesIdList(pResultBuf, tableGroupId);

  if (taosArrayGetSize(list) == 0) {
    pData = getNewBufPage(pResultBuf, tableGroupId, &pageId);
    pData->num = sizeof(SFilePage);
  } else {
    SPageInfo* pi = getLastPageInfo(list);
    pData = getBufPage(pResultBuf, getPageId(pi));
    pageId = getPageId(pi);

wmmhello's avatar
wmmhello 已提交
215
    if (pData->num + interBufSize > getBufPageSize(pResultBuf)) {
216 217 218 219 220 221 222 223 224 225 226 227 228 229
      // release current page first, and prepare the next one
      releaseBufPageInfo(pResultBuf, pi);

      pData = getNewBufPage(pResultBuf, tableGroupId, &pageId);
      if (pData != NULL) {
        pData->num = sizeof(SFilePage);
      }
    }
  }

  if (pData == NULL) {
    return NULL;
  }

230 231
  setBufPageDirty(pData, true);

232 233 234 235 236
  // set the number of rows in current disk page
  SResultRow* pResultRow = (SResultRow*)((char*)pData + pData->num);
  pResultRow->pageId = pageId;
  pResultRow->offset = (int32_t)pData->num;

wmmhello's avatar
wmmhello 已提交
237
  pData->num += interBufSize;
238 239 240 241

  return pResultRow;
}

242 243 244 245 246 247 248
/**
 * the struct of key in hash table
 * +----------+---------------+
 * | group id |   key data    |
 * | 8 bytes  | actual length |
 * +----------+---------------+
 */
249 250 251
SResultRow* doSetResultOutBufByKey(SDiskbasedBuf* pResultBuf, SResultRowInfo* pResultRowInfo, char* pData,
                                   int16_t bytes, bool masterscan, uint64_t groupId, SExecTaskInfo* pTaskInfo,
                                   bool isIntervalQuery, SAggSupporter* pSup) {
252
  SET_RES_WINDOW_KEY(pSup->keyBuf, pData, bytes, groupId);
H
Haojun Liao 已提交
253

dengyihao's avatar
dengyihao 已提交
254 255
  SResultRowPosition* p1 =
      (SResultRowPosition*)taosHashGet(pSup->pResultRowHashTable, pSup->keyBuf, GET_RES_WINDOW_KEY_LEN(bytes));
H
Haojun Liao 已提交
256

257 258
  SResultRow* pResult = NULL;

H
Haojun Liao 已提交
259 260
  // in case of repeat scan/reverse scan, no new time window added.
  if (isIntervalQuery) {
261 262
    if (masterscan && p1 != NULL) {  // the *p1 may be NULL in case of sliding+offset exists.
      pResult = getResultRowByPos(pResultBuf, p1);
263
      ASSERT(pResult->pageId == p1->pageId && pResult->offset == p1->offset);
H
Haojun Liao 已提交
264 265
    }
  } else {
dengyihao's avatar
dengyihao 已提交
266 267
    // In case of group by column query, the required SResultRow object must be existInCurrentResusltRowInfo in the
    // pResultRowInfo object.
H
Haojun Liao 已提交
268
    if (p1 != NULL) {
269
      // todo
270
      pResult = getResultRowByPos(pResultBuf, p1);
271
      ASSERT(pResult->pageId == p1->pageId && pResult->offset == p1->offset);
H
Haojun Liao 已提交
272 273 274
    }
  }

L
Liu Jicong 已提交
275
  // 1. close current opened time window
276
  if (pResultRowInfo->cur.pageId != -1 && ((pResult == NULL) || (pResult->pageId != pResultRowInfo->cur.pageId &&
L
Liu Jicong 已提交
277
                                                                 pResult->offset != pResultRowInfo->cur.offset))) {
278
    SResultRowPosition pos = pResultRowInfo->cur;
X
Xiaoyu Wang 已提交
279
    SFilePage*         pPage = getBufPage(pResultBuf, pos.pageId);
280 281 282 283 284
    releaseBufPage(pResultBuf, pPage);
  }

  // allocate a new buffer page
  if (pResult == NULL) {
H
Haojun Liao 已提交
285
    ASSERT(pSup->resultRowSize > 0);
286 287
    pResult = getNewResultRow(pResultBuf, groupId, pSup->resultRowSize);

288
    initResultRow(pResult);
H
Haojun Liao 已提交
289

290 291
    // add a new result set for a new group
    SResultRowPosition pos = {.pageId = pResult->pageId, .offset = pResult->offset};
X
Xiaoyu Wang 已提交
292 293
    taosHashPut(pSup->pResultRowHashTable, pSup->keyBuf, GET_RES_WINDOW_KEY_LEN(bytes), &pos,
                sizeof(SResultRowPosition));
H
Haojun Liao 已提交
294 295
  }

296 297 298
  // 2. set the new time window to be the new active time window
  pResultRowInfo->cur = (SResultRowPosition){.pageId = pResult->pageId, .offset = pResult->offset};

H
Haojun Liao 已提交
299
  // too many time window in query
300
  if (taosHashGetSize(pSup->pResultRowHashTable) > MAX_INTERVAL_TIME_WINDOW) {
H
Haojun Liao 已提交
301 302 303
    longjmp(pTaskInfo->env, TSDB_CODE_QRY_TOO_MANY_TIMEWINDOW);
  }

H
Haojun Liao 已提交
304
  return pResult;
H
Haojun Liao 已提交
305 306
}

307
// a new buffer page for each table. Needs to opt this design
L
Liu Jicong 已提交
308
static int32_t addNewWindowResultBuf(SResultRow* pWindowRes, SDiskbasedBuf* pResultBuf, int32_t tid, uint32_t size) {
309 310 311 312
  if (pWindowRes->pageId != -1) {
    return 0;
  }

L
Liu Jicong 已提交
313
  SFilePage* pData = NULL;
314 315 316 317 318 319

  // in the first scan, new space needed for results
  int32_t pageId = -1;
  SIDList list = getDataBufPagesIdList(pResultBuf, tid);

  if (taosArrayGetSize(list) == 0) {
H
Haojun Liao 已提交
320
    pData = getNewBufPage(pResultBuf, tid, &pageId);
321
    pData->num = sizeof(SFilePage);
322 323
  } else {
    SPageInfo* pi = getLastPageInfo(list);
324
    pData = getBufPage(pResultBuf, getPageId(pi));
325
    pageId = getPageId(pi);
326

327
    if (pData->num + size > getBufPageSize(pResultBuf)) {
328
      // release current page first, and prepare the next one
329
      releaseBufPageInfo(pResultBuf, pi);
330

H
Haojun Liao 已提交
331
      pData = getNewBufPage(pResultBuf, tid, &pageId);
332
      if (pData != NULL) {
333
        pData->num = sizeof(SFilePage);
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
      }
    }
  }

  if (pData == NULL) {
    return -1;
  }

  // set the number of rows in current disk page
  if (pWindowRes->pageId == -1) {  // not allocated yet, allocate new buffer
    pWindowRes->pageId = pageId;
    pWindowRes->offset = (int32_t)pData->num;

    pData->num += size;
    assert(pWindowRes->pageId >= 0);
  }

  return 0;
}

354
//  query_range_start, query_range_end, window_duration, window_start, window_end
355
void initExecTimeWindowInfo(SColumnInfoData* pColData, STimeWindow* pQueryWindow) {
356 357 358
  pColData->info.type = TSDB_DATA_TYPE_TIMESTAMP;
  pColData->info.bytes = sizeof(int64_t);

359
  colInfoDataEnsureCapacity(pColData, 5);
360 361 362 363 364 365 366 367 368
  colDataAppendInt64(pColData, 0, &pQueryWindow->skey);
  colDataAppendInt64(pColData, 1, &pQueryWindow->ekey);

  int64_t interval = 0;
  colDataAppendInt64(pColData, 2, &interval);  // this value may be variable in case of 'n' and 'y'.
  colDataAppendInt64(pColData, 3, &pQueryWindow->skey);
  colDataAppendInt64(pColData, 4, &pQueryWindow->ekey);
}

X
Xiaoyu Wang 已提交
369 370 371
void doApplyFunctions(SExecTaskInfo* taskInfo, SqlFunctionCtx* pCtx, STimeWindow* pWin,
                      SColumnInfoData* pTimeWindowData, int32_t offset, int32_t forwardStep, TSKEY* tsCol,
                      int32_t numOfTotal, int32_t numOfOutput, int32_t order) {
372
  for (int32_t k = 0; k < numOfOutput; ++k) {
H
Haojun Liao 已提交
373
    // keep it temporarily
374
    // todo no need this??
dengyihao's avatar
dengyihao 已提交
375 376
    bool    hasAgg = pCtx[k].input.colDataAggIsSet;
    int32_t numOfRows = pCtx[k].input.numOfRows;
H
Haojun Liao 已提交
377
    int32_t startOffset = pCtx[k].input.startRowIndex;
378

379
    pCtx[k].input.startRowIndex = offset;
380
    pCtx[k].input.numOfRows = forwardStep;
381 382 383

    // not a whole block involved in query processing, statistics data can not be used
    // NOTE: the original value of isSet have been changed here
384 385
    if (pCtx[k].input.colDataAggIsSet && forwardStep < numOfTotal) {
      pCtx[k].input.colDataAggIsSet = false;
386 387
    }

388 389
    if (fmIsWindowPseudoColumnFunc(pCtx[k].functionId)) {
      SResultRowEntryInfo* pEntryInfo = GET_RES_INFO(&pCtx[k]);
390 391

      char* p = GET_ROWCELL_INTERBUF(pEntryInfo);
392

393
      SColumnInfoData idata = {0};
dengyihao's avatar
dengyihao 已提交
394
      idata.info.type = TSDB_DATA_TYPE_BIGINT;
395
      idata.info.bytes = tDataTypes[TSDB_DATA_TYPE_BIGINT].bytes;
dengyihao's avatar
dengyihao 已提交
396
      idata.pData = p;
397 398 399 400

      SScalarParam out = {.columnData = &idata};
      SScalarParam tw = {.numOfRows = 5, .columnData = pTimeWindowData};
      pCtx[k].sfp.process(&tw, 1, &out);
401
      pEntryInfo->numOfRes = 1;
402 403 404 405 406 407 408 409 410 411
    } else {
      int32_t code = TSDB_CODE_SUCCESS;
      if (functionNeedToExecute(&pCtx[k]) && pCtx[k].fpSet.process != NULL) {
        code = pCtx[k].fpSet.process(&pCtx[k]);

        if (code != TSDB_CODE_SUCCESS) {
          qError("%s apply functions error, code: %s", GET_TASKID(taskInfo), tstrerror(code));
          taskInfo->code = code;
          longjmp(taskInfo->env, code);
        }
412
      }
413

414 415 416 417 418
      // restore it
      pCtx[k].input.colDataAggIsSet = hasAgg;
      pCtx[k].input.startRowIndex = startOffset;
      pCtx[k].input.numOfRows = numOfRows;
    }
419 420 421
  }
}

dengyihao's avatar
dengyihao 已提交
422
static int32_t doSetInputDataBlock(SOperatorInfo* pOperator, SqlFunctionCtx* pCtx, SSDataBlock* pBlock, int32_t order,
423
                                   int32_t scanFlag, bool createDummyCol);
424

dengyihao's avatar
dengyihao 已提交
425 426
static void doSetInputDataBlockInfo(SOperatorInfo* pOperator, SqlFunctionCtx* pCtx, SSDataBlock* pBlock,
                                    int32_t order) {
427
  for (int32_t i = 0; i < pOperator->exprSupp.numOfExprs; ++i) {
428
    pCtx[i].order = order;
429
    pCtx[i].input.numOfRows = pBlock->info.rows;
430
    setBlockStatisInfo(&pCtx[i], &pOperator->exprSupp.pExprInfo[i], pBlock);
431 432 433
  }
}

X
Xiaoyu Wang 已提交
434 435
void setInputDataBlock(SOperatorInfo* pOperator, SqlFunctionCtx* pCtx, SSDataBlock* pBlock, int32_t order,
                       int32_t scanFlag, bool createDummyCol) {
436
  if (pBlock->pBlockAgg != NULL) {
H
Haojun Liao 已提交
437
    doSetInputDataBlockInfo(pOperator, pCtx, pBlock, order);
438
  } else {
439
    doSetInputDataBlock(pOperator, pCtx, pBlock, order, scanFlag, createDummyCol);
H
Haojun Liao 已提交
440
  }
441 442
}

L
Liu Jicong 已提交
443 444
static int32_t doCreateConstantValColumnInfo(SInputColumnInfoData* pInput, SFunctParam* pFuncParam, int32_t paramIndex,
                                             int32_t numOfRows) {
445 446 447 448 449 450 451 452
  SColumnInfoData* pColInfo = NULL;
  if (pInput->pData[paramIndex] == NULL) {
    pColInfo = taosMemoryCalloc(1, sizeof(SColumnInfoData));
    if (pColInfo == NULL) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }

    // Set the correct column info (data type and bytes)
453 454
    pColInfo->info.type = pFuncParam->param.nType;
    pColInfo->info.bytes = pFuncParam->param.nLen;
455 456

    pInput->pData[paramIndex] = pColInfo;
457 458
  } else {
    pColInfo = pInput->pData[paramIndex];
459 460
  }

461
  colInfoDataEnsureCapacity(pColInfo, numOfRows);
462

463
  int8_t type = pFuncParam->param.nType;
464 465
  if (type == TSDB_DATA_TYPE_BIGINT || type == TSDB_DATA_TYPE_UBIGINT) {
    int64_t v = pFuncParam->param.i;
dengyihao's avatar
dengyihao 已提交
466
    for (int32_t i = 0; i < numOfRows; ++i) {
467 468 469 470
      colDataAppendInt64(pColInfo, i, &v);
    }
  } else if (type == TSDB_DATA_TYPE_DOUBLE) {
    double v = pFuncParam->param.d;
dengyihao's avatar
dengyihao 已提交
471
    for (int32_t i = 0; i < numOfRows; ++i) {
472 473
      colDataAppendDouble(pColInfo, i, &v);
    }
474
  } else if (type == TSDB_DATA_TYPE_VARCHAR) {
L
Liu Jicong 已提交
475
    char* tmp = taosMemoryMalloc(pFuncParam->param.nLen + VARSTR_HEADER_SIZE);
476
    STR_WITH_SIZE_TO_VARSTR(tmp, pFuncParam->param.pz, pFuncParam->param.nLen);
L
Liu Jicong 已提交
477
    for (int32_t i = 0; i < numOfRows; ++i) {
478 479
      colDataAppend(pColInfo, i, tmp, false);
    }
480 481 482 483 484
  }

  return TSDB_CODE_SUCCESS;
}

dengyihao's avatar
dengyihao 已提交
485
static int32_t doSetInputDataBlock(SOperatorInfo* pOperator, SqlFunctionCtx* pCtx, SSDataBlock* pBlock, int32_t order,
X
Xiaoyu Wang 已提交
486
                                   int32_t scanFlag, bool createDummyCol) {
487 488
  int32_t code = TSDB_CODE_SUCCESS;

489
  for (int32_t i = 0; i < pOperator->exprSupp.numOfExprs; ++i) {
L
Liu Jicong 已提交
490
    pCtx[i].order = order;
491 492
    pCtx[i].input.numOfRows = pBlock->info.rows;

L
Liu Jicong 已提交
493
    pCtx[i].pSrcBlock = pBlock;
X
Xiaoyu Wang 已提交
494
    pCtx[i].scanFlag = scanFlag;
H
Haojun Liao 已提交
495

496
    SInputColumnInfoData* pInput = &pCtx[i].input;
497
    pInput->uid = pBlock->info.uid;
C
Cary Xu 已提交
498
    pInput->colDataAggIsSet = false;
499

500
    SExprInfo* pOneExpr = &pOperator->exprSupp.pExprInfo[i];
501
    for (int32_t j = 0; j < pOneExpr->base.numOfParams; ++j) {
dengyihao's avatar
dengyihao 已提交
502
      SFunctParam* pFuncParam = &pOneExpr->base.pParam[j];
G
Ganlin Zhao 已提交
503 504
      if (pFuncParam->type == FUNC_PARAM_TYPE_COLUMN) {
        int32_t slotId = pFuncParam->pCol->slotId;
dengyihao's avatar
dengyihao 已提交
505
        pInput->pData[j] = taosArrayGet(pBlock->pDataBlock, slotId);
506 507 508
        pInput->totalRows = pBlock->info.rows;
        pInput->numOfRows = pBlock->info.rows;
        pInput->startRowIndex = 0;
509

510
        // NOTE: the last parameter is the primary timestamp column
511 512 513
        if (fmIsTimelineFunc(pCtx[i].functionId) && (j == pOneExpr->base.numOfParams - 1)) {
          pInput->pPTS = pInput->pData[j];
        }
514 515
        ASSERT(pInput->pData[j] != NULL);
      } else if (pFuncParam->type == FUNC_PARAM_TYPE_VALUE) {
516 517 518
        // todo avoid case: top(k, 12), 12 is the value parameter.
        // sum(11), 11 is also the value parameter.
        if (createDummyCol && pOneExpr->base.numOfParams == 1) {
519 520 521 522
          pInput->totalRows = pBlock->info.rows;
          pInput->numOfRows = pBlock->info.rows;
          pInput->startRowIndex = 0;

523
          code = doCreateConstantValColumnInfo(pInput, pFuncParam, j, pBlock->info.rows);
524 525 526
          if (code != TSDB_CODE_SUCCESS) {
            return code;
          }
527
        }
G
Ganlin Zhao 已提交
528 529
      }
    }
H
Haojun Liao 已提交
530
  }
531 532

  return code;
H
Haojun Liao 已提交
533 534
}

535
static int32_t doAggregateImpl(SOperatorInfo* pOperator, TSKEY startTs, SqlFunctionCtx* pCtx) {
536
  for (int32_t k = 0; k < pOperator->exprSupp.numOfExprs; ++k) {
H
Haojun Liao 已提交
537
    if (functionNeedToExecute(&pCtx[k])) {
538
      // todo add a dummy funtion to avoid process check
539 540 541 542 543 544 545 546
      if (pCtx[k].fpSet.process == NULL) {
        continue;
      }

      int32_t code = pCtx[k].fpSet.process(&pCtx[k]);
      if (code != TSDB_CODE_SUCCESS) {
        qError("%s aggregate function error happens, code: %s", GET_TASKID(pOperator->pTaskInfo), tstrerror(code));
        return code;
547
      }
548 549
    }
  }
550 551

  return TSDB_CODE_SUCCESS;
552 553
}

H
Haojun Liao 已提交
554
static void setPseudoOutputColInfo(SSDataBlock* pResult, SqlFunctionCtx* pCtx, SArray* pPseudoList) {
dengyihao's avatar
dengyihao 已提交
555
  size_t num = (pPseudoList != NULL) ? taosArrayGetSize(pPseudoList) : 0;
H
Haojun Liao 已提交
556 557 558 559 560
  for (int32_t i = 0; i < num; ++i) {
    pCtx[i].pOutput = taosArrayGet(pResult->pDataBlock, i);
  }
}

561
int32_t projectApplyFunctions(SExprInfo* pExpr, SSDataBlock* pResult, SSDataBlock* pSrcBlock, SqlFunctionCtx* pCtx,
X
Xiaoyu Wang 已提交
562
                              int32_t numOfOutput, SArray* pPseudoList) {
H
Haojun Liao 已提交
563
  setPseudoOutputColInfo(pResult, pCtx, pPseudoList);
H
Haojun Liao 已提交
564
  pResult->info.groupId = pSrcBlock->info.groupId;
H
Haojun Liao 已提交
565

dengyihao's avatar
dengyihao 已提交
566 567
  // if the source equals to the destination, it is to create a new column as the result of scalar function or some
  // operators.
568 569
  bool createNewColModel = (pResult == pSrcBlock);

570 571
  int32_t numOfRows = 0;

572
  for (int32_t k = 0; k < numOfOutput; ++k) {
dengyihao's avatar
dengyihao 已提交
573
    int32_t         outputSlotId = pExpr[k].base.resSchema.slotId;
574 575
    SqlFunctionCtx* pfCtx = &pCtx[k];

L
Liu Jicong 已提交
576
    if (pExpr[k].pExpr->nodeType == QUERY_NODE_COLUMN) {  // it is a project query
577
      SColumnInfoData* pColInfoData = taosArrayGet(pResult->pDataBlock, outputSlotId);
578
      if (pResult->info.rows > 0 && !createNewColModel) {
X
Xiaoyu Wang 已提交
579 580
        colDataMergeCol(pColInfoData, pResult->info.rows, &pResult->info.capacity, pfCtx->input.pData[0],
                        pfCtx->input.numOfRows);
581
      } else {
582
        colDataAssign(pColInfoData, pfCtx->input.pData[0], pfCtx->input.numOfRows, &pResult->info);
583
      }
584

585
      numOfRows = pfCtx->input.numOfRows;
586
    } else if (pExpr[k].pExpr->nodeType == QUERY_NODE_VALUE) {
587
      SColumnInfoData* pColInfoData = taosArrayGet(pResult->pDataBlock, outputSlotId);
588

dengyihao's avatar
dengyihao 已提交
589
      int32_t offset = createNewColModel ? 0 : pResult->info.rows;
590
      for (int32_t i = 0; i < pSrcBlock->info.rows; ++i) {
dengyihao's avatar
dengyihao 已提交
591 592 593
        colDataAppend(pColInfoData, i + offset,
                      taosVariantGet(&pExpr[k].base.pParam[0].param, pExpr[k].base.pParam[0].param.nType),
                      TSDB_DATA_TYPE_NULL == pExpr[k].base.pParam[0].param.nType);
594
      }
595 596

      numOfRows = pSrcBlock->info.rows;
H
Haojun Liao 已提交
597
    } else if (pExpr[k].pExpr->nodeType == QUERY_NODE_OPERATOR) {
598 599 600
      SArray* pBlockList = taosArrayInit(4, POINTER_BYTES);
      taosArrayPush(pBlockList, &pSrcBlock);

601
      SColumnInfoData* pResColData = taosArrayGet(pResult->pDataBlock, outputSlotId);
602
      SColumnInfoData  idata = {.info = pResColData->info, .hasNull = true};
603

604
      SScalarParam dest = {.columnData = &idata};
X
Xiaoyu Wang 已提交
605
      int32_t      code = scalarCalculate(pExpr[k].pExpr->_optrRoot.pRootNode, pBlockList, &dest);
606 607 608 609
      if (code != TSDB_CODE_SUCCESS) {
        taosArrayDestroy(pBlockList);
        return code;
      }
610

dengyihao's avatar
dengyihao 已提交
611
      int32_t startOffset = createNewColModel ? 0 : pResult->info.rows;
612
      ASSERT(pResult->info.capacity > 0);
613
      colDataMergeCol(pResColData, startOffset, &pResult->info.capacity, &idata, dest.numOfRows);
614 615

      numOfRows = dest.numOfRows;
616 617
      taosArrayDestroy(pBlockList);
    } else if (pExpr[k].pExpr->nodeType == QUERY_NODE_FUNCTION) {
618
      ASSERT(!fmIsAggFunc(pfCtx->functionId));
619

620 621
      // _rowts/_c0, not tbname column
      if (fmIsPseudoColumnFunc(pfCtx->functionId) && (!fmIsScanPseudoColumnFunc(pfCtx->functionId))) {
H
Haojun Liao 已提交
622
        // do nothing
623 624 625 626 627 628 629 630 631 632 633 634 635 636
      } else if (fmIsIndefiniteRowsFunc(pfCtx->functionId)) {
        SResultRowEntryInfo* pResInfo = GET_RES_INFO(&pCtx[k]);
        pfCtx->fpSet.init(&pCtx[k], pResInfo);

        pfCtx->pOutput = taosArrayGet(pResult->pDataBlock, outputSlotId);
        pfCtx->offset = createNewColModel ? 0 : pResult->info.rows;  // set the start offset

        // set the timestamp(_rowts) output buffer
        if (taosArrayGetSize(pPseudoList) > 0) {
          int32_t* outputColIndex = taosArrayGet(pPseudoList, 0);
          pfCtx->pTsOutput = (SColumnInfoData*)pCtx[*outputColIndex].pOutput;
        }

        numOfRows = pfCtx->fpSet.process(pfCtx);
H
Haojun Liao 已提交
637 638 639
      } else {
        SArray* pBlockList = taosArrayInit(4, POINTER_BYTES);
        taosArrayPush(pBlockList, &pSrcBlock);
G
Ganlin Zhao 已提交
640

641
        SColumnInfoData* pResColData = taosArrayGet(pResult->pDataBlock, outputSlotId);
642
        SColumnInfoData  idata = {.info = pResColData->info, .hasNull = true};
H
Haojun Liao 已提交
643

644
        SScalarParam dest = {.columnData = &idata};
X
Xiaoyu Wang 已提交
645
        int32_t      code = scalarCalculate((SNode*)pExpr[k].pExpr->_function.pFunctNode, pBlockList, &dest);
646 647 648 649
        if (code != TSDB_CODE_SUCCESS) {
          taosArrayDestroy(pBlockList);
          return code;
        }
650

dengyihao's avatar
dengyihao 已提交
651
        int32_t startOffset = createNewColModel ? 0 : pResult->info.rows;
652
        ASSERT(pResult->info.capacity > 0);
653
        colDataMergeCol(pResColData, startOffset, &pResult->info.capacity, &idata, dest.numOfRows);
654 655

        numOfRows = dest.numOfRows;
H
Haojun Liao 已提交
656 657
        taosArrayDestroy(pBlockList);
      }
658
    } else {
659
      ASSERT(0);
660 661
    }
  }
662

663 664 665
  if (!createNewColModel) {
    pResult->info.rows += numOfRows;
  }
666 667

  return TSDB_CODE_SUCCESS;
668 669
}

670 671 672
static void setResultRowKey(SResultRow* pResultRow, char* pData, int16_t type) {
  if (IS_VAR_DATA_TYPE(type)) {
    // todo disable this
673

674 675 676 677 678 679 680 681 682
    //    if (pResultRow->key == NULL) {
    //      pResultRow->key = taosMemoryMalloc(varDataTLen(pData));
    //      varDataCopy(pResultRow->key, pData);
    //    } else {
    //      ASSERT(memcmp(pResultRow->key, pData, varDataTLen(pData)) == 0);
    //    }
  } else {
    int64_t v = -1;
    GET_TYPED_DATA(v, int64_t, type, pData);
683

684 685
    pResultRow->win.skey = v;
    pResultRow->win.ekey = v;
686 687 688
  }
}

5
54liuyao 已提交
689
bool functionNeedToExecute(SqlFunctionCtx* pCtx) {
690
  struct SResultRowEntryInfo* pResInfo = GET_RES_INFO(pCtx);
691

692 693 694 695 696
  // in case of timestamp column, always generated results.
  int32_t functionId = pCtx->functionId;
  if (functionId == -1) {
    return false;
  }
697

698 699
  if (pCtx->scanFlag == REPEAT_SCAN) {
    return fmIsRepeatScanFunc(pCtx->functionId);
700 701
  }

702 703
  if (isRowEntryCompleted(pResInfo)) {
    return false;
704 705
  }

706 707 708
  return true;
}

709 710 711 712 713 714 715
static int32_t doCreateConstantValColumnAggInfo(SInputColumnInfoData* pInput, SFunctParam* pFuncParam, int32_t type,
                                                int32_t paramIndex, int32_t numOfRows) {
  if (pInput->pData[paramIndex] == NULL) {
    pInput->pData[paramIndex] = taosMemoryCalloc(1, sizeof(SColumnInfoData));
    if (pInput->pData[paramIndex] == NULL) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
716

717 718 719
    // Set the correct column info (data type and bytes)
    pInput->pData[paramIndex]->info.type = type;
    pInput->pData[paramIndex]->info.bytes = tDataTypes[type].bytes;
720
  }
H
Haojun Liao 已提交
721

722 723 724 725 726 727
  SColumnDataAgg* da = NULL;
  if (pInput->pColumnDataAgg[paramIndex] == NULL) {
    da = taosMemoryCalloc(1, sizeof(SColumnDataAgg));
    pInput->pColumnDataAgg[paramIndex] = da;
    if (da == NULL) {
      return TSDB_CODE_OUT_OF_MEMORY;
728 729
    }
  } else {
730
    da = pInput->pColumnDataAgg[paramIndex];
731 732
  }

733
  ASSERT(!IS_VAR_DATA_TYPE(type));
734

735 736 737 738 739 740
  if (type == TSDB_DATA_TYPE_BIGINT) {
    int64_t v = pFuncParam->param.i;
    *da = (SColumnDataAgg){.numOfNull = 0, .min = v, .max = v, .maxIndex = 0, .minIndex = 0, .sum = v * numOfRows};
  } else if (type == TSDB_DATA_TYPE_DOUBLE) {
    double v = pFuncParam->param.d;
    *da = (SColumnDataAgg){.numOfNull = 0, .maxIndex = 0, .minIndex = 0};
741

742 743 744 745 746 747 748 749 750 751 752 753
    *(double*)&da->min = v;
    *(double*)&da->max = v;
    *(double*)&da->sum = v * numOfRows;
  } else if (type == TSDB_DATA_TYPE_BOOL) {  // todo validate this data type
    bool v = pFuncParam->param.i;

    *da = (SColumnDataAgg){.numOfNull = 0, .maxIndex = 0, .minIndex = 0};
    *(bool*)&da->min = 0;
    *(bool*)&da->max = v;
    *(bool*)&da->sum = v * numOfRows;
  } else if (type == TSDB_DATA_TYPE_TIMESTAMP) {
    // do nothing
754
  } else {
755
    ASSERT(0);
756 757
  }

758 759
  return TSDB_CODE_SUCCESS;
}
760 761 762 763 764 765 766 767 768 769 770

void setBlockStatisInfo(SqlFunctionCtx* pCtx, SExprInfo* pExprInfo, SSDataBlock* pBlock) {
  int32_t numOfRows = pBlock->info.rows;

  SInputColumnInfoData* pInput = &pCtx->input;
  pInput->numOfRows = numOfRows;
  pInput->totalRows = numOfRows;

  if (pBlock->pBlockAgg != NULL) {
    pInput->colDataAggIsSet = true;

771 772
    for (int32_t j = 0; j < pExprInfo->base.numOfParams; ++j) {
      SFunctParam* pFuncParam = &pExprInfo->base.pParam[j];
773

774 775
      if (pFuncParam->type == FUNC_PARAM_TYPE_COLUMN) {
        int32_t slotId = pFuncParam->pCol->slotId;
776 777 778 779
        pInput->pColumnDataAgg[j] = pBlock->pBlockAgg[slotId];
        if (pInput->pColumnDataAgg[j] == NULL) {
          pInput->colDataAggIsSet = false;
        }
780 781 782 783

        // Here we set the column info data since the data type for each column data is required, but
        // the data in the corresponding SColumnInfoData will not be used.
        pInput->pData[j] = taosArrayGet(pBlock->pDataBlock, slotId);
784 785
      } else if (pFuncParam->type == FUNC_PARAM_TYPE_VALUE) {
        doCreateConstantValColumnAggInfo(pInput, pFuncParam, pFuncParam->param.nType, j, pBlock->info.rows);
786 787
      }
    }
788
  } else {
789
    pInput->colDataAggIsSet = false;
790 791 792
  }

  // set the statistics data for primary time stamp column
793 794 795 796 797
  //  if (pCtx->functionId == FUNCTION_SPREAD && pColumn->colId == PRIMARYKEY_TIMESTAMP_COL_ID) {
  //    pCtx->isAggSet = true;
  //    pCtx->agg.min = pBlock->info.window.skey;
  //    pCtx->agg.max = pBlock->info.window.ekey;
  //  }
798 799
}

L
Liu Jicong 已提交
800
bool isTaskKilled(SExecTaskInfo* pTaskInfo) {
801 802
  // query has been executed more than tsShellActivityTimer, and the retrieve has not arrived
  // abort current query execution.
L
Liu Jicong 已提交
803 804
  if (pTaskInfo->owner != 0 &&
      ((taosGetTimestampSec() - pTaskInfo->cost.start / 1000) > 10 * getMaximumIdleDurationSec())
805 806
      /*(!needBuildResAfterQueryComplete(pTaskInfo))*/) {
    assert(pTaskInfo->cost.start != 0);
L
Liu Jicong 已提交
807 808 809
    //    qDebug("QInfo:%" PRIu64 " retrieve not arrive beyond %d ms, abort current query execution, start:%" PRId64
    //           ", current:%d", pQInfo->qId, 1, pQInfo->startExecTs, taosGetTimestampSec());
    //    return true;
810 811 812 813 814
  }

  return false;
}

L
Liu Jicong 已提交
815
void setTaskKilled(SExecTaskInfo* pTaskInfo) { pTaskInfo->code = TSDB_CODE_TSC_QUERY_CANCELLED; }
816 817

/////////////////////////////////////////////////////////////////////////////////////////////
L
Liu Jicong 已提交
818
// todo refactor : return window
819
void getAlignQueryTimeWindow(SInterval* pInterval, int32_t precision, int64_t key, STimeWindow* win) {
H
Haojun Liao 已提交
820
  win->skey = taosTimeTruncate(key, pInterval, precision);
821 822

  /*
H
Haojun Liao 已提交
823
   * if the realSkey > INT64_MAX - pInterval->interval, the query duration between
824 825
   * realSkey and realEkey must be less than one interval.Therefore, no need to adjust the query ranges.
   */
826 827
  win->ekey = taosTimeAdd(win->skey, pInterval->interval, pInterval->intervalUnit, precision) - 1;
  if (win->ekey < win->skey) {
828 829 830 831
    win->ekey = INT64_MAX;
  }
}

832
#if 0
L
Liu Jicong 已提交
833
static int32_t updateBlockLoadStatus(STaskAttr* pQuery, int32_t status) {
834

835 836 837
  bool hasFirstLastFunc = false;
  bool hasOtherFunc = false;

838
  if (status == BLK_DATA_DATA_LOAD || status == BLK_DATA_FILTEROUT) {
839 840 841 842 843
    return status;
  }

  for (int32_t i = 0; i < pQuery->numOfOutput; ++i) {
    int32_t functionId = getExprFunctionId(&pQuery->pExpr1[i]);
844

845 846 847 848 849 850 851 852 853 854
    if (functionId == FUNCTION_TS || functionId == FUNCTION_TS_DUMMY || functionId == FUNCTION_TAG ||
        functionId == FUNCTION_TAG_DUMMY) {
      continue;
    }

    if (functionId == FUNCTION_FIRST_DST || functionId == FUNCTION_LAST_DST) {
      hasFirstLastFunc = true;
    } else {
      hasOtherFunc = true;
    }
855

856 857
  }

858
  if (hasFirstLastFunc && status == BLK_DATA_NOT_LOAD) {
L
Liu Jicong 已提交
859
    if (!hasOtherFunc) {
860
      return BLK_DATA_FILTEROUT;
861
    } else {
862
      return BLK_DATA_DATA_LOAD;
863 864 865 866 867 868
    }
  }

  return status;
}

869 870
#endif

L
Liu Jicong 已提交
871 872
// static void updateDataCheckOrder(SQInfo *pQInfo, SQueryTableReq* pQueryMsg, bool stableQuery) {
//   STaskAttr* pQueryAttr = pQInfo->runtimeEnv.pQueryAttr;
H
Haojun Liao 已提交
873
//
L
Liu Jicong 已提交
874 875 876 877
//   // in case of point-interpolation query, use asc order scan
//   char msg[] = "QInfo:0x%"PRIx64" scan order changed for %s query, old:%d, new:%d, qrange exchanged, old qrange:%"
//   PRId64
//                "-%" PRId64 ", new qrange:%" PRId64 "-%" PRId64;
H
Haojun Liao 已提交
878
//
L
Liu Jicong 已提交
879 880 881 882 883
//   // todo handle the case the the order irrelevant query type mixed up with order critical query type
//   // descending order query for last_row query
//   if (isFirstLastRowQuery(pQueryAttr)) {
//     //qDebug("QInfo:0x%"PRIx64" scan order changed for last_row query, old:%d, new:%d", pQInfo->qId,
//     pQueryAttr->order.order, TSDB_ORDER_ASC);
H
Haojun Liao 已提交
884
//
L
Liu Jicong 已提交
885 886
//     pQueryAttr->order.order = TSDB_ORDER_ASC;
//     if (pQueryAttr->window.skey > pQueryAttr->window.ekey) {
wafwerar's avatar
wafwerar 已提交
887
//       TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey);
L
Liu Jicong 已提交
888
//     }
H
Haojun Liao 已提交
889
//
L
Liu Jicong 已提交
890 891 892
//     pQueryAttr->needReverseScan = false;
//     return;
//   }
H
Haojun Liao 已提交
893
//
L
Liu Jicong 已提交
894 895 896
//   if (pQueryAttr->groupbyColumn && pQueryAttr->order.order == TSDB_ORDER_DESC) {
//     pQueryAttr->order.order = TSDB_ORDER_ASC;
//     if (pQueryAttr->window.skey > pQueryAttr->window.ekey) {
wafwerar's avatar
wafwerar 已提交
897
//       TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey);
L
Liu Jicong 已提交
898
//     }
H
Haojun Liao 已提交
899
//
L
Liu Jicong 已提交
900 901 902 903
//     pQueryAttr->needReverseScan = false;
//     doUpdateLastKey(pQueryAttr);
//     return;
//   }
H
Haojun Liao 已提交
904
//
L
Liu Jicong 已提交
905 906 907 908 909 910
//   if (pQueryAttr->pointInterpQuery && pQueryAttr->interval.interval == 0) {
//     if (!QUERY_IS_ASC_QUERY(pQueryAttr)) {
//       //qDebug(msg, pQInfo->qId, "interp", pQueryAttr->order.order, TSDB_ORDER_ASC, pQueryAttr->window.skey,
//       pQueryAttr->window.ekey, pQueryAttr->window.ekey, pQueryAttr->window.skey); TSWAP(pQueryAttr->window.skey,
//       pQueryAttr->window.ekey, TSKEY);
//     }
H
Haojun Liao 已提交
911
//
L
Liu Jicong 已提交
912 913 914
//     pQueryAttr->order.order = TSDB_ORDER_ASC;
//     return;
//   }
H
Haojun Liao 已提交
915
//
L
Liu Jicong 已提交
916 917 918 919
//   if (pQueryAttr->interval.interval == 0) {
//     if (onlyFirstQuery(pQueryAttr)) {
//       if (!QUERY_IS_ASC_QUERY(pQueryAttr)) {
//         //qDebug(msg, pQInfo->qId, "only-first", pQueryAttr->order.order, TSDB_ORDER_ASC, pQueryAttr->window.skey,
H
Haojun Liao 已提交
920 921
////               pQueryAttr->window.ekey, pQueryAttr->window.ekey, pQueryAttr->window.skey);
//
wafwerar's avatar
wafwerar 已提交
922
//        TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey);
H
Haojun Liao 已提交
923 924 925 926 927 928 929 930 931 932
//        doUpdateLastKey(pQueryAttr);
//      }
//
//      pQueryAttr->order.order = TSDB_ORDER_ASC;
//      pQueryAttr->needReverseScan = false;
//    } else if (onlyLastQuery(pQueryAttr) && notContainSessionOrStateWindow(pQueryAttr)) {
//      if (QUERY_IS_ASC_QUERY(pQueryAttr)) {
//        //qDebug(msg, pQInfo->qId, "only-last", pQueryAttr->order.order, TSDB_ORDER_DESC, pQueryAttr->window.skey,
////               pQueryAttr->window.ekey, pQueryAttr->window.ekey, pQueryAttr->window.skey);
//
wafwerar's avatar
wafwerar 已提交
933
//        TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey);
H
Haojun Liao 已提交
934 935 936 937 938 939 940 941 942 943 944 945
//        doUpdateLastKey(pQueryAttr);
//      }
//
//      pQueryAttr->order.order = TSDB_ORDER_DESC;
//      pQueryAttr->needReverseScan = false;
//    }
//
//  } else {  // interval query
//    if (stableQuery) {
//      if (onlyFirstQuery(pQueryAttr)) {
//        if (!QUERY_IS_ASC_QUERY(pQueryAttr)) {
//          //qDebug(msg, pQInfo->qId, "only-first stable", pQueryAttr->order.order, TSDB_ORDER_ASC,
L
Liu Jicong 已提交
946 947
////                 pQueryAttr->window.skey, pQueryAttr->window.ekey, pQueryAttr->window.ekey,
/// pQueryAttr->window.skey);
H
Haojun Liao 已提交
948
//
wafwerar's avatar
wafwerar 已提交
949
//          TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey);
H
Haojun Liao 已提交
950 951 952 953 954 955 956 957
//          doUpdateLastKey(pQueryAttr);
//        }
//
//        pQueryAttr->order.order = TSDB_ORDER_ASC;
//        pQueryAttr->needReverseScan = false;
//      } else if (onlyLastQuery(pQueryAttr)) {
//        if (QUERY_IS_ASC_QUERY(pQueryAttr)) {
//          //qDebug(msg, pQInfo->qId, "only-last stable", pQueryAttr->order.order, TSDB_ORDER_DESC,
L
Liu Jicong 已提交
958 959
////                 pQueryAttr->window.skey, pQueryAttr->window.ekey, pQueryAttr->window.ekey,
/// pQueryAttr->window.skey);
H
Haojun Liao 已提交
960
//
wafwerar's avatar
wafwerar 已提交
961
//          TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey);
H
Haojun Liao 已提交
962 963 964 965 966 967 968 969 970
//          doUpdateLastKey(pQueryAttr);
//        }
//
//        pQueryAttr->order.order = TSDB_ORDER_DESC;
//        pQueryAttr->needReverseScan = false;
//      }
//    }
//  }
//}
971

L
Liu Jicong 已提交
972 973 974
// static FORCE_INLINE bool doFilterByBlockStatistics(STaskRuntimeEnv* pRuntimeEnv, SDataStatis *pDataStatis,
// SqlFunctionCtx *pCtx, int32_t numOfRows) {
//   STaskAttr* pQueryAttr = pRuntimeEnv->pQueryAttr;
975
//
L
Liu Jicong 已提交
976 977 978
//   if (pDataStatis == NULL || pQueryAttr->pFilters == NULL) {
//     return true;
//   }
979
//
L
Liu Jicong 已提交
980 981
//   return filterRangeExecute(pQueryAttr->pFilters, pDataStatis, pQueryAttr->numOfCols, numOfRows);
// }
982
#if 0
H
Haojun Liao 已提交
983
static bool overlapWithTimeWindow(STaskAttr* pQueryAttr, SDataBlockInfo* pBlockInfo) {
984 985
  STimeWindow w = {0};

dengyihao's avatar
dengyihao 已提交
986 987
  TSKEY sk = TMIN(pQueryAttr->window.skey, pQueryAttr->window.ekey);
  TSKEY ek = TMAX(pQueryAttr->window.skey, pQueryAttr->window.ekey);
988

989
  if (true) {
L
Liu Jicong 已提交
990
    //    getAlignQueryTimeWindow(pQueryAttr, pBlockInfo->window.skey, sk, ek, &w);
991 992 993 994 995 996
    assert(w.ekey >= pBlockInfo->window.skey);

    if (w.ekey < pBlockInfo->window.ekey) {
      return true;
    }

L
Liu Jicong 已提交
997 998
    while (1) {
      //      getNextTimeWindow(pQueryAttr, &w);
999 1000 1001 1002 1003 1004 1005 1006 1007 1008
      if (w.skey > pBlockInfo->window.ekey) {
        break;
      }

      assert(w.ekey > pBlockInfo->window.ekey);
      if (w.skey <= pBlockInfo->window.ekey && w.skey > pBlockInfo->window.skey) {
        return true;
      }
    }
  } else {
L
Liu Jicong 已提交
1009
    //    getAlignQueryTimeWindow(pQueryAttr, pBlockInfo->window.ekey, sk, ek, &w);
1010 1011 1012 1013 1014 1015
    assert(w.skey <= pBlockInfo->window.ekey);

    if (w.skey > pBlockInfo->window.skey) {
      return true;
    }

L
Liu Jicong 已提交
1016 1017
    while (1) {
      //      getNextTimeWindow(pQueryAttr, &w);
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
      if (w.ekey < pBlockInfo->window.skey) {
        break;
      }

      assert(w.skey < pBlockInfo->window.skey);
      if (w.ekey < pBlockInfo->window.ekey && w.ekey >= pBlockInfo->window.skey) {
        return true;
      }
    }
  }

  return false;
}
1031
#endif
1032 1033

static uint32_t doFilterByBlockTimeWindow(STableScanInfo* pTableScanInfo, SSDataBlock* pBlock) {
H
Haojun Liao 已提交
1034
  SqlFunctionCtx* pCtx = pTableScanInfo->pCtx;
1035
  uint32_t        status = BLK_DATA_NOT_LOAD;
1036 1037 1038 1039

  int32_t numOfOutput = pTableScanInfo->numOfOutput;
  for (int32_t i = 0; i < numOfOutput; ++i) {
    int32_t functionId = pCtx[i].functionId;
H
Haojun Liao 已提交
1040
    int32_t colId = pTableScanInfo->pExpr[i].base.pParam[0].pCol->colId;
1041 1042 1043

    // group by + first/last should not apply the first/last block filter
    if (functionId < 0) {
1044
      status |= BLK_DATA_DATA_LOAD;
1045 1046
      return status;
    } else {
L
Liu Jicong 已提交
1047
      //      status |= aAggs[functionId].dataReqFunc(&pTableScanInfo->pCtx[i], &pBlock->info.window, colId);
1048
      //      if ((status & BLK_DATA_DATA_LOAD) == BLK_DATA_DATA_LOAD) {
L
Liu Jicong 已提交
1049 1050
      //        return status;
      //      }
1051 1052 1053 1054 1055 1056
    }
  }

  return status;
}

L
Liu Jicong 已提交
1057 1058
int32_t loadDataBlockOnDemand(SExecTaskInfo* pTaskInfo, STableScanInfo* pTableScanInfo, SSDataBlock* pBlock,
                              uint32_t* status) {
1059
  *status = BLK_DATA_NOT_LOAD;
1060

H
Haojun Liao 已提交
1061
  pBlock->pDataBlock = NULL;
L
Liu Jicong 已提交
1062
  pBlock->pBlockAgg = NULL;
H
Haojun Liao 已提交
1063

L
Liu Jicong 已提交
1064 1065
  //  int64_t groupId = pRuntimeEnv->current->groupIndex;
  //  bool    ascQuery = QUERY_IS_ASC_QUERY(pQueryAttr);
1066

H
Haojun Liao 已提交
1067
  STaskCostInfo* pCost = &pTaskInfo->cost;
1068

1069 1070
//  pCost->totalBlocks += 1;
//  pCost->totalRows += pBlock->info.rows;
H
Haojun Liao 已提交
1071
#if 0
1072 1073 1074
  // Calculate all time windows that are overlapping or contain current data block.
  // If current data block is contained by all possible time window, do not load current data block.
  if (/*pQueryAttr->pFilters || */pQueryAttr->groupbyColumn || pQueryAttr->sw.gap > 0 ||
H
Haojun Liao 已提交
1075
      (QUERY_IS_INTERVAL_QUERY(pQueryAttr) && overlapWithTimeWindow(pTaskInfo, &pBlock->info))) {
1076
    (*status) = BLK_DATA_DATA_LOAD;
1077 1078 1079
  }

  // check if this data block is required to load
1080
  if ((*status) != BLK_DATA_DATA_LOAD) {
1081 1082 1083 1084 1085 1086 1087
    bool needFilter = true;

    // the pCtx[i] result is belonged to previous time window since the outputBuf has not been set yet,
    // the filter result may be incorrect. So in case of interval query, we need to set the correct time output buffer
    if (QUERY_IS_INTERVAL_QUERY(pQueryAttr)) {
      SResultRow* pResult = NULL;

H
Haojun Liao 已提交
1088
      bool  masterScan = IS_MAIN_SCAN(pRuntimeEnv);
1089 1090 1091 1092 1093 1094
      TSKEY k = ascQuery? pBlock->info.window.skey : pBlock->info.window.ekey;

      STimeWindow win = getActiveTimeWindow(pTableScanInfo->pResultRowInfo, k, pQueryAttr);
      if (pQueryAttr->pointInterpQuery) {
        needFilter = chkWindowOutputBufByKey(pRuntimeEnv, pTableScanInfo->pResultRowInfo, &win, masterScan, &pResult, groupId,
                                    pTableScanInfo->pCtx, pTableScanInfo->numOfOutput,
1095
                                    pTableScanInfo->rowEntryInfoOffset);
1096 1097 1098
      } else {
        if (setResultOutputBufByKey(pRuntimeEnv, pTableScanInfo->pResultRowInfo, pBlock->info.uid, &win, masterScan, &pResult, groupId,
                                    pTableScanInfo->pCtx, pTableScanInfo->numOfOutput,
1099
                                    pTableScanInfo->rowEntryInfoOffset) != TSDB_CODE_SUCCESS) {
1100 1101 1102 1103 1104
          longjmp(pRuntimeEnv->env, TSDB_CODE_QRY_OUT_OF_MEMORY);
        }
      }
    } else if (pQueryAttr->stableQuery && (!pQueryAttr->tsCompQuery) && (!pQueryAttr->diffQuery)) { // stable aggregate, not interval aggregate or normal column aggregate
      doSetTableGroupOutputBuf(pRuntimeEnv, pTableScanInfo->pResultRowInfo, pTableScanInfo->pCtx,
1105
                               pTableScanInfo->rowEntryInfoOffset, pTableScanInfo->numOfOutput,
1106 1107 1108 1109 1110 1111
                               pRuntimeEnv->current->groupIndex);
    }

    if (needFilter) {
      (*status) = doFilterByBlockTimeWindow(pTableScanInfo, pBlock);
    } else {
1112
      (*status) = BLK_DATA_DATA_LOAD;
1113 1114 1115 1116
    }
  }

  SDataBlockInfo* pBlockInfo = &pBlock->info;
H
Haojun Liao 已提交
1117
//  *status = updateBlockLoadStatus(pRuntimeEnv->pQueryAttr, *status);
1118

1119
  if ((*status) == BLK_DATA_NOT_LOAD || (*status) == BLK_DATA_FILTEROUT) {
1120 1121
    //qDebug("QInfo:0x%"PRIx64" data block discard, brange:%" PRId64 "-%" PRId64 ", rows:%d", pQInfo->qId, pBlockInfo->window.skey,
//           pBlockInfo->window.ekey, pBlockInfo->rows);
1122
    pCost->skipBlocks += 1;
1123
  } else if ((*status) == BLK_DATA_SMA_LOAD) {
1124 1125
    // this function never returns error?
    pCost->loadBlockStatis += 1;
1126
//    tsdbRetrieveDataBlockStatisInfo(pTableScanInfo->pTsdbReadHandle, &pBlock->pBlockAgg);
1127 1128

    if (pBlock->pBlockAgg == NULL) {  // data block statistics does not exist, load data block
1129
//      pBlock->pDataBlock = tsdbRetrieveDataBlock(pTableScanInfo->pTsdbReadHandle, NULL);
1130 1131 1132
      pCost->totalCheckedRows += pBlock->info.rows;
    }
  } else {
1133
    assert((*status) == BLK_DATA_DATA_LOAD);
1134 1135 1136

    // load the data block statistics to perform further filter
    pCost->loadBlockStatis += 1;
1137
//    tsdbRetrieveDataBlockStatisInfo(pTableScanInfo->pTsdbReadHandle, &pBlock->pBlockAgg);
1138 1139 1140 1141 1142 1143

    if (pQueryAttr->topBotQuery && pBlock->pBlockAgg != NULL) {
      { // set previous window
        if (QUERY_IS_INTERVAL_QUERY(pQueryAttr)) {
          SResultRow* pResult = NULL;

H
Haojun Liao 已提交
1144
          bool  masterScan = IS_MAIN_SCAN(pRuntimeEnv);
1145 1146 1147 1148 1149
          TSKEY k = ascQuery? pBlock->info.window.skey : pBlock->info.window.ekey;

          STimeWindow win = getActiveTimeWindow(pTableScanInfo->pResultRowInfo, k, pQueryAttr);
          if (setResultOutputBufByKey(pRuntimeEnv, pTableScanInfo->pResultRowInfo, pBlock->info.uid, &win, masterScan, &pResult, groupId,
                                      pTableScanInfo->pCtx, pTableScanInfo->numOfOutput,
1150
                                      pTableScanInfo->rowEntryInfoOffset) != TSDB_CODE_SUCCESS) {
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
            longjmp(pRuntimeEnv->env, TSDB_CODE_QRY_OUT_OF_MEMORY);
          }
        }
      }
      bool load = false;
      for (int32_t i = 0; i < pQueryAttr->numOfOutput; ++i) {
        int32_t functionId = pTableScanInfo->pCtx[i].functionId;
        if (functionId == FUNCTION_TOP || functionId == FUNCTION_BOTTOM) {
//          load = topbot_datablock_filter(&pTableScanInfo->pCtx[i], (char*)&(pBlock->pBlockAgg[i].min),
//                                         (char*)&(pBlock->pBlockAgg[i].max));
          if (!load) { // current block has been discard due to filter applied
1162
            pCost->skipBlocks += 1;
1163 1164
            //qDebug("QInfo:0x%"PRIx64" data block discard, brange:%" PRId64 "-%" PRId64 ", rows:%d", pQInfo->qId,
//                   pBlockInfo->window.skey, pBlockInfo->window.ekey, pBlockInfo->rows);
1165
            (*status) = BLK_DATA_FILTEROUT;
1166 1167 1168 1169 1170 1171 1172 1173
            return TSDB_CODE_SUCCESS;
          }
        }
      }
    }

    // current block has been discard due to filter applied
//    if (!doFilterByBlockStatistics(pRuntimeEnv, pBlock->pBlockAgg, pTableScanInfo->pCtx, pBlockInfo->rows)) {
1174
//      pCost->skipBlocks += 1;
1175 1176
//      qDebug("QInfo:0x%"PRIx64" data block discard, brange:%" PRId64 "-%" PRId64 ", rows:%d", pQInfo->qId, pBlockInfo->window.skey,
//             pBlockInfo->window.ekey, pBlockInfo->rows);
1177
//      (*status) = BLK_DATA_FILTEROUT;
1178 1179 1180 1181 1182
//      return TSDB_CODE_SUCCESS;
//    }

    pCost->totalCheckedRows += pBlockInfo->rows;
    pCost->loadBlocks += 1;
1183
//    pBlock->pDataBlock = tsdbRetrieveDataBlock(pTableScanInfo->pTsdbReadHandle, NULL);
1184 1185 1186 1187 1188
//    if (pBlock->pDataBlock == NULL) {
//      return terrno;
//    }

//    if (pQueryAttr->pFilters != NULL) {
1189
//      filterSetColFieldData(pQueryAttr->pFilters, taosArrayGetSize(pBlock->pDataBlock), pBlock->pDataBlock);
1190
//    }
1191

1192 1193 1194 1195
//    if (pQueryAttr->pFilters != NULL || pRuntimeEnv->pTsBuf != NULL) {
//      filterColRowsInDataBlock(pRuntimeEnv, pBlock, ascQuery);
//    }
  }
H
Haojun Liao 已提交
1196
#endif
1197 1198 1199
  return TSDB_CODE_SUCCESS;
}

L
Liu Jicong 已提交
1200
static void updateTableQueryInfoForReverseScan(STableQueryInfo* pTableQueryInfo) {
1201 1202 1203 1204
  if (pTableQueryInfo == NULL) {
    return;
  }

wafwerar's avatar
wafwerar 已提交
1205
  //  TSWAP(pTableQueryInfo->win.skey, pTableQueryInfo->win.ekey);
L
Liu Jicong 已提交
1206
  //  pTableQueryInfo->lastKey = pTableQueryInfo->win.skey;
1207

L
Liu Jicong 已提交
1208 1209
  //  SWITCH_ORDER(pTableQueryInfo->cur.order);
  //  pTableQueryInfo->cur.vgroupIndex = -1;
1210 1211

  // set the index to be the end slot of result rows array
dengyihao's avatar
dengyihao 已提交
1212 1213 1214 1215 1216 1217
  //  SResultRowInfo* pResultRowInfo = &pTableQueryInfo->resInfo;
  //  if (pResultRowInfo->size > 0) {
  //    pResultRowInfo->curPos = pResultRowInfo->size - 1;
  //  } else {
  //    pResultRowInfo->curPos = -1;
  //  }
1218 1219
}

H
Haojun Liao 已提交
1220
void initResultRow(SResultRow* pResultRow) {
X
Xiaoyu Wang 已提交
1221
  //  pResultRow->pEntryInfo = (struct SResultRowEntryInfo*)((char*)pResultRow + sizeof(SResultRow));
1222 1223 1224 1225 1226
}

/*
 * The start of each column SResultRowEntryInfo is denote by RowCellInfoOffset.
 * Note that in case of top/bottom query, the whole multiple rows of result is treated as only one row of results.
H
Haojun Liao 已提交
1227 1228 1229
 * +------------+-----------------result column 1------------+------------------result column 2-----------+
 * | SResultRow | SResultRowEntryInfo | intermediate buffer1 | SResultRowEntryInfo | intermediate buffer 2|
 * +------------+--------------------------------------------+--------------------------------------------+
1230 1231
 *           offset[0]                                  offset[1]                                   offset[2]
 */
1232
// TODO refactor: some function move away
L
Liu Jicong 已提交
1233 1234 1235
void setFunctionResultOutput(SOperatorInfo* pOperator, SOptrBasicInfo* pInfo, SAggSupporter* pSup, int32_t stage,
                             int32_t numOfExprs) {
  SExecTaskInfo*  pTaskInfo = pOperator->pTaskInfo;
1236 1237
  SqlFunctionCtx* pCtx = pOperator->exprSupp.pCtx;
  int32_t*        rowEntryInfoOffset = pOperator->exprSupp.rowEntryInfoOffset;
H
Haojun Liao 已提交
1238

H
Haojun Liao 已提交
1239
  SResultRowInfo* pResultRowInfo = &pInfo->resultRowInfo;
1240
  initResultRowInfo(pResultRowInfo);
H
Haojun Liao 已提交
1241

L
Liu Jicong 已提交
1242 1243
  int64_t     tid = 0;
  int64_t     groupId = 0;
1244 1245
  SResultRow* pRow = doSetResultOutBufByKey(pSup->pResultBuf, pResultRowInfo, (char*)&tid, sizeof(tid), true, groupId,
                                            pTaskInfo, false, pSup);
H
Haojun Liao 已提交
1246

1247
  for (int32_t i = 0; i < numOfExprs; ++i) {
1248
    struct SResultRowEntryInfo* pEntry = getResultEntryInfo(pRow, i, rowEntryInfoOffset);
H
Haojun Liao 已提交
1249 1250
    cleanupResultRowEntry(pEntry);

L
Liu Jicong 已提交
1251
    pCtx[i].resultInfo = pEntry;
1252
    pCtx[i].scanFlag = stage;
H
Haojun Liao 已提交
1253 1254
  }

1255
  initCtxOutputBuffer(pCtx, numOfExprs);
H
Haojun Liao 已提交
1256 1257
}

H
Haojun Liao 已提交
1258
void initCtxOutputBuffer(SqlFunctionCtx* pCtx, int32_t size) {
1259 1260
  for (int32_t j = 0; j < size; ++j) {
    struct SResultRowEntryInfo* pResInfo = GET_RES_INFO(&pCtx[j]);
dengyihao's avatar
dengyihao 已提交
1261 1262
    if (isRowEntryInitialized(pResInfo) || fmIsPseudoColumnFunc(pCtx[j].functionId) || pCtx[j].functionId == -1 ||
        fmIsScalarFunc(pCtx[j].functionId)) {
1263 1264 1265
      continue;
    }

H
Haojun Liao 已提交
1266
    pCtx[j].fpSet.init(&pCtx[j], pCtx[j].resultInfo);
1267 1268 1269
  }
}

L
Liu Jicong 已提交
1270
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1271
  if (status == TASK_NOT_COMPLETED) {
H
Haojun Liao 已提交
1272
    pTaskInfo->status = status;
1273 1274
  } else {
    // QUERY_NOT_COMPLETED is not compatible with any other status, so clear its position first
1275
    CLEAR_QUERY_STATUS(pTaskInfo, TASK_NOT_COMPLETED);
H
Haojun Liao 已提交
1276
    pTaskInfo->status |= status;
1277 1278 1279
  }
}

L
Liu Jicong 已提交
1280
void destroyTableQueryInfoImpl(STableQueryInfo* pTableQueryInfo) {
1281 1282 1283 1284
  if (pTableQueryInfo == NULL) {
    return;
  }

L
Liu Jicong 已提交
1285
  //  taosVariantDestroy(&pTableQueryInfo->tag);
dengyihao's avatar
dengyihao 已提交
1286
  //  cleanupResultRowInfo(&pTableQueryInfo->resInfo);
1287 1288
}

1289
void setResultRowInitCtx(SResultRow* pResult, SqlFunctionCtx* pCtx, int32_t numOfOutput, int32_t* rowEntryInfoOffset) {
1290
  for (int32_t i = 0; i < numOfOutput; ++i) {
1291
    pCtx[i].resultInfo = getResultEntryInfo(pResult, i, rowEntryInfoOffset);
1292 1293 1294 1295 1296

    struct SResultRowEntryInfo* pResInfo = pCtx[i].resultInfo;
    if (isRowEntryCompleted(pResInfo) && isRowEntryInitialized(pResInfo)) {
      continue;
    }
1297 1298 1299 1300 1301

    if (fmIsWindowPseudoColumnFunc(pCtx[i].functionId)) {
      continue;
    }

1302 1303 1304 1305 1306 1307
    if (!pResInfo->initialized) {
      if (pCtx[i].functionId != -1) {
        pCtx[i].fpSet.init(&pCtx[i], pResInfo);
      } else {
        pResInfo->initialized = true;
      }
1308 1309 1310 1311
    }
  }
}

H
Haojun Liao 已提交
1312
static void extractQualifiedTupleByFilterResult(SSDataBlock* pBlock, const int8_t* rowRes, bool keep);
1313

1314
void doFilter(const SNode* pFilterNode, SSDataBlock* pBlock) {
1315 1316 1317 1318 1319
  if (pFilterNode == NULL) {
    return;
  }

  SFilterInfo* filter = NULL;
H
Haojun Liao 已提交
1320

H
Haojun Liao 已提交
1321
  // todo move to the initialization function
H
Haojun Liao 已提交
1322
  int32_t code = filterInitFromNode((SNode*)pFilterNode, &filter, 0);
1323

1324
  size_t             numOfCols = taosArrayGetSize(pBlock->pDataBlock);
1325
  SFilterColumnParam param1 = {.numOfCols = numOfCols, .pDataBlock = pBlock->pDataBlock};
1326 1327 1328
  code = filterSetDataFromSlotId(filter, &param1);

  int8_t* rowRes = NULL;
1329

1330
  // todo the keep seems never to be True??
1331
  bool keep = filterExecute(filter, pBlock, &rowRes, NULL, param1.numOfCols);
D
dapan1121 已提交
1332
  filterFreeInfo(filter);
1333

H
Haojun Liao 已提交
1334
  extractQualifiedTupleByFilterResult(pBlock, rowRes, keep);
1335
  blockDataUpdateTsWindow(pBlock, 0);
1336 1337
}

H
Haojun Liao 已提交
1338
void extractQualifiedTupleByFilterResult(SSDataBlock* pBlock, const int8_t* rowRes, bool keep) {
1339 1340 1341 1342 1343
  if (keep) {
    return;
  }

  if (rowRes != NULL) {
L
Liu Jicong 已提交
1344
    int32_t      totalRows = pBlock->info.rows;
1345
    SSDataBlock* px = createOneDataBlock(pBlock, true);
1346

1347 1348
    size_t numOfCols = taosArrayGetSize(pBlock->pDataBlock);
    for (int32_t i = 0; i < numOfCols; ++i) {
1349 1350
      SColumnInfoData* pSrc = taosArrayGet(px->pDataBlock, i);
      SColumnInfoData* pDst = taosArrayGet(pBlock->pDataBlock, i);
1351
      // it is a reserved column for scalar function, and no data in this column yet.
1352
      if (pDst->pData == NULL) {
1353 1354 1355
        continue;
      }

1356 1357
      colInfoDataCleanup(pDst, pBlock->info.rows);

1358
      int32_t numOfRows = 0;
1359
      for (int32_t j = 0; j < totalRows; ++j) {
D
dapan1121 已提交
1360 1361 1362
        if (rowRes[j] == 0) {
          continue;
        }
1363

D
dapan1121 已提交
1364
        if (colDataIsNull_s(pSrc, j)) {
1365
          colDataAppendNULL(pDst, numOfRows);
D
dapan1121 已提交
1366
        } else {
1367
          colDataAppend(pDst, numOfRows, colDataGetData(pSrc, j), false);
D
dapan1121 已提交
1368
        }
1369
        numOfRows += 1;
H
Haojun Liao 已提交
1370
      }
1371

1372 1373 1374 1375 1376
      if (pBlock->info.rows == totalRows) {
        pBlock->info.rows = numOfRows;
      } else {
        ASSERT(pBlock->info.rows == numOfRows);
      }
1377
    }
1378

dengyihao's avatar
dengyihao 已提交
1379
    blockDataDestroy(px);  // fix memory leak
1380 1381 1382
  } else {
    // do nothing
    pBlock->info.rows = 0;
1383 1384 1385
  }
}

L
Liu Jicong 已提交
1386 1387
void doSetTableGroupOutputBuf(SOperatorInfo* pOperator, SAggOperatorInfo* pAggInfo, int32_t numOfOutput,
                              uint64_t groupId) {
1388
  // for simple group by query without interval, all the tables belong to one group result.
L
Liu Jicong 已提交
1389
  SExecTaskInfo*  pTaskInfo = pOperator->pTaskInfo;
1390
  SResultRowInfo* pResultRowInfo = &pAggInfo->binfo.resultRowInfo;
1391 1392
  SqlFunctionCtx* pCtx = pOperator->exprSupp.pCtx;
  int32_t*        rowEntryInfoOffset = pOperator->exprSupp.rowEntryInfoOffset;
1393

1394
  SResultRow* pResultRow = doSetResultOutBufByKey(pAggInfo->aggSup.pResultBuf, pResultRowInfo, (char*)&groupId,
L
Liu Jicong 已提交
1395
                                                  sizeof(groupId), true, groupId, pTaskInfo, false, &pAggInfo->aggSup);
L
Liu Jicong 已提交
1396
  assert(pResultRow != NULL);
1397 1398 1399 1400 1401 1402

  /*
   * not assign result buffer yet, add new result buffer
   * all group belong to one result set, and each group result has different group id so set the id to be one
   */
  if (pResultRow->pageId == -1) {
dengyihao's avatar
dengyihao 已提交
1403 1404
    int32_t ret =
        addNewWindowResultBuf(pResultRow, pAggInfo->aggSup.pResultBuf, groupId, pAggInfo->binfo.pRes->info.rowSize);
1405 1406 1407 1408 1409
    if (ret != TSDB_CODE_SUCCESS) {
      return;
    }
  }

1410
  setResultRowInitCtx(pResultRow, pCtx, numOfOutput, rowEntryInfoOffset);
1411 1412
}

1413
void setExecutionContext(SOperatorInfo* pOperator, int32_t numOfOutput, uint64_t groupId, SAggOperatorInfo* pAggInfo) {
H
Haojun Liao 已提交
1414
  if (pAggInfo->groupId != INT32_MIN && pAggInfo->groupId == groupId) {
1415 1416 1417
    return;
  }

1418
  doSetTableGroupOutputBuf(pOperator, pAggInfo, numOfOutput, groupId);
1419 1420

  // record the current active group id
H
Haojun Liao 已提交
1421
  pAggInfo->groupId = groupId;
1422 1423
}

1424 1425
static void doUpdateNumOfRows(SResultRow* pRow, int32_t numOfExprs, const int32_t* rowCellOffset) {
  for (int32_t j = 0; j < numOfExprs; ++j) {
1426
    struct SResultRowEntryInfo* pResInfo = getResultEntryInfo(pRow, j, rowCellOffset);
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
    if (!isRowEntryInitialized(pResInfo)) {
      continue;
    }

    if (pRow->numOfRows < pResInfo->numOfRes) {
      pRow->numOfRows = pResInfo->numOfRes;
    }
  }
}

1437
int32_t finalizeResultRowIntoResultDataBlock(SDiskbasedBuf* pBuf, SResultRowPosition* resultRowPosition,
S
shenglian zhou 已提交
1438 1439 1440
                                             SqlFunctionCtx* pCtx, SExprInfo* pExprInfo, int32_t numOfExprs,
                                             const int32_t* rowCellOffset, SSDataBlock* pBlock,
                                             SExecTaskInfo* pTaskInfo) {
1441 1442 1443 1444 1445 1446 1447 1448 1449
  SFilePage*  page = getBufPage(pBuf, resultRowPosition->pageId);
  SResultRow* pRow = (SResultRow*)((char*)page + resultRowPosition->offset);

  doUpdateNumOfRows(pRow, numOfExprs, rowCellOffset);
  if (pRow->numOfRows == 0) {
    releaseBufPage(pBuf, page);
    return 0;
  }

1450 1451 1452 1453 1454 1455 1456
  while (pBlock->info.rows + pRow->numOfRows > pBlock->info.capacity) {
    int32_t code = blockDataEnsureCapacity(pBlock, pBlock->info.capacity * 1.25);
    if (TAOS_FAILED(code)) {
      releaseBufPage(pBuf, page);
      qError("%s ensure result data capacity failed, code %s", GET_TASKID(pTaskInfo), tstrerror(code));
      longjmp(pTaskInfo->env, code);
    }
1457 1458 1459 1460 1461
  }

  for (int32_t j = 0; j < numOfExprs; ++j) {
    int32_t slotId = pExprInfo[j].base.resSchema.slotId;

1462
    pCtx[j].resultInfo = getResultEntryInfo(pRow, j, rowCellOffset);
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
    if (pCtx[j].fpSet.finalize) {
      int32_t code = pCtx[j].fpSet.finalize(&pCtx[j], pBlock);
      if (TAOS_FAILED(code)) {
        qError("%s build result data block error, code %s", GET_TASKID(pTaskInfo), tstrerror(code));
        longjmp(pTaskInfo->env, code);
      }
    } else if (strcmp(pCtx[j].pExpr->pExpr->_function.functionName, "_select_value") == 0) {
      // do nothing, todo refactor
    } else {
      // expand the result into multiple rows. E.g., _wstartts, top(k, 20)
      // the _wstartts needs to copy to 20 following rows, since the results of top-k expands to 20 different rows.
      SColumnInfoData* pColInfoData = taosArrayGet(pBlock->pDataBlock, slotId);
      char*            in = GET_ROWCELL_INTERBUF(pCtx[j].resultInfo);
      for (int32_t k = 0; k < pRow->numOfRows; ++k) {
        colDataAppend(pColInfoData, pBlock->info.rows + k, in, pCtx[j].resultInfo->isNullRes);
      }
    }
  }

  releaseBufPage(pBuf, page);
1483
  pBlock->info.rows += pRow->numOfRows;
1484 1485 1486 1487

  return 0;
}

X
Xiaoyu Wang 已提交
1488 1489 1490
int32_t doCopyToSDataBlock(SExecTaskInfo* pTaskInfo, SSDataBlock* pBlock, SExprInfo* pExprInfo, SDiskbasedBuf* pBuf,
                           SGroupResInfo* pGroupResInfo, const int32_t* rowCellOffset, SqlFunctionCtx* pCtx,
                           int32_t numOfExprs) {
1491
  int32_t numOfRows = getNumOfTotalRes(pGroupResInfo);
1492
  int32_t start = pGroupResInfo->index;
1493

1494
  for (int32_t i = start; i < numOfRows; i += 1) {
L
Liu Jicong 已提交
1495 1496
    SResKeyPos* pPos = taosArrayGetP(pGroupResInfo->pRows, i);
    SFilePage*  page = getBufPage(pBuf, pPos->pos.pageId);
1497

1498
    SResultRow* pRow = (SResultRow*)((char*)page + pPos->pos.offset);
1499 1500

    doUpdateNumOfRows(pRow, numOfExprs, rowCellOffset);
1501 1502
    if (pRow->numOfRows == 0) {
      pGroupResInfo->index += 1;
1503
      releaseBufPage(pBuf, page);
1504 1505 1506
      continue;
    }

1507 1508 1509 1510 1511
    if (pBlock->info.groupId == 0) {
      pBlock->info.groupId = pPos->groupId;
    } else {
      // current value belongs to different group, it can't be packed into one datablock
      if (pBlock->info.groupId != pPos->groupId) {
1512
        releaseBufPage(pBuf, page);
1513 1514 1515 1516
        break;
      }
    }

1517
    if (pBlock->info.rows + pRow->numOfRows > pBlock->info.capacity) {
1518
      releaseBufPage(pBuf, page);
1519 1520 1521 1522 1523
      break;
    }

    pGroupResInfo->index += 1;

1524
    for (int32_t j = 0; j < numOfExprs; ++j) {
1525 1526
      int32_t slotId = pExprInfo[j].base.resSchema.slotId;

1527
      pCtx[j].resultInfo = getResultEntryInfo(pRow, j, rowCellOffset);
1528
      if (pCtx[j].fpSet.finalize) {
1529
        int32_t code = pCtx[j].fpSet.finalize(&pCtx[j], pBlock);
1530
        if (TAOS_FAILED(code)) {
1531 1532
          qError("%s build result data block error, code %s", GET_TASKID(pTaskInfo), tstrerror(code));
          longjmp(pTaskInfo->env, code);
1533
        }
1534 1535
      } else if (strcmp(pCtx[j].pExpr->pExpr->_function.functionName, "_select_value") == 0) {
        // do nothing, todo refactor
1536
      } else {
1537 1538
        // expand the result into multiple rows. E.g., _wstartts, top(k, 20)
        // the _wstartts needs to copy to 20 following rows, since the results of top-k expands to 20 different rows.
X
Xiaoyu Wang 已提交
1539 1540
        SColumnInfoData* pColInfoData = taosArrayGet(pBlock->pDataBlock, slotId);
        char*            in = GET_ROWCELL_INTERBUF(pCtx[j].resultInfo);
1541
        if (pCtx[j].increase) {
L
Liu Jicong 已提交
1542
          int64_t ts = *(int64_t*)in;
1543
          for (int32_t k = 0; k < pRow->numOfRows; ++k) {
L
Liu Jicong 已提交
1544
            colDataAppend(pColInfoData, pBlock->info.rows + k, (const char*)&ts, pCtx[j].resultInfo->isNullRes);
1545 1546 1547 1548 1549 1550
            ts++;
          }
        } else {
          for (int32_t k = 0; k < pRow->numOfRows; ++k) {
            colDataAppend(pColInfoData, pBlock->info.rows + k, in, pCtx[j].resultInfo->isNullRes);
          }
X
Xiaoyu Wang 已提交
1551
        }
1552
      }
1553 1554
    }

1555
    releaseBufPage(pBuf, page);
1556 1557
    pBlock->info.rows += pRow->numOfRows;
    if (pBlock->info.rows >= pBlock->info.capacity) {  // output buffer is full
1558 1559 1560 1561
      break;
    }
  }

X
Xiaoyu Wang 已提交
1562 1563
  qDebug("%s result generated, rows:%d, groupId:%" PRIu64, GET_TASKID(pTaskInfo), pBlock->info.rows,
         pBlock->info.groupId);
1564
  blockDataUpdateTsWindow(pBlock, 0);
1565 1566 1567
  return 0;
}

X
Xiaoyu Wang 已提交
1568 1569
void doBuildResultDatablock(SOperatorInfo* pOperator, SOptrBasicInfo* pbInfo, SGroupResInfo* pGroupResInfo,
                            SDiskbasedBuf* pBuf) {
1570 1571
  SExprInfo*     pExprInfo = pOperator->exprSupp.pExprInfo;
  int32_t        numOfExprs = pOperator->exprSupp.numOfExprs;
1572 1573
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;

1574
  int32_t*        rowCellOffset = pOperator->exprSupp.rowEntryInfoOffset;
X
Xiaoyu Wang 已提交
1575
  SSDataBlock*    pBlock = pbInfo->pRes;
1576
  SqlFunctionCtx* pCtx = pOperator->exprSupp.pCtx;
1577

1578
  blockDataCleanup(pBlock);
1579
  if (!hasDataInGroupInfo(pGroupResInfo)) {
1580 1581 1582
    return;
  }

1583 1584
  // clear the existed group id
  pBlock->info.groupId = 0;
1585
  doCopyToSDataBlock(pTaskInfo, pBlock, pExprInfo, pBuf, pGroupResInfo, rowCellOffset, pCtx, numOfExprs);
1586 1587
}

L
Liu Jicong 已提交
1588
static void updateNumOfRowsInResultRows(SqlFunctionCtx* pCtx, int32_t numOfOutput, SResultRowInfo* pResultRowInfo,
1589
                                        int32_t* rowEntryInfoOffset) {
1590
  // update the number of result for each, only update the number of rows for the corresponding window result.
L
Liu Jicong 已提交
1591 1592 1593
  //  if (QUERY_IS_INTERVAL_QUERY(pQueryAttr)) {
  //    return;
  //  }
H
Haojun Liao 已提交
1594
#if 0
1595
  for (int32_t i = 0; i < pResultRowInfo->size; ++i) {
L
Liu Jicong 已提交
1596
    SResultRow* pResult = pResultRowInfo->pResult[i];
1597 1598 1599 1600 1601 1602 1603

    for (int32_t j = 0; j < numOfOutput; ++j) {
      int32_t functionId = pCtx[j].functionId;
      if (functionId == FUNCTION_TS || functionId == FUNCTION_TAG || functionId == FUNCTION_TAGPRJ) {
        continue;
      }

1604
      SResultRowEntryInfo* pCell = getResultEntryInfo(pResult, j, rowEntryInfoOffset);
1605
      pResult->numOfRows = (uint16_t)(TMAX(pResult->numOfRows, pCell->numOfRes));
1606 1607
    }
  }
H
Haojun Liao 已提交
1608
#endif
1609 1610
}

L
Liu Jicong 已提交
1611
static int32_t compressQueryColData(SColumnInfoData* pColRes, int32_t numOfRows, char* data, int8_t compressed) {
1612 1613
  int32_t colSize = pColRes->info.bytes * numOfRows;
  return (*(tDataTypes[pColRes->info.type].compFunc))(pColRes->pData, colSize, numOfRows, data,
L
Liu Jicong 已提交
1614
                                                      colSize + COMP_OVERFLOW_BYTES, compressed, NULL, 0);
1615 1616
}

1617 1618 1619
int32_t doFillTimeIntervalGapsInResults(struct SFillInfo* pFillInfo, SSDataBlock* pBlock, int32_t capacity) {
  int32_t numOfRows = (int32_t)taosFillResultDataBlock(pFillInfo, pBlock, capacity - pBlock->info.rows);
  pBlock->info.rows += numOfRows;
1620

1621
  return pBlock->info.rows;
1622 1623
}

L
Liu Jicong 已提交
1624 1625
void queryCostStatis(SExecTaskInfo* pTaskInfo) {
  STaskCostInfo* pSummary = &pTaskInfo->cost;
1626

L
Liu Jicong 已提交
1627 1628 1629
  //  uint64_t hashSize = taosHashGetMemSize(pQInfo->runtimeEnv.pResultRowHashTable);
  //  hashSize += taosHashGetMemSize(pRuntimeEnv->tableqinfoGroupInfo.map);
  //  pSummary->hashSize = hashSize;
1630 1631 1632 1633

  // add the merge time
  pSummary->elapsedTime += pSummary->firstStageMergeTime;

L
Liu Jicong 已提交
1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644
  //  SResultRowPool* p = pTaskInfo->pool;
  //  if (p != NULL) {
  //    pSummary->winInfoSize = getResultRowPoolMemSize(p);
  //    pSummary->numOfTimeWindows = getNumOfAllocatedResultRows(p);
  //  } else {
  //    pSummary->winInfoSize = 0;
  //    pSummary->numOfTimeWindows = 0;
  //  }
  //
  //  calculateOperatorProfResults(pQInfo);

1645 1646
  SFileBlockLoadRecorder* pRecorder = pSummary->pRecoder;
  if (pSummary->pRecoder != NULL) {
X
Xiaoyu Wang 已提交
1647 1648
    qDebug("%s :cost summary: elapsed time:%" PRId64 " us, first merge:%" PRId64
           " us, total blocks:%d, "
1649 1650 1651 1652
           "load block statis:%d, load data block:%d, total rows:%" PRId64 ", check rows:%" PRId64,
           GET_TASKID(pTaskInfo), pSummary->elapsedTime, pSummary->firstStageMergeTime, pRecorder->totalBlocks,
           pRecorder->loadBlockStatis, pRecorder->loadBlocks, pRecorder->totalRows, pRecorder->totalCheckedRows);
  }
L
Liu Jicong 已提交
1653 1654 1655
  // qDebug("QInfo:0x%"PRIx64" :cost summary: winResPool size:%.2f Kb, numOfWin:%"PRId64", tableInfoSize:%.2f Kb,
  // hashTable:%.2f Kb", pQInfo->qId, pSummary->winInfoSize/1024.0,
  //      pSummary->numOfTimeWindows, pSummary->tableInfoSize/1024.0, pSummary->hashSize/1024.0);
1656 1657
}

L
Liu Jicong 已提交
1658 1659 1660
// static void updateOffsetVal(STaskRuntimeEnv *pRuntimeEnv, SDataBlockInfo *pBlockInfo) {
//   STaskAttr *pQueryAttr = pRuntimeEnv->pQueryAttr;
//   STableQueryInfo* pTableQueryInfo = pRuntimeEnv->current;
1661
//
L
Liu Jicong 已提交
1662
//   int32_t step = GET_FORWARD_DIRECTION_FACTOR(pQueryAttr->order.order);
1663
//
L
Liu Jicong 已提交
1664 1665 1666 1667
//   if (pQueryAttr->limit.offset == pBlockInfo->rows) {  // current block will ignore completed
//     pTableQueryInfo->lastKey = QUERY_IS_ASC_QUERY(pQueryAttr) ? pBlockInfo->window.ekey + step :
//     pBlockInfo->window.skey + step; pQueryAttr->limit.offset = 0; return;
//   }
1668
//
L
Liu Jicong 已提交
1669 1670 1671 1672 1673
//   if (QUERY_IS_ASC_QUERY(pQueryAttr)) {
//     pQueryAttr->pos = (int32_t)pQueryAttr->limit.offset;
//   } else {
//     pQueryAttr->pos = pBlockInfo->rows - (int32_t)pQueryAttr->limit.offset - 1;
//   }
1674
//
L
Liu Jicong 已提交
1675
//   assert(pQueryAttr->pos >= 0 && pQueryAttr->pos <= pBlockInfo->rows - 1);
1676
//
L
Liu Jicong 已提交
1677 1678
//   SArray *         pDataBlock = tsdbRetrieveDataBlock(pRuntimeEnv->pTsdbReadHandle, NULL);
//   SColumnInfoData *pColInfoData = taosArrayGet(pDataBlock, 0);
1679
//
L
Liu Jicong 已提交
1680 1681
//   // update the pQueryAttr->limit.offset value, and pQueryAttr->pos value
//   TSKEY *keys = (TSKEY *) pColInfoData->pData;
1682
//
L
Liu Jicong 已提交
1683 1684 1685
//   // update the offset value
//   pTableQueryInfo->lastKey = keys[pQueryAttr->pos];
//   pQueryAttr->limit.offset = 0;
1686
//
L
Liu Jicong 已提交
1687
//   int32_t numOfRes = tableApplyFunctionsOnBlock(pRuntimeEnv, pBlockInfo, NULL, binarySearchForKey, pDataBlock);
1688
//
L
Liu Jicong 已提交
1689 1690 1691 1692
//   //qDebug("QInfo:0x%"PRIx64" check data block, brange:%" PRId64 "-%" PRId64 ", numBlocksOfStep:%d, numOfRes:%d,
//   lastKey:%"PRId64, GET_TASKID(pRuntimeEnv),
//          pBlockInfo->window.skey, pBlockInfo->window.ekey, pBlockInfo->rows, numOfRes, pQuery->current->lastKey);
// }
1693

L
Liu Jicong 已提交
1694 1695
// void skipBlocks(STaskRuntimeEnv *pRuntimeEnv) {
//   STaskAttr *pQueryAttr = pRuntimeEnv->pQueryAttr;
1696
//
L
Liu Jicong 已提交
1697 1698 1699
//   if (pQueryAttr->limit.offset <= 0 || pQueryAttr->numOfFilterCols > 0) {
//     return;
//   }
1700
//
L
Liu Jicong 已提交
1701 1702
//   pQueryAttr->pos = 0;
//   int32_t step = GET_FORWARD_DIRECTION_FACTOR(pQueryAttr->order.order);
1703
//
L
Liu Jicong 已提交
1704 1705
//   STableQueryInfo* pTableQueryInfo = pRuntimeEnv->current;
//   TsdbQueryHandleT pTsdbReadHandle = pRuntimeEnv->pTsdbReadHandle;
1706
//
L
Liu Jicong 已提交
1707 1708 1709 1710 1711
//   SDataBlockInfo blockInfo = SDATA_BLOCK_INITIALIZER;
//   while (tsdbNextDataBlock(pTsdbReadHandle)) {
//     if (isTaskKilled(pRuntimeEnv->qinfo)) {
//       longjmp(pRuntimeEnv->env, TSDB_CODE_TSC_QUERY_CANCELLED);
//     }
1712
//
L
Liu Jicong 已提交
1713
//     tsdbRetrieveDataBlockInfo(pTsdbReadHandle, &blockInfo);
1714
//
L
Liu Jicong 已提交
1715 1716 1717 1718
//     if (pQueryAttr->limit.offset > blockInfo.rows) {
//       pQueryAttr->limit.offset -= blockInfo.rows;
//       pTableQueryInfo->lastKey = (QUERY_IS_ASC_QUERY(pQueryAttr)) ? blockInfo.window.ekey : blockInfo.window.skey;
//       pTableQueryInfo->lastKey += step;
1719
//
L
Liu Jicong 已提交
1720 1721 1722 1723 1724 1725 1726
//       //qDebug("QInfo:0x%"PRIx64" skip rows:%d, offset:%" PRId64, GET_TASKID(pRuntimeEnv), blockInfo.rows,
//              pQuery->limit.offset);
//     } else {  // find the appropriated start position in current block
//       updateOffsetVal(pRuntimeEnv, &blockInfo);
//       break;
//     }
//   }
1727
//
L
Liu Jicong 已提交
1728 1729 1730 1731 1732 1733 1734 1735 1736
//   if (terrno != TSDB_CODE_SUCCESS) {
//     longjmp(pRuntimeEnv->env, terrno);
//   }
// }

// static TSKEY doSkipIntervalProcess(STaskRuntimeEnv* pRuntimeEnv, STimeWindow* win, SDataBlockInfo* pBlockInfo,
// STableQueryInfo* pTableQueryInfo) {
//   STaskAttr *pQueryAttr = pRuntimeEnv->pQueryAttr;
//   SResultRowInfo *pWindowResInfo = &pRuntimeEnv->resultRowInfo;
1737
//
L
Liu Jicong 已提交
1738 1739 1740
//   assert(pQueryAttr->limit.offset == 0);
//   STimeWindow tw = *win;
//   getNextTimeWindow(pQueryAttr, &tw);
1741
//
L
Liu Jicong 已提交
1742 1743
//   if ((tw.skey <= pBlockInfo->window.ekey && QUERY_IS_ASC_QUERY(pQueryAttr)) ||
//       (tw.ekey >= pBlockInfo->window.skey && !QUERY_IS_ASC_QUERY(pQueryAttr))) {
1744
//
L
Liu Jicong 已提交
1745 1746 1747 1748
//     // load the data block and check data remaining in current data block
//     // TODO optimize performance
//     SArray *         pDataBlock = tsdbRetrieveDataBlock(pRuntimeEnv->pTsdbReadHandle, NULL);
//     SColumnInfoData *pColInfoData = taosArrayGet(pDataBlock, 0);
1749
//
L
Liu Jicong 已提交
1750 1751 1752 1753
//     tw = *win;
//     int32_t startPos =
//         getNextQualifiedWindow(pQueryAttr, &tw, pBlockInfo, pColInfoData->pData, binarySearchForKey, -1);
//     assert(startPos >= 0);
1754
//
L
Liu Jicong 已提交
1755 1756
//     // set the abort info
//     pQueryAttr->pos = startPos;
1757
//
L
Liu Jicong 已提交
1758 1759 1760 1761
//     // reset the query start timestamp
//     pTableQueryInfo->win.skey = ((TSKEY *)pColInfoData->pData)[startPos];
//     pQueryAttr->window.skey = pTableQueryInfo->win.skey;
//     TSKEY key = pTableQueryInfo->win.skey;
1762
//
L
Liu Jicong 已提交
1763 1764
//     pWindowResInfo->prevSKey = tw.skey;
//     int32_t index = pRuntimeEnv->resultRowInfo.curIndex;
1765
//
L
Liu Jicong 已提交
1766 1767
//     int32_t numOfRes = tableApplyFunctionsOnBlock(pRuntimeEnv, pBlockInfo, NULL, binarySearchForKey, pDataBlock);
//     pRuntimeEnv->resultRowInfo.curIndex = index;  // restore the window index
1768
//
L
Liu Jicong 已提交
1769 1770 1771 1772
//     //qDebug("QInfo:0x%"PRIx64" check data block, brange:%" PRId64 "-%" PRId64 ", numOfRows:%d, numOfRes:%d,
//     lastKey:%" PRId64,
//            GET_TASKID(pRuntimeEnv), pBlockInfo->window.skey, pBlockInfo->window.ekey, pBlockInfo->rows, numOfRes,
//            pQueryAttr->current->lastKey);
1773
//
L
Liu Jicong 已提交
1774 1775 1776 1777 1778
//     return key;
//   } else {  // do nothing
//     pQueryAttr->window.skey      = tw.skey;
//     pWindowResInfo->prevSKey = tw.skey;
//     pTableQueryInfo->lastKey = tw.skey;
1779
//
L
Liu Jicong 已提交
1780 1781
//     return tw.skey;
//   }
1782
//
L
Liu Jicong 已提交
1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
//   return true;
// }

// static bool skipTimeInterval(STaskRuntimeEnv *pRuntimeEnv, TSKEY* start) {
//   STaskAttr *pQueryAttr = pRuntimeEnv->pQueryAttr;
//   if (QUERY_IS_ASC_QUERY(pQueryAttr)) {
//     assert(*start <= pRuntimeEnv->current->lastKey);
//   } else {
//     assert(*start >= pRuntimeEnv->current->lastKey);
//   }
1793
//
L
Liu Jicong 已提交
1794 1795 1796 1797 1798
//   // if queried with value filter, do NOT forward query start position
//   if (pQueryAttr->limit.offset <= 0 || pQueryAttr->numOfFilterCols > 0 || pRuntimeEnv->pTsBuf != NULL ||
//   pRuntimeEnv->pFillInfo != NULL) {
//     return true;
//   }
1799
//
L
Liu Jicong 已提交
1800 1801 1802 1803 1804 1805 1806
//   /*
//    * 1. for interval without interpolation query we forward pQueryAttr->interval.interval at a time for
//    *    pQueryAttr->limit.offset times. Since hole exists, pQueryAttr->interval.interval*pQueryAttr->limit.offset
//    value is
//    *    not valid. otherwise, we only forward pQueryAttr->limit.offset number of points
//    */
//   assert(pRuntimeEnv->resultRowInfo.prevSKey == TSKEY_INITIAL_VAL);
1807
//
L
Liu Jicong 已提交
1808 1809
//   STimeWindow w = TSWINDOW_INITIALIZER;
//   bool ascQuery = QUERY_IS_ASC_QUERY(pQueryAttr);
1810
//
L
Liu Jicong 已提交
1811 1812
//   SResultRowInfo *pWindowResInfo = &pRuntimeEnv->resultRowInfo;
//   STableQueryInfo *pTableQueryInfo = pRuntimeEnv->current;
1813
//
L
Liu Jicong 已提交
1814 1815 1816
//   SDataBlockInfo blockInfo = SDATA_BLOCK_INITIALIZER;
//   while (tsdbNextDataBlock(pRuntimeEnv->pTsdbReadHandle)) {
//     tsdbRetrieveDataBlockInfo(pRuntimeEnv->pTsdbReadHandle, &blockInfo);
1817
//
L
Liu Jicong 已提交
1818 1819 1820 1821 1822 1823 1824 1825 1826
//     if (QUERY_IS_ASC_QUERY(pQueryAttr)) {
//       if (pWindowResInfo->prevSKey == TSKEY_INITIAL_VAL) {
//         getAlignQueryTimeWindow(pQueryAttr, blockInfo.window.skey, blockInfo.window.skey, pQueryAttr->window.ekey,
//         &w); pWindowResInfo->prevSKey = w.skey;
//       }
//     } else {
//       getAlignQueryTimeWindow(pQueryAttr, blockInfo.window.ekey, pQueryAttr->window.ekey, blockInfo.window.ekey, &w);
//       pWindowResInfo->prevSKey = w.skey;
//     }
1827
//
L
Liu Jicong 已提交
1828 1829
//     // the first time window
//     STimeWindow win = getActiveTimeWindow(pWindowResInfo, pWindowResInfo->prevSKey, pQueryAttr);
1830
//
L
Liu Jicong 已提交
1831 1832
//     while (pQueryAttr->limit.offset > 0) {
//       STimeWindow tw = win;
1833
//
L
Liu Jicong 已提交
1834 1835 1836
//       if ((win.ekey <= blockInfo.window.ekey && ascQuery) || (win.ekey >= blockInfo.window.skey && !ascQuery)) {
//         pQueryAttr->limit.offset -= 1;
//         pWindowResInfo->prevSKey = win.skey;
1837
//
L
Liu Jicong 已提交
1838 1839 1840 1841 1842 1843
//         // current time window is aligned with blockInfo.window.ekey
//         // restart it from next data block by set prevSKey to be TSKEY_INITIAL_VAL;
//         if ((win.ekey == blockInfo.window.ekey && ascQuery) || (win.ekey == blockInfo.window.skey && !ascQuery)) {
//           pWindowResInfo->prevSKey = TSKEY_INITIAL_VAL;
//         }
//       }
1844
//
L
Liu Jicong 已提交
1845 1846 1847 1848
//       if (pQueryAttr->limit.offset == 0) {
//         *start = doSkipIntervalProcess(pRuntimeEnv, &win, &blockInfo, pTableQueryInfo);
//         return true;
//       }
1849
//
L
Liu Jicong 已提交
1850 1851
//       // current window does not ended in current data block, try next data block
//       getNextTimeWindow(pQueryAttr, &tw);
1852
//
L
Liu Jicong 已提交
1853 1854 1855 1856 1857 1858 1859 1860 1861
//       /*
//        * If the next time window still starts from current data block,
//        * load the primary timestamp column first, and then find the start position for the next queried time window.
//        * Note that only the primary timestamp column is required.
//        * TODO: Optimize for this cases. All data blocks are not needed to be loaded, only if the first actually
//        required
//        * time window resides in current data block.
//        */
//       if ((tw.skey <= blockInfo.window.ekey && ascQuery) || (tw.ekey >= blockInfo.window.skey && !ascQuery)) {
1862
//
L
Liu Jicong 已提交
1863 1864
//         SArray *pDataBlock = tsdbRetrieveDataBlock(pRuntimeEnv->pTsdbReadHandle, NULL);
//         SColumnInfoData *pColInfoData = taosArrayGet(pDataBlock, 0);
1865
//
L
Liu Jicong 已提交
1866 1867 1868
//         if ((win.ekey > blockInfo.window.ekey && ascQuery) || (win.ekey < blockInfo.window.skey && !ascQuery)) {
//           pQueryAttr->limit.offset -= 1;
//         }
1869
//
L
Liu Jicong 已提交
1870 1871 1872 1873 1874 1875 1876 1877
//         if (pQueryAttr->limit.offset == 0) {
//           *start = doSkipIntervalProcess(pRuntimeEnv, &win, &blockInfo, pTableQueryInfo);
//           return true;
//         } else {
//           tw = win;
//           int32_t startPos =
//               getNextQualifiedWindow(pQueryAttr, &tw, &blockInfo, pColInfoData->pData, binarySearchForKey, -1);
//           assert(startPos >= 0);
1878
//
L
Liu Jicong 已提交
1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889
//           // set the abort info
//           pQueryAttr->pos = startPos;
//           pTableQueryInfo->lastKey = ((TSKEY *)pColInfoData->pData)[startPos];
//           pWindowResInfo->prevSKey = tw.skey;
//           win = tw;
//         }
//       } else {
//         break;  // offset is not 0, and next time window begins or ends in the next block.
//       }
//     }
//   }
1890
//
L
Liu Jicong 已提交
1891 1892 1893 1894
//   // check for error
//   if (terrno != TSDB_CODE_SUCCESS) {
//     longjmp(pRuntimeEnv->env, terrno);
//   }
1895
//
L
Liu Jicong 已提交
1896 1897
//   return true;
// }
1898

1899
int32_t appendDownstream(SOperatorInfo* p, SOperatorInfo** pDownstream, int32_t num) {
H
Haojun Liao 已提交
1900
  if (p->pDownstream == NULL) {
H
Haojun Liao 已提交
1901
    assert(p->numOfDownstream == 0);
1902 1903
  }

wafwerar's avatar
wafwerar 已提交
1904
  p->pDownstream = taosMemoryCalloc(1, num * POINTER_BYTES);
1905 1906 1907 1908 1909 1910 1911
  if (p->pDownstream == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  memcpy(p->pDownstream, pDownstream, num * POINTER_BYTES);
  p->numOfDownstream = num;
  return TSDB_CODE_SUCCESS;
1912 1913
}

wmmhello's avatar
wmmhello 已提交
1914
static void doDestroyTableList(STableListInfo* pTableqinfoList);
1915

1916
static void doTableQueryInfoTimeWindowCheck(SExecTaskInfo* pTaskInfo, STableQueryInfo* pTableQueryInfo, int32_t order) {
H
Haojun Liao 已提交
1917 1918
#if 0
    if (order == TSDB_ORDER_ASC) {
1919 1920
    assert(
        (pTableQueryInfo->win.skey <= pTableQueryInfo->win.ekey) &&
H
Haojun Liao 已提交
1921 1922
        (pTableQueryInfo->lastKey >= pTaskInfo->window.skey) &&
        (pTableQueryInfo->win.skey >= pTaskInfo->window.skey && pTableQueryInfo->win.ekey <= pTaskInfo->window.ekey));
1923 1924 1925
  } else {
    assert(
        (pTableQueryInfo->win.skey >= pTableQueryInfo->win.ekey) &&
H
Haojun Liao 已提交
1926 1927
        (pTableQueryInfo->lastKey <= pTaskInfo->window.skey) &&
        (pTableQueryInfo->win.skey <= pTaskInfo->window.skey && pTableQueryInfo->win.ekey >= pTaskInfo->window.ekey));
1928
  }
H
Haojun Liao 已提交
1929
#endif
1930 1931
}

1932 1933 1934 1935
typedef struct SFetchRspHandleWrapper {
  uint32_t exchangeId;
  int32_t  sourceIndex;
} SFetchRspHandleWrapper;
1936

1937
int32_t loadRemoteDataCallback(void* param, const SDataBuf* pMsg, int32_t code) {
X
Xiaoyu Wang 已提交
1938
  SFetchRspHandleWrapper* pWrapper = (SFetchRspHandleWrapper*)param;
1939 1940 1941 1942 1943 1944 1945

  SExchangeInfo* pExchangeInfo = taosAcquireRef(exchangeObjRefPool, pWrapper->exchangeId);
  if (pExchangeInfo == NULL) {
    qWarn("failed to acquire exchange operator, since it may have been released");
    return TSDB_CODE_SUCCESS;
  }

X
Xiaoyu Wang 已提交
1946
  int32_t          index = pWrapper->sourceIndex;
1947
  SSourceDataInfo* pSourceDataInfo = taosArrayGet(pExchangeInfo->pSourceDataInfo, index);
1948

H
Haojun Liao 已提交
1949 1950
  if (code == TSDB_CODE_SUCCESS) {
    pSourceDataInfo->pRsp = pMsg->pData;
1951

H
Haojun Liao 已提交
1952 1953
    SRetrieveTableRsp* pRsp = pSourceDataInfo->pRsp;
    pRsp->numOfRows = htonl(pRsp->numOfRows);
dengyihao's avatar
dengyihao 已提交
1954
    pRsp->compLen = htonl(pRsp->compLen);
1955
    pRsp->numOfCols = htonl(pRsp->numOfCols);
dengyihao's avatar
dengyihao 已提交
1956
    pRsp->useconds = htobe64(pRsp->useconds);
1957

1958
    ASSERT(pRsp != NULL);
1959
    qDebug("%s fetch rsp received, index:%d, rows:%d", pSourceDataInfo->taskId, index, pRsp->numOfRows);
H
Haojun Liao 已提交
1960 1961 1962
  } else {
    pSourceDataInfo->code = code;
  }
H
Haojun Liao 已提交
1963

H
Haojun Liao 已提交
1964
  pSourceDataInfo->status = EX_SOURCE_DATA_READY;
1965 1966 1967 1968 1969

  tsem_post(&pExchangeInfo->ready);
  taosReleaseRef(exchangeObjRefPool, pWrapper->exchangeId);

  taosMemoryFree(pWrapper);
wmmhello's avatar
wmmhello 已提交
1970
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
1971 1972 1973 1974
}

static void destroySendMsgInfo(SMsgSendInfo* pMsgBody) {
  assert(pMsgBody != NULL);
wafwerar's avatar
wafwerar 已提交
1975 1976
  taosMemoryFreeClear(pMsgBody->msgInfo.pData);
  taosMemoryFreeClear(pMsgBody);
H
Haojun Liao 已提交
1977 1978
}

S
Shengliang Guan 已提交
1979
void qProcessFetchRsp(void* parent, SRpcMsg* pMsg, SEpSet* pEpSet) {
S
Shengliang Guan 已提交
1980 1981
  SMsgSendInfo* pSendInfo = (SMsgSendInfo*)pMsg->info.ahandle;
  assert(pMsg->info.ahandle != NULL);
H
Haojun Liao 已提交
1982 1983 1984 1985

  SDataBuf buf = {.len = pMsg->contLen, .pData = NULL};

  if (pMsg->contLen > 0) {
wafwerar's avatar
wafwerar 已提交
1986
    buf.pData = taosMemoryCalloc(1, pMsg->contLen);
H
Haojun Liao 已提交
1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997
    if (buf.pData == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      pMsg->code = TSDB_CODE_OUT_OF_MEMORY;
    } else {
      memcpy(buf.pData, pMsg->pCont, pMsg->contLen);
    }
  }

  pSendInfo->fp(pSendInfo->param, &buf, pMsg->code);
  rpcFreeCont(pMsg->pCont);
  destroySendMsgInfo(pSendInfo);
1998 1999
}

L
Liu Jicong 已提交
2000
static int32_t doSendFetchDataRequest(SExchangeInfo* pExchangeInfo, SExecTaskInfo* pTaskInfo, int32_t sourceIndex) {
2001
  size_t totalSources = taosArrayGetSize(pExchangeInfo->pSources);
2002

wafwerar's avatar
wafwerar 已提交
2003
  SResFetchReq* pMsg = taosMemoryCalloc(1, sizeof(SResFetchReq));
2004 2005 2006 2007
  if (NULL == pMsg) {
    pTaskInfo->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
    return pTaskInfo->code;
  }
2008

L
Liu Jicong 已提交
2009 2010
  SDownstreamSourceNode* pSource = taosArrayGet(pExchangeInfo->pSources, sourceIndex);
  SSourceDataInfo*       pDataInfo = taosArrayGet(pExchangeInfo->pSourceDataInfo, sourceIndex);
2011

2012 2013
  ASSERT(pDataInfo->status == EX_SOURCE_DATA_NOT_READY);

L
Liu Jicong 已提交
2014 2015
  qDebug("%s build fetch msg and send to vgId:%d, ep:%s, taskId:0x%" PRIx64 ", %d/%" PRIzu, GET_TASKID(pTaskInfo),
         pSource->addr.nodeId, pSource->addr.epSet.eps[0].fqdn, pSource->taskId, sourceIndex, totalSources);
2016 2017 2018 2019 2020 2021 2022

  pMsg->header.vgId = htonl(pSource->addr.nodeId);
  pMsg->sId = htobe64(pSource->schedId);
  pMsg->taskId = htobe64(pSource->taskId);
  pMsg->queryId = htobe64(pTaskInfo->id.queryId);

  // send the fetch remote task result reques
wafwerar's avatar
wafwerar 已提交
2023
  SMsgSendInfo* pMsgSendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
2024
  if (NULL == pMsgSendInfo) {
wafwerar's avatar
wafwerar 已提交
2025
    taosMemoryFreeClear(pMsg);
2026 2027 2028
    qError("%s prepare message %d failed", GET_TASKID(pTaskInfo), (int32_t)sizeof(SMsgSendInfo));
    pTaskInfo->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
    return pTaskInfo->code;
H
Haojun Liao 已提交
2029 2030
  }

2031
  SFetchRspHandleWrapper* pWrapper = taosMemoryCalloc(1, sizeof(SFetchRspHandleWrapper));
X
Xiaoyu Wang 已提交
2032
  pWrapper->exchangeId = pExchangeInfo->self;
2033 2034 2035
  pWrapper->sourceIndex = sourceIndex;

  pMsgSendInfo->param = pWrapper;
2036 2037 2038 2039
  pMsgSendInfo->msgInfo.pData = pMsg;
  pMsgSendInfo->msgInfo.len = sizeof(SResFetchReq);
  pMsgSendInfo->msgType = TDMT_VND_FETCH;
  pMsgSendInfo->fp = loadRemoteDataCallback;
2040

2041
  int64_t transporterId = 0;
L
Liu Jicong 已提交
2042
  int32_t code = asyncSendMsgToServer(pExchangeInfo->pTransporter, &pSource->addr.epSet, &transporterId, pMsgSendInfo);
2043 2044 2045
  return TSDB_CODE_SUCCESS;
}

2046
int32_t extractDataBlockFromFetchRsp(SSDataBlock* pRes, SLoadRemoteDataInfo* pLoadInfo, int32_t numOfRows, char* pData,
L
Liu Jicong 已提交
2047 2048
                                     int32_t compLen, int32_t numOfOutput, int64_t startTs, uint64_t* total,
                                     SArray* pColList) {
H
Haojun Liao 已提交
2049
  if (pColList == NULL) {  // data from other sources
2050
    blockDataCleanup(pRes);
2051
    //    blockDataEnsureCapacity(pRes, numOfRows);
2052
    blockCompressDecode(pRes, numOfOutput, numOfRows, pData);
H
Haojun Liao 已提交
2053
  } else {  // extract data according to pColList
2054
    ASSERT(numOfOutput == taosArrayGetSize(pColList));
2055 2056 2057 2058 2059
    char* pStart = pData;

    int32_t numOfCols = htonl(*(int32_t*)pStart);
    pStart += sizeof(int32_t);

2060
    // todo refactor:extract method
2061
    SSysTableSchema* pSchema = (SSysTableSchema*)pStart;
dengyihao's avatar
dengyihao 已提交
2062
    for (int32_t i = 0; i < numOfCols; ++i) {
2063 2064 2065 2066 2067 2068 2069
      SSysTableSchema* p = (SSysTableSchema*)pStart;

      p->colId = htons(p->colId);
      p->bytes = htonl(p->bytes);
      pStart += sizeof(SSysTableSchema);
    }

2070
    SSDataBlock* pBlock = createDataBlock();
dengyihao's avatar
dengyihao 已提交
2071
    for (int32_t i = 0; i < numOfCols; ++i) {
2072 2073
      SColumnInfoData idata = createColumnInfoData(pSchema[i].type, pSchema[i].bytes, pSchema[i].colId);
      blockDataAppendColInfo(pBlock, &idata);
2074 2075
    }

2076
    blockCompressDecode(pBlock, numOfCols, numOfRows, pStart);
2077 2078
    blockDataEnsureCapacity(pRes, numOfRows);

H
Haojun Liao 已提交
2079
    // data from mnode
2080
    pRes->info.rows = numOfRows;
2081 2082
    relocateColumnData(pRes, pColList, pBlock->pDataBlock, false);
    blockDataDestroy(pBlock);
2083
  }
2084

2085 2086
  // todo move this to time window aggregator, since the primary timestamp may not be known by exchange operator.
  blockDataUpdateTsWindow(pRes, 0);
2087

2088
  int64_t el = taosGetTimestampUs() - startTs;
2089

H
Haojun Liao 已提交
2090 2091
  pLoadInfo->totalRows += numOfRows;
  pLoadInfo->totalSize += compLen;
2092

H
Haojun Liao 已提交
2093 2094 2095
  if (total != NULL) {
    *total += numOfRows;
  }
2096

H
Haojun Liao 已提交
2097
  pLoadInfo->totalElapsed += el;
2098 2099
  return TSDB_CODE_SUCCESS;
}
2100

L
Liu Jicong 已提交
2101 2102
static void* setAllSourcesCompleted(SOperatorInfo* pOperator, int64_t startTs) {
  SExchangeInfo* pExchangeInfo = pOperator->info;
2103
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
H
Haojun Liao 已提交
2104

2105
  int64_t              el = taosGetTimestampUs() - startTs;
H
Haojun Liao 已提交
2106
  SLoadRemoteDataInfo* pLoadInfo = &pExchangeInfo->loadInfo;
2107

H
Haojun Liao 已提交
2108
  pLoadInfo->totalElapsed += el;
H
Haojun Liao 已提交
2109

2110
  size_t totalSources = taosArrayGetSize(pExchangeInfo->pSources);
L
Liu Jicong 已提交
2111 2112 2113
  qDebug("%s all %" PRIzu " sources are exhausted, total rows: %" PRIu64 " bytes:%" PRIu64 ", elapsed:%.2f ms",
         GET_TASKID(pTaskInfo), totalSources, pLoadInfo->totalRows, pLoadInfo->totalSize,
         pLoadInfo->totalElapsed / 1000.0);
2114 2115 2116 2117 2118

  doSetOperatorCompleted(pOperator);
  return NULL;
}

L
Liu Jicong 已提交
2119 2120
static SSDataBlock* concurrentlyLoadRemoteDataImpl(SOperatorInfo* pOperator, SExchangeInfo* pExchangeInfo,
                                                   SExecTaskInfo* pTaskInfo) {
2121 2122 2123 2124 2125 2126 2127 2128
  int32_t code = 0;
  int64_t startTs = taosGetTimestampUs();
  size_t  totalSources = taosArrayGetSize(pExchangeInfo->pSources);

  while (1) {
    int32_t completed = 0;
    for (int32_t i = 0; i < totalSources; ++i) {
      SSourceDataInfo* pDataInfo = taosArrayGet(pExchangeInfo->pSourceDataInfo, i);
2129
      if (pDataInfo->status == EX_SOURCE_DATA_EXHAUSTED) {
2130
        completed += 1;
H
Haojun Liao 已提交
2131 2132
        continue;
      }
2133

2134
      if (pDataInfo->status != EX_SOURCE_DATA_READY) {
2135 2136 2137
        continue;
      }

2138 2139 2140 2141 2142
      if (pDataInfo->code != TSDB_CODE_SUCCESS) {
        code = pDataInfo->code;
        goto _error;
      }

L
Liu Jicong 已提交
2143
      SRetrieveTableRsp*     pRsp = pDataInfo->pRsp;
X
Xiaoyu Wang 已提交
2144
      SDownstreamSourceNode* pSource = taosArrayGet(pExchangeInfo->pSources, i);
2145

L
Liu Jicong 已提交
2146
      SSDataBlock*         pRes = pExchangeInfo->pResult;
H
Haojun Liao 已提交
2147
      SLoadRemoteDataInfo* pLoadInfo = &pExchangeInfo->loadInfo;
2148
      if (pRsp->numOfRows == 0) {
2149
        qDebug("%s vgId:%d, taskId:0x%" PRIx64 " index:%d completed, rowsOfSource:%" PRIu64 ", totalRows:%" PRIu64
X
Xiaoyu Wang 已提交
2150
               ", completed:%d try next %d/%" PRIzu,
2151 2152
               GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, i, pDataInfo->totalRows,
               pExchangeInfo->loadInfo.totalRows, completed + 1, i + 1, totalSources);
2153
        pDataInfo->status = EX_SOURCE_DATA_EXHAUSTED;
2154
        completed += 1;
D
dapan1121 已提交
2155
        taosMemoryFreeClear(pDataInfo->pRsp);
2156 2157
        continue;
      }
H
Haojun Liao 已提交
2158

H
Haojun Liao 已提交
2159
      SRetrieveTableRsp* pTableRsp = pDataInfo->pRsp;
L
Liu Jicong 已提交
2160 2161 2162
      code =
          extractDataBlockFromFetchRsp(pExchangeInfo->pResult, pLoadInfo, pTableRsp->numOfRows, pTableRsp->data,
                                       pTableRsp->compLen, pTableRsp->numOfCols, startTs, &pDataInfo->totalRows, NULL);
2163
      if (code != 0) {
2164
        taosMemoryFreeClear(pDataInfo->pRsp);
2165 2166 2167
        goto _error;
      }

2168
      if (pRsp->completed == 1) {
X
Xiaoyu Wang 已提交
2169 2170 2171
        qDebug("%s fetch msg rsp from vgId:%d, taskId:0x%" PRIx64
               " index:%d completed, numOfRows:%d, rowsOfSource:%" PRIu64 ", totalRows:%" PRIu64 ", totalBytes:%" PRIu64
               ", completed:%d try next %d/%" PRIzu,
2172 2173 2174
               GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, i, pRes->info.rows, pDataInfo->totalRows,
               pLoadInfo->totalRows, pLoadInfo->totalSize, completed + 1, i + 1, totalSources);
        completed += 1;
2175
        pDataInfo->status = EX_SOURCE_DATA_EXHAUSTED;
2176
      } else {
dengyihao's avatar
dengyihao 已提交
2177 2178
        qDebug("%s fetch msg rsp from vgId:%d, taskId:0x%" PRIx64 " numOfRows:%d, totalRows:%" PRIu64
               ", totalBytes:%" PRIu64,
H
Haojun Liao 已提交
2179 2180
               GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, pRes->info.rows, pLoadInfo->totalRows,
               pLoadInfo->totalSize);
2181 2182
      }

2183 2184
      taosMemoryFreeClear(pDataInfo->pRsp);

2185 2186
      if (pDataInfo->status != EX_SOURCE_DATA_EXHAUSTED) {
        pDataInfo->status = EX_SOURCE_DATA_NOT_READY;
2187 2188
        code = doSendFetchDataRequest(pExchangeInfo, pTaskInfo, i);
        if (code != TSDB_CODE_SUCCESS) {
2189
          taosMemoryFreeClear(pDataInfo->pRsp);
2190 2191 2192 2193 2194 2195 2196
          goto _error;
        }
      }

      return pExchangeInfo->pResult;
    }

2197
    if (completed == totalSources) {
2198 2199 2200 2201 2202 2203 2204 2205 2206
      return setAllSourcesCompleted(pOperator, startTs);
    }
  }

_error:
  pTaskInfo->code = code;
  return NULL;
}

L
Liu Jicong 已提交
2207 2208 2209
static int32_t prepareConcurrentlyLoad(SOperatorInfo* pOperator) {
  SExchangeInfo* pExchangeInfo = pOperator->info;
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
2210

L
Liu Jicong 已提交
2211
  size_t  totalSources = taosArrayGetSize(pExchangeInfo->pSources);
2212 2213 2214
  int64_t startTs = taosGetTimestampUs();

  // Asynchronously send all fetch requests to all sources.
L
Liu Jicong 已提交
2215
  for (int32_t i = 0; i < totalSources; ++i) {
2216 2217
    int32_t code = doSendFetchDataRequest(pExchangeInfo, pTaskInfo, i);
    if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
2218 2219
      pTaskInfo->code = code;
      return code;
2220 2221 2222 2223
    }
  }

  int64_t endTs = taosGetTimestampUs();
2224
  qDebug("%s send all fetch requests to %" PRIzu " sources completed, elapsed:%.2fms", GET_TASKID(pTaskInfo),
X
Xiaoyu Wang 已提交
2225
         totalSources, (endTs - startTs) / 1000.0);
2226

2227
  pOperator->status = OP_RES_TO_RETURN;
H
Haojun Liao 已提交
2228
  pOperator->cost.openCost = taosGetTimestampUs() - startTs;
2229

2230
  tsem_wait(&pExchangeInfo->ready);
H
Haojun Liao 已提交
2231
  return TSDB_CODE_SUCCESS;
2232 2233
}

L
Liu Jicong 已提交
2234 2235 2236
static SSDataBlock* seqLoadRemoteData(SOperatorInfo* pOperator) {
  SExchangeInfo* pExchangeInfo = pOperator->info;
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
2237

L
Liu Jicong 已提交
2238
  size_t  totalSources = taosArrayGetSize(pExchangeInfo->pSources);
2239
  int64_t startTs = taosGetTimestampUs();
2240

L
Liu Jicong 已提交
2241
  while (1) {
2242 2243
    if (pExchangeInfo->current >= totalSources) {
      return setAllSourcesCompleted(pOperator, startTs);
2244
    }
2245

2246 2247 2248
    doSendFetchDataRequest(pExchangeInfo, pTaskInfo, pExchangeInfo->current);
    tsem_wait(&pExchangeInfo->ready);

dengyihao's avatar
dengyihao 已提交
2249
    SSourceDataInfo*       pDataInfo = taosArrayGet(pExchangeInfo->pSourceDataInfo, pExchangeInfo->current);
X
Xiaoyu Wang 已提交
2250
    SDownstreamSourceNode* pSource = taosArrayGet(pExchangeInfo->pSources, pExchangeInfo->current);
2251

H
Haojun Liao 已提交
2252
    if (pDataInfo->code != TSDB_CODE_SUCCESS) {
dengyihao's avatar
dengyihao 已提交
2253 2254
      qError("%s vgId:%d, taskID:0x%" PRIx64 " error happens, code:%s", GET_TASKID(pTaskInfo), pSource->addr.nodeId,
             pSource->taskId, tstrerror(pDataInfo->code));
H
Haojun Liao 已提交
2255 2256 2257 2258
      pOperator->pTaskInfo->code = pDataInfo->code;
      return NULL;
    }

L
Liu Jicong 已提交
2259
    SRetrieveTableRsp*   pRsp = pDataInfo->pRsp;
H
Haojun Liao 已提交
2260
    SLoadRemoteDataInfo* pLoadInfo = &pExchangeInfo->loadInfo;
2261
    if (pRsp->numOfRows == 0) {
dengyihao's avatar
dengyihao 已提交
2262 2263
      qDebug("%s vgId:%d, taskID:0x%" PRIx64 " %d of total completed, rowsOfSource:%" PRIu64 ", totalRows:%" PRIu64
             " try next",
2264
             GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, pExchangeInfo->current + 1,
H
Haojun Liao 已提交
2265
             pDataInfo->totalRows, pLoadInfo->totalRows);
H
Haojun Liao 已提交
2266

2267
      pDataInfo->status = EX_SOURCE_DATA_EXHAUSTED;
2268
      pExchangeInfo->current += 1;
D
dapan1121 已提交
2269
      taosMemoryFreeClear(pDataInfo->pRsp);
2270 2271
      continue;
    }
H
Haojun Liao 已提交
2272

L
Liu Jicong 已提交
2273
    SSDataBlock*       pRes = pExchangeInfo->pResult;
H
Haojun Liao 已提交
2274
    SRetrieveTableRsp* pTableRsp = pDataInfo->pRsp;
L
Liu Jicong 已提交
2275
    int32_t            code =
2276
        extractDataBlockFromFetchRsp(pExchangeInfo->pResult, pLoadInfo, pTableRsp->numOfRows, pTableRsp->data,
L
Liu Jicong 已提交
2277
                                     pTableRsp->compLen, pTableRsp->numOfCols, startTs, &pDataInfo->totalRows, NULL);
2278 2279

    if (pRsp->completed == 1) {
H
Haojun Liao 已提交
2280
      qDebug("%s fetch msg rsp from vgId:%d, taskId:0x%" PRIx64 " numOfRows:%d, rowsOfSource:%" PRIu64
L
Liu Jicong 已提交
2281 2282 2283
             ", totalRows:%" PRIu64 ", totalBytes:%" PRIu64 " try next %d/%" PRIzu,
             GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, pRes->info.rows, pDataInfo->totalRows,
             pLoadInfo->totalRows, pLoadInfo->totalSize, pExchangeInfo->current + 1, totalSources);
2284

2285
      pDataInfo->status = EX_SOURCE_DATA_EXHAUSTED;
2286 2287
      pExchangeInfo->current += 1;
    } else {
L
Liu Jicong 已提交
2288 2289 2290 2291
      qDebug("%s fetch msg rsp from vgId:%d, taskId:0x%" PRIx64 " numOfRows:%d, totalRows:%" PRIu64
             ", totalBytes:%" PRIu64,
             GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, pRes->info.rows, pLoadInfo->totalRows,
             pLoadInfo->totalSize);
2292 2293
    }

2294
    pOperator->resultInfo.totalRows += pRes->info.rows;
2295
    taosMemoryFreeClear(pDataInfo->pRsp);
2296 2297
    return pExchangeInfo->pResult;
  }
2298 2299
}

L
Liu Jicong 已提交
2300
static int32_t prepareLoadRemoteData(SOperatorInfo* pOperator) {
2301
  if (OPTR_IS_OPENED(pOperator)) {
H
Haojun Liao 已提交
2302 2303 2304
    return TSDB_CODE_SUCCESS;
  }

2305 2306
  int64_t st = taosGetTimestampUs();

L
Liu Jicong 已提交
2307
  SExchangeInfo* pExchangeInfo = pOperator->info;
2308
  if (!pExchangeInfo->seqLoadData) {
H
Haojun Liao 已提交
2309 2310 2311 2312 2313 2314
    int32_t code = prepareConcurrentlyLoad(pOperator);
    if (code != TSDB_CODE_SUCCESS) {
      return code;
    }
  }

2315
  OPTR_SET_OPENED(pOperator);
2316
  pOperator->cost.openCost = (taosGetTimestampUs() - st) / 1000.0;
H
Haojun Liao 已提交
2317 2318 2319
  return TSDB_CODE_SUCCESS;
}

2320
static SSDataBlock* doLoadRemoteData(SOperatorInfo* pOperator) {
L
Liu Jicong 已提交
2321 2322
  SExchangeInfo* pExchangeInfo = pOperator->info;
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
2323

2324
  pTaskInfo->code = pOperator->fpSet._openFn(pOperator);
2325
  if (pTaskInfo->code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
2326 2327
    return NULL;
  }
2328

L
Liu Jicong 已提交
2329
  size_t               totalSources = taosArrayGetSize(pExchangeInfo->pSources);
H
Haojun Liao 已提交
2330
  SLoadRemoteDataInfo* pLoadInfo = &pExchangeInfo->loadInfo;
H
Haojun Liao 已提交
2331

2332
  if (pOperator->status == OP_EXEC_DONE) {
L
Liu Jicong 已提交
2333 2334 2335
    qDebug("%s all %" PRIzu " source(s) are exhausted, total rows:%" PRIu64 " bytes:%" PRIu64 ", elapsed:%.2f ms",
           GET_TASKID(pTaskInfo), totalSources, pLoadInfo->totalRows, pLoadInfo->totalSize,
           pLoadInfo->totalElapsed / 1000.0);
2336 2337 2338 2339 2340 2341
    return NULL;
  }

  if (pExchangeInfo->seqLoadData) {
    return seqLoadRemoteData(pOperator);
  } else {
2342
    return concurrentlyLoadRemoteDataImpl(pOperator, pExchangeInfo, pTaskInfo);
2343
  }
H
Haojun Liao 已提交
2344
}
2345

2346
static int32_t initDataSource(int32_t numOfSources, SExchangeInfo* pInfo, const char* id) {
2347
  pInfo->pSourceDataInfo = taosArrayInit(numOfSources, sizeof(SSourceDataInfo));
H
Haojun Liao 已提交
2348 2349
  if (pInfo->pSourceDataInfo == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
2350 2351
  }

L
Liu Jicong 已提交
2352
  for (int32_t i = 0; i < numOfSources; ++i) {
2353
    SSourceDataInfo dataInfo = {0};
H
Haojun Liao 已提交
2354
    dataInfo.status = EX_SOURCE_DATA_NOT_READY;
2355
    dataInfo.taskId = id;
L
Liu Jicong 已提交
2356
    dataInfo.index = i;
X
Xiaoyu Wang 已提交
2357
    SSourceDataInfo* pDs = taosArrayPush(pInfo->pSourceDataInfo, &dataInfo);
2358
    if (pDs == NULL) {
H
Haojun Liao 已提交
2359 2360 2361 2362 2363 2364 2365 2366
      taosArrayDestroy(pInfo->pSourceDataInfo);
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }

  return TSDB_CODE_SUCCESS;
}

2367
static int32_t initExchangeOperator(SExchangePhysiNode* pExNode, SExchangeInfo* pInfo, const char* id) {
2368
  size_t numOfSources = LIST_LENGTH(pExNode->pSrcEndPoints);
H
Haojun Liao 已提交
2369

2370
  if (numOfSources == 0) {
X
Xiaoyu Wang 已提交
2371
    qError("%s invalid number: %d of sources in exchange operator", id, (int32_t)numOfSources);
2372 2373 2374
    return TSDB_CODE_INVALID_PARA;
  }

H
Haojun Liao 已提交
2375
  pInfo->pSources = taosArrayInit(numOfSources, sizeof(SDownstreamSourceNode));
H
Haojun Liao 已提交
2376 2377
  pInfo->pSourceDataInfo = taosArrayInit(numOfSources, sizeof(SSourceDataInfo));
  if (pInfo->pSourceDataInfo == NULL || pInfo->pSources == NULL) {
2378
    return TSDB_CODE_OUT_OF_MEMORY;
H
Haojun Liao 已提交
2379 2380
  }

L
Liu Jicong 已提交
2381
  for (int32_t i = 0; i < numOfSources; ++i) {
2382
    SNodeListNode* pNode = (SNodeListNode*)nodesListGetNode((SNodeList*)pExNode->pSrcEndPoints, i);
H
Haojun Liao 已提交
2383 2384
    taosArrayPush(pInfo->pSources, pNode);
  }
2385

2386 2387
  pInfo->self = taosAddRef(exchangeObjRefPool, pInfo);

2388
  return initDataSource(numOfSources, pInfo, id);
2389 2390 2391 2392 2393 2394
}

SOperatorInfo* createExchangeOperatorInfo(void* pTransporter, SExchangePhysiNode* pExNode, SExecTaskInfo* pTaskInfo) {
  SExchangeInfo* pInfo = taosMemoryCalloc(1, sizeof(SExchangeInfo));
  SOperatorInfo* pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
  if (pInfo == NULL || pOperator == NULL) {
H
Haojun Liao 已提交
2395
    goto _error;
2396
  }
H
Haojun Liao 已提交
2397

2398
  int32_t code = initExchangeOperator(pExNode, pInfo, GET_TASKID(pTaskInfo));
2399 2400 2401
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
2402 2403

  tsem_init(&pInfo->ready, 0, 0);
2404

2405
  pInfo->seqLoadData = false;
2406
  pInfo->pTransporter = pTransporter;
2407 2408
  pInfo->pResult = createResDataBlock(pExNode->node.pOutputDataBlockDesc);
  pOperator->name = "ExchangeOperator";
X
Xiaoyu Wang 已提交
2409
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_EXCHANGE;
X
Xiaoyu Wang 已提交
2410
  pOperator->blocking = false;
2411 2412
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
2413
  pOperator->exprSupp.numOfExprs = taosArrayGetSize(pInfo->pResult->pDataBlock);
X
Xiaoyu Wang 已提交
2414
  pOperator->pTaskInfo = pTaskInfo;
2415

L
Liu Jicong 已提交
2416 2417
  pOperator->fpSet = createOperatorFpSet(prepareLoadRemoteData, doLoadRemoteData, NULL, NULL,
                                         destroyExchangeOperatorInfo, NULL, NULL, NULL);
2418
  return pOperator;
H
Haojun Liao 已提交
2419

L
Liu Jicong 已提交
2420
_error:
H
Haojun Liao 已提交
2421
  if (pInfo != NULL) {
2422
    doDestroyExchangeOperatorInfo(pInfo);
H
Haojun Liao 已提交
2423 2424
  }

wafwerar's avatar
wafwerar 已提交
2425 2426
  taosMemoryFreeClear(pInfo);
  taosMemoryFreeClear(pOperator);
2427
  pTaskInfo->code = code;
H
Haojun Liao 已提交
2428
  return NULL;
2429 2430
}

dengyihao's avatar
dengyihao 已提交
2431 2432
static int32_t doInitAggInfoSup(SAggSupporter* pAggSup, SqlFunctionCtx* pCtx, int32_t numOfOutput, size_t keyBufSize,
                                const char* pKey);
2433

2434
static void destroySortedMergeOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
2435
  SSortedMergeOperatorInfo* pInfo = (SSortedMergeOperatorInfo*)param;
H
Haojun Liao 已提交
2436
  taosArrayDestroy(pInfo->pSortInfo);
2437 2438 2439
  taosArrayDestroy(pInfo->groupInfo);

  if (pInfo->pSortHandle != NULL) {
H
Haojun Liao 已提交
2440
    tsortDestroySortHandle(pInfo->pSortHandle);
2441 2442
  }

H
Haojun Liao 已提交
2443
  blockDataDestroy(pInfo->binfo.pRes);
H
Haojun Liao 已提交
2444
  cleanupAggSup(&pInfo->aggSup);
2445
}
H
Haojun Liao 已提交
2446

L
Liu Jicong 已提交
2447
static bool needToMerge(SSDataBlock* pBlock, SArray* groupInfo, char** buf, int32_t rowIndex) {
2448 2449 2450 2451
  size_t size = taosArrayGetSize(groupInfo);
  if (size == 0) {
    return true;
  }
2452

2453 2454
  for (int32_t i = 0; i < size; ++i) {
    int32_t* index = taosArrayGet(groupInfo, i);
2455

2456
    SColumnInfoData* pColInfo = taosArrayGet(pBlock->pDataBlock, *index);
L
Liu Jicong 已提交
2457
    bool             isNull = colDataIsNull(pColInfo, rowIndex, pBlock->info.rows, NULL);
2458

2459 2460 2461
    if ((isNull && buf[i] != NULL) || (!isNull && buf[i] == NULL)) {
      return false;
    }
2462

2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
    char* pCell = colDataGetData(pColInfo, rowIndex);
    if (IS_VAR_DATA_TYPE(pColInfo->info.type)) {
      if (varDataLen(pCell) != varDataLen(buf[i])) {
        return false;
      } else {
        if (memcmp(varDataVal(pCell), varDataVal(buf[i]), varDataLen(pCell)) != 0) {
          return false;
        }
      }
    } else {
      if (memcmp(pCell, buf[i], pColInfo->info.bytes) != 0) {
        return false;
      }
2476 2477 2478
    }
  }

2479
  return 0;
2480 2481
}

L
Liu Jicong 已提交
2482 2483 2484
static void doMergeResultImpl(SSortedMergeOperatorInfo* pInfo, SqlFunctionCtx* pCtx, int32_t numOfExpr,
                              int32_t rowIndex) {
  for (int32_t j = 0; j < numOfExpr; ++j) {  // TODO set row index
X
Xiaoyu Wang 已提交
2485
                                             //    pCtx[j].startRow = rowIndex;
2486 2487
  }

2488 2489
  for (int32_t j = 0; j < numOfExpr; ++j) {
    int32_t functionId = pCtx[j].functionId;
L
Liu Jicong 已提交
2490 2491 2492 2493 2494 2495 2496 2497 2498
    //    pCtx[j].fpSet->addInput(&pCtx[j]);

    //    if (functionId < 0) {
    //      SUdfInfo* pUdfInfo = taosArrayGet(pInfo->udfInfo, -1 * functionId - 1);
    //      doInvokeUdf(pUdfInfo, &pCtx[j], 0, TSDB_UDF_FUNC_MERGE);
    //    } else {
    //      assert(!TSDB_FUNC_IS_SCALAR(functionId));
    //      aAggs[functionId].mergeFunc(&pCtx[j]);
    //    }
2499
  }
2500
}
2501

L
Liu Jicong 已提交
2502 2503
static void doFinalizeResultImpl(SqlFunctionCtx* pCtx, int32_t numOfExpr) {
  for (int32_t j = 0; j < numOfExpr; ++j) {
2504 2505 2506 2507
    int32_t functionId = pCtx[j].functionId;
    //    if (functionId == FUNC_TAG_DUMMY || functionId == FUNC_TS_DUMMY) {
    //      continue;
    //    }
2508

2509 2510 2511 2512
    //    if (functionId < 0) {
    //      SUdfInfo* pUdfInfo = taosArrayGet(pInfo->udfInfo, -1 * functionId - 1);
    //      doInvokeUdf(pUdfInfo, &pCtx[j], 0, TSDB_UDF_FUNC_FINALIZE);
    //    } else {
dengyihao's avatar
dengyihao 已提交
2513
    //    pCtx[j].fpSet.finalize(&pCtx[j]);
2514 2515
  }
}
2516

2517
static bool saveCurrentTuple(char** rowColData, SArray* pColumnList, SSDataBlock* pBlock, int32_t rowIndex) {
L
Liu Jicong 已提交
2518
  int32_t size = (int32_t)taosArrayGetSize(pColumnList);
2519

L
Liu Jicong 已提交
2520 2521
  for (int32_t i = 0; i < size; ++i) {
    int32_t*         index = taosArrayGet(pColumnList, i);
2522
    SColumnInfoData* pColInfo = taosArrayGet(pBlock->pDataBlock, *index);
H
Haojun Liao 已提交
2523

2524 2525 2526
    char* data = colDataGetData(pColInfo, rowIndex);
    memcpy(rowColData[i], data, colDataGetLength(pColInfo, rowIndex));
  }
2527

2528 2529
  return true;
}
2530

2531 2532
static void doMergeImpl(SOperatorInfo* pOperator, int32_t numOfExpr, SSDataBlock* pBlock) {
  SSortedMergeOperatorInfo* pInfo = pOperator->info;
2533

2534
  SqlFunctionCtx* pCtx = pOperator->exprSupp.pCtx;
2535

L
Liu Jicong 已提交
2536
  for (int32_t i = 0; i < pBlock->info.rows; ++i) {
2537 2538 2539 2540 2541 2542 2543 2544 2545
    if (!pInfo->hasGroupVal) {
      ASSERT(i == 0);
      doMergeResultImpl(pInfo, pCtx, numOfExpr, i);
      pInfo->hasGroupVal = saveCurrentTuple(pInfo->groupVal, pInfo->groupInfo, pBlock, i);
    } else {
      if (needToMerge(pBlock, pInfo->groupInfo, pInfo->groupVal, i)) {
        doMergeResultImpl(pInfo, pCtx, numOfExpr, i);
      } else {
        doFinalizeResultImpl(pCtx, numOfExpr);
2546 2547
        int32_t numOfRows = getNumOfResult(pOperator->exprSupp.pCtx, pOperator->exprSupp.numOfExprs, NULL);
        //        setTagValueForMultipleRows(pCtx, pOperator->exprSupp.numOfExprs, numOfRows);
2548

2549
        // TODO check for available buffer;
H
Haojun Liao 已提交
2550

2551 2552 2553 2554 2555
        // next group info data
        pInfo->binfo.pRes->info.rows += numOfRows;
        for (int32_t j = 0; j < numOfExpr; ++j) {
          if (pCtx[j].functionId < 0) {
            continue;
2556
          }
2557

H
Haojun Liao 已提交
2558
          pCtx[j].fpSet.process(&pCtx[j]);
2559
        }
2560 2561 2562

        doMergeResultImpl(pInfo, pCtx, numOfExpr, i);
        pInfo->hasGroupVal = saveCurrentTuple(pInfo->groupVal, pInfo->groupInfo, pBlock, i);
H
Haojun Liao 已提交
2563
      }
2564 2565 2566 2567
    }
  }
}

2568 2569
static SSDataBlock* doMerge(SOperatorInfo* pOperator) {
  SSortedMergeOperatorInfo* pInfo = pOperator->info;
L
Liu Jicong 已提交
2570
  SSortHandle*              pHandle = pInfo->pSortHandle;
2571

2572
  SSDataBlock* pDataBlock = createOneDataBlock(pInfo->binfo.pRes, false);
2573
  blockDataEnsureCapacity(pDataBlock, pOperator->resultInfo.capacity);
2574

L
Liu Jicong 已提交
2575
  while (1) {
2576
    blockDataCleanup(pDataBlock);
2577
    while (1) {
H
Haojun Liao 已提交
2578
      STupleHandle* pTupleHandle = tsortNextTuple(pHandle);
2579 2580
      if (pTupleHandle == NULL) {
        break;
2581
      }
2582

2583 2584
      // build datablock for merge for one group
      appendOneRowToDataBlock(pDataBlock, pTupleHandle);
2585
      if (pDataBlock->info.rows >= pOperator->resultInfo.capacity) {
2586 2587
        break;
      }
2588
    }
2589

2590 2591 2592
    if (pDataBlock->info.rows == 0) {
      break;
    }
2593

2594
    setInputDataBlock(pOperator, pOperator->exprSupp.pCtx, pDataBlock, TSDB_ORDER_ASC, MAIN_SCAN, true);
L
Liu Jicong 已提交
2595 2596
    //  updateOutputBuf(&pInfo->binfo, &pAggInfo->bufCapacity, pBlock->info.rows * pAggInfo->resultRowFactor,
    //  pOperator->pRuntimeEnv, true);
2597
    doMergeImpl(pOperator, pOperator->exprSupp.numOfExprs, pDataBlock);
2598 2599
    // flush to tuple store, and after all data have been handled, return to upstream node or sink node
  }
2600

2601 2602 2603
  doFinalizeResultImpl(pOperator->exprSupp.pCtx, pOperator->exprSupp.numOfExprs);
  int32_t numOfRows = getNumOfResult(pOperator->exprSupp.pCtx, pOperator->exprSupp.numOfExprs, NULL);
  //        setTagValueForMultipleRows(pCtx, pOperator->exprSupp.numOfExprs, numOfRows);
2604

2605
  // TODO check for available buffer;
2606

2607 2608
  // next group info data
  pInfo->binfo.pRes->info.rows += numOfRows;
L
Liu Jicong 已提交
2609
  return (pInfo->binfo.pRes->info.rows > 0) ? pInfo->binfo.pRes : NULL;
2610
}
2611

L
Liu Jicong 已提交
2612 2613
SSDataBlock* getSortedMergeBlockData(SSortHandle* pHandle, SSDataBlock* pDataBlock, int32_t capacity,
                                     SArray* pColMatchInfo, SSortedMergeOperatorInfo* pInfo) {
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623
  blockDataCleanup(pDataBlock);

  SSDataBlock* p = tsortGetSortedDataBlock(pHandle);
  if (p == NULL) {
    return NULL;
  }

  blockDataEnsureCapacity(p, capacity);

  while (1) {
2624
    STupleHandle* pTupleHandle = tsortNextTuple(pHandle);
2625 2626 2627 2628
    if (pTupleHandle == NULL) {
      break;
    }

2629
    appendOneRowToDataBlock(p, pTupleHandle);
2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642
    if (p->info.rows >= capacity) {
      break;
    }
  }

  if (p->info.rows > 0) {
    int32_t numOfCols = taosArrayGetSize(pColMatchInfo);
    for (int32_t i = 0; i < numOfCols; ++i) {
      SColMatchInfo* pmInfo = taosArrayGet(pColMatchInfo, i);
      ASSERT(pmInfo->matchType == COL_MATCH_FROM_SLOT_ID);

      SColumnInfoData* pSrc = taosArrayGet(p->pDataBlock, pmInfo->srcSlotId);
      SColumnInfoData* pDst = taosArrayGet(pDataBlock->pDataBlock, pmInfo->targetSlotId);
2643
      colDataAssign(pDst, pSrc, p->info.rows, &pDataBlock->info);
2644 2645 2646 2647 2648 2649 2650 2651 2652 2653
    }

    pDataBlock->info.rows = p->info.rows;
    pDataBlock->info.capacity = p->info.rows;
  }

  blockDataDestroy(p);
  return (pDataBlock->info.rows > 0) ? pDataBlock : NULL;
}

2654
static SSDataBlock* doSortedMerge(SOperatorInfo* pOperator) {
2655 2656
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
2657 2658
  }

L
Liu Jicong 已提交
2659
  SExecTaskInfo*            pTaskInfo = pOperator->pTaskInfo;
2660
  SSortedMergeOperatorInfo* pInfo = pOperator->info;
H
Haojun Liao 已提交
2661
  if (pOperator->status == OP_RES_TO_RETURN) {
2662
    return getSortedMergeBlockData(pInfo->pSortHandle, pInfo->binfo.pRes, pOperator->resultInfo.capacity, NULL, pInfo);
2663 2664
  }

2665
  int32_t numOfBufPage = pInfo->sortBufSize / pInfo->bufPageSize;
L
Liu Jicong 已提交
2666 2667
  pInfo->pSortHandle = tsortCreateSortHandle(pInfo->pSortInfo, SORT_MULTISOURCE_MERGE, pInfo->bufPageSize, numOfBufPage,
                                             pInfo->binfo.pRes, "GET_TASKID(pTaskInfo)");
H
Haojun Liao 已提交
2668

2669
  tsortSetFetchRawDataFp(pInfo->pSortHandle, loadNextDataBlock, NULL, NULL);
2670

L
Liu Jicong 已提交
2671
  for (int32_t i = 0; i < pOperator->numOfDownstream; ++i) {
wmmhello's avatar
wmmhello 已提交
2672
    SSortSource* ps = taosMemoryCalloc(1, sizeof(SSortSource));
H
Haojun Liao 已提交
2673
    ps->param = pOperator->pDownstream[i];
H
Haojun Liao 已提交
2674
    tsortAddSource(pInfo->pSortHandle, ps);
2675 2676
  }

H
Haojun Liao 已提交
2677
  int32_t code = tsortOpen(pInfo->pSortHandle);
2678
  if (code != TSDB_CODE_SUCCESS) {
2679
    longjmp(pTaskInfo->env, terrno);
2680 2681
  }

H
Haojun Liao 已提交
2682
  pOperator->status = OP_RES_TO_RETURN;
2683
  return doMerge(pOperator);
2684
}
2685

L
Liu Jicong 已提交
2686 2687
static int32_t initGroupCol(SExprInfo* pExprInfo, int32_t numOfCols, SArray* pGroupInfo,
                            SSortedMergeOperatorInfo* pInfo) {
2688 2689
  if (pGroupInfo == NULL || taosArrayGetSize(pGroupInfo) == 0) {
    return 0;
H
Haojun Liao 已提交
2690 2691
  }

2692 2693 2694 2695 2696 2697 2698 2699
  int32_t len = 0;
  SArray* plist = taosArrayInit(3, sizeof(SColumn));
  pInfo->groupInfo = taosArrayInit(3, sizeof(int32_t));

  if (plist == NULL || pInfo->groupInfo == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

L
Liu Jicong 已提交
2700 2701
  size_t numOfGroupCol = taosArrayGetSize(pInfo->groupInfo);
  for (int32_t i = 0; i < numOfGroupCol; ++i) {
2702
    SColumn* pCol = taosArrayGet(pGroupInfo, i);
L
Liu Jicong 已提交
2703
    for (int32_t j = 0; j < numOfCols; ++j) {
H
Haojun Liao 已提交
2704
      SExprInfo* pe = &pExprInfo[j];
2705
      if (pe->base.resSchema.slotId == pCol->colId) {
2706 2707
        taosArrayPush(plist, pCol);
        taosArrayPush(pInfo->groupInfo, &j);
H
Haojun Liao 已提交
2708
        len += pCol->bytes;
2709 2710
        break;
      }
H
Haojun Liao 已提交
2711 2712 2713
    }
  }

2714
  ASSERT(taosArrayGetSize(pGroupInfo) == taosArrayGetSize(plist));
H
Haojun Liao 已提交
2715

wafwerar's avatar
wafwerar 已提交
2716
  pInfo->groupVal = taosMemoryCalloc(1, (POINTER_BYTES * numOfGroupCol + len));
2717 2718 2719 2720
  if (pInfo->groupVal == NULL) {
    taosArrayDestroy(plist);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
H
Haojun Liao 已提交
2721

2722
  int32_t offset = 0;
L
Liu Jicong 已提交
2723 2724
  char*   start = (char*)(pInfo->groupVal + (POINTER_BYTES * numOfGroupCol));
  for (int32_t i = 0; i < numOfGroupCol; ++i) {
2725 2726
    pInfo->groupVal[i] = start + offset;
    SColumn* pCol = taosArrayGet(plist, i);
H
Haojun Liao 已提交
2727
    offset += pCol->bytes;
2728
  }
H
Haojun Liao 已提交
2729

2730
  taosArrayDestroy(plist);
H
Haojun Liao 已提交
2731

2732 2733
  return TSDB_CODE_SUCCESS;
}
H
Haojun Liao 已提交
2734

L
Liu Jicong 已提交
2735 2736 2737
SOperatorInfo* createSortedMergeOperatorInfo(SOperatorInfo** downstream, int32_t numOfDownstream, SExprInfo* pExprInfo,
                                             int32_t num, SArray* pSortInfo, SArray* pGroupInfo,
                                             SExecTaskInfo* pTaskInfo) {
wafwerar's avatar
wafwerar 已提交
2738
  SSortedMergeOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SSortedMergeOperatorInfo));
L
Liu Jicong 已提交
2739
  SOperatorInfo*            pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
2740
  if (pInfo == NULL || pOperator == NULL) {
2741
    goto _error;
2742
  }
H
Haojun Liao 已提交
2743

2744 2745 2746 2747 2748
  int32_t code = initExprSupp(&pOperator->exprSupp, pExprInfo, num);
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }

2749
  initResultRowInfo(&pInfo->binfo.resultRowInfo);
H
Haojun Liao 已提交
2750

2751
  if (pOperator->exprSupp.pCtx == NULL || pInfo->binfo.pRes == NULL) {
2752 2753
    goto _error;
  }
H
Haojun Liao 已提交
2754

2755
  size_t keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
2756
  code = doInitAggInfoSup(&pInfo->aggSup, pOperator->exprSupp.pCtx, num, keyBufSize, pTaskInfo->id.str);
2757 2758 2759
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
H
Haojun Liao 已提交
2760

2761
  setFunctionResultOutput(pOperator, &pInfo->binfo, &pInfo->aggSup, MAIN_SCAN, num);
H
Haojun Liao 已提交
2762
  code = initGroupCol(pExprInfo, num, pGroupInfo, pInfo);
2763 2764 2765
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
H
Haojun Liao 已提交
2766

L
Liu Jicong 已提交
2767 2768 2769 2770 2771
  //  pInfo->resultRowFactor = (int32_t)(getRowNumForMultioutput(pRuntimeEnv->pQueryAttr,
  //      pRuntimeEnv->pQueryAttr->topBotQuery, false));
  pInfo->sortBufSize = 1024 * 16;  // 1MB
  pInfo->bufPageSize = 1024;
  pInfo->pSortInfo = pSortInfo;
H
Haojun Liao 已提交
2772

2773
  pOperator->resultInfo.capacity = blockDataGetCapacityInRow(pInfo->binfo.pRes, pInfo->bufPageSize);
H
Haojun Liao 已提交
2774

L
Liu Jicong 已提交
2775
  pOperator->name = "SortedMerge";
X
Xiaoyu Wang 已提交
2776
  // pOperator->operatorType = OP_SortedMerge;
2777 2778 2779
  pOperator->blocking = true;
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
L
Liu Jicong 已提交
2780
  pOperator->pTaskInfo = pTaskInfo;
H
Haojun Liao 已提交
2781

2782 2783
  pOperator->fpSet = createOperatorFpSet(operatorDummyOpenFn, doSortedMerge, NULL, NULL, destroySortedMergeOperatorInfo,
                                         NULL, NULL, NULL);
2784 2785 2786
  code = appendDownstream(pOperator, downstream, numOfDownstream);
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
2787
  }
H
Haojun Liao 已提交
2788

2789
  return pOperator;
H
Haojun Liao 已提交
2790

L
Liu Jicong 已提交
2791
_error:
2792
  if (pInfo != NULL) {
H
Haojun Liao 已提交
2793
    destroySortedMergeOperatorInfo(pInfo, num);
H
Haojun Liao 已提交
2794 2795
  }

wafwerar's avatar
wafwerar 已提交
2796 2797
  taosMemoryFreeClear(pInfo);
  taosMemoryFreeClear(pOperator);
2798 2799
  terrno = TSDB_CODE_QRY_OUT_OF_MEMORY;
  return NULL;
H
Haojun Liao 已提交
2800 2801
}

X
Xiaoyu Wang 已提交
2802
int32_t getTableScanInfo(SOperatorInfo* pOperator, int32_t* order, int32_t* scanFlag) {
2803
  // todo add more information about exchange operation
2804
  int32_t type = pOperator->operatorType;
X
Xiaoyu Wang 已提交
2805
  if (type == QUERY_NODE_PHYSICAL_PLAN_EXCHANGE || type == QUERY_NODE_PHYSICAL_PLAN_SYSTABLE_SCAN ||
2806 2807
      type == QUERY_NODE_PHYSICAL_PLAN_STREAM_SCAN || type == QUERY_NODE_PHYSICAL_PLAN_TAG_SCAN ||
      type == QUERY_NODE_PHYSICAL_PLAN_BLOCK_DIST_SCAN) {
2808 2809 2810
    *order = TSDB_ORDER_ASC;
    *scanFlag = MAIN_SCAN;
    return TSDB_CODE_SUCCESS;
2811
  } else if (type == QUERY_NODE_PHYSICAL_PLAN_TABLE_SCAN) {
2812 2813 2814 2815 2816
    STableScanInfo* pTableScanInfo = pOperator->info;
    *order = pTableScanInfo->cond.order;
    *scanFlag = pTableScanInfo->scanFlag;
    return TSDB_CODE_SUCCESS;
  } else {
H
Haojun Liao 已提交
2817
    if (pOperator->pDownstream == NULL || pOperator->pDownstream[0] == NULL) {
2818
      return TSDB_CODE_INVALID_PARA;
H
Haojun Liao 已提交
2819
    } else {
2820
      return getTableScanInfo(pOperator->pDownstream[0], order, scanFlag);
2821 2822 2823
    }
  }
}
2824 2825

// this is a blocking operator
L
Liu Jicong 已提交
2826
static int32_t doOpenAggregateOptr(SOperatorInfo* pOperator) {
H
Haojun Liao 已提交
2827 2828
  if (OPTR_IS_OPENED(pOperator)) {
    return TSDB_CODE_SUCCESS;
2829 2830
  }

H
Haojun Liao 已提交
2831
  SExecTaskInfo*    pTaskInfo = pOperator->pTaskInfo;
2832
  SAggOperatorInfo* pAggInfo = pOperator->info;
H
Haojun Liao 已提交
2833

2834 2835
  SExprSupp*     pSup = &pOperator->exprSupp;
  SOperatorInfo* downstream = pOperator->pDownstream[0];
2836

2837 2838
  int64_t st = taosGetTimestampUs();

2839 2840 2841
  int32_t order = TSDB_ORDER_ASC;
  int32_t scanFlag = MAIN_SCAN;

H
Haojun Liao 已提交
2842
  while (1) {
2843
    SSDataBlock* pBlock = downstream->fpSet.getNextFn(downstream);
2844 2845 2846 2847
    if (pBlock == NULL) {
      break;
    }

2848 2849 2850 2851
    int32_t code = getTableScanInfo(pOperator, &order, &scanFlag);
    if (code != TSDB_CODE_SUCCESS) {
      longjmp(pTaskInfo->env, code);
    }
2852

2853
    // there is an scalar expression that needs to be calculated before apply the group aggregation.
2854 2855 2856
    if (pAggInfo->scalarExprSup.pExprInfo != NULL) {
      SExprSupp* pSup1 = &pAggInfo->scalarExprSup;
      code = projectApplyFunctions(pSup1->pExprInfo, pBlock, pBlock, pSup1->pCtx, pSup1->numOfExprs, NULL);
2857
      if (code != TSDB_CODE_SUCCESS) {
2858
        longjmp(pTaskInfo->env, code);
2859
      }
2860 2861
    }

2862
    // the pDataBlock are always the same one, no need to call this again
2863 2864 2865
    setExecutionContext(pOperator, pOperator->exprSupp.numOfExprs, pBlock->info.groupId, pAggInfo);
    setInputDataBlock(pOperator, pSup->pCtx, pBlock, order, scanFlag, true);
    code = doAggregateImpl(pOperator, 0, pSup->pCtx);
2866 2867 2868
    if (code != 0) {
      longjmp(pTaskInfo->env, code);
    }
2869

dengyihao's avatar
dengyihao 已提交
2870
#if 0  // test for encode/decode result info
2871
    if(pOperator->fpSet.encodeResultRow){
2872 2873
      char *result = NULL;
      int32_t length = 0;
2874 2875
      pOperator->fpSet.encodeResultRow(pOperator, &result, &length);
      SAggSupporter* pSup = &pAggInfo->aggSup;
2876 2877
      taosHashClear(pSup->pResultRowHashTable);
      pInfo->resultRowInfo.size = 0;
2878
      pOperator->fpSet.decodeResultRow(pOperator, result);
2879 2880 2881
      if(result){
        taosMemoryFree(result);
      }
2882
    }
2883
#endif
2884 2885
  }

H
Haojun Liao 已提交
2886
  closeAllResultRows(&pAggInfo->binfo.resultRowInfo);
2887
  initGroupedResultInfo(&pAggInfo->groupResInfo, pAggInfo->aggSup.pResultRowHashTable, 0);
H
Haojun Liao 已提交
2888
  OPTR_SET_OPENED(pOperator);
2889

2890
  pOperator->cost.openCost = (taosGetTimestampUs() - st) / 1000.0;
H
Haojun Liao 已提交
2891 2892 2893
  return TSDB_CODE_SUCCESS;
}

2894
static SSDataBlock* getAggregateResult(SOperatorInfo* pOperator) {
L
Liu Jicong 已提交
2895
  SAggOperatorInfo* pAggInfo = pOperator->info;
H
Haojun Liao 已提交
2896 2897 2898 2899 2900 2901
  SOptrBasicInfo*   pInfo = &pAggInfo->binfo;

  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

L
Liu Jicong 已提交
2902
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
2903
  pTaskInfo->code = pOperator->fpSet._openFn(pOperator);
H
Haojun Liao 已提交
2904
  if (pTaskInfo->code != TSDB_CODE_SUCCESS) {
2905
    doSetOperatorCompleted(pOperator);
H
Haojun Liao 已提交
2906 2907 2908
    return NULL;
  }

H
Haojun Liao 已提交
2909
  blockDataEnsureCapacity(pInfo->pRes, pOperator->resultInfo.capacity);
2910
  doBuildResultDatablock(pOperator, pInfo, &pAggInfo->groupResInfo, pAggInfo->aggSup.pResultBuf);
2911
  if (pInfo->pRes->info.rows == 0 || !hasDataInGroupInfo(&pAggInfo->groupResInfo)) {
H
Haojun Liao 已提交
2912 2913
    doSetOperatorCompleted(pOperator);
  }
2914

2915
  size_t rows = blockDataGetNumOfRows(pInfo->pRes);
2916 2917
  pOperator->resultInfo.totalRows += rows;

2918
  return (rows == 0) ? NULL : pInfo->pRes;
2919 2920
}

wmmhello's avatar
wmmhello 已提交
2921
int32_t aggEncodeResultRow(SOperatorInfo* pOperator, char** result, int32_t* length) {
2922
  if (result == NULL || length == NULL) {
wmmhello's avatar
wmmhello 已提交
2923 2924 2925
    return TSDB_CODE_TSC_INVALID_INPUT;
  }
  SOptrBasicInfo* pInfo = (SOptrBasicInfo*)(pOperator->info);
2926 2927 2928 2929 2930
  SAggSupporter*  pSup = (SAggSupporter*)POINTER_SHIFT(pOperator->info, sizeof(SOptrBasicInfo));
  int32_t         size = taosHashGetSize(pSup->pResultRowHashTable);
  size_t          keyLen = sizeof(uint64_t) * 2;  // estimate the key length
  int32_t         totalSize =
      sizeof(int32_t) + sizeof(int32_t) + size * (sizeof(int32_t) + keyLen + sizeof(int32_t) + pSup->resultRowSize);
wmmhello's avatar
wmmhello 已提交
2931

wmmhello's avatar
wmmhello 已提交
2932
  *result = (char*)taosMemoryCalloc(1, totalSize);
L
Liu Jicong 已提交
2933
  if (*result == NULL) {
wmmhello's avatar
wmmhello 已提交
2934
    return TSDB_CODE_OUT_OF_MEMORY;
wmmhello's avatar
wmmhello 已提交
2935
  }
wmmhello's avatar
wmmhello 已提交
2936

wmmhello's avatar
wmmhello 已提交
2937
  int32_t offset = sizeof(int32_t);
wmmhello's avatar
wmmhello 已提交
2938 2939
  *(int32_t*)(*result + offset) = size;
  offset += sizeof(int32_t);
2940 2941

  // prepare memory
2942
  SResultRowPosition* pos = &pInfo->resultRowInfo.cur;
dengyihao's avatar
dengyihao 已提交
2943 2944
  void*               pPage = getBufPage(pSup->pResultBuf, pos->pageId);
  SResultRow*         pRow = (SResultRow*)((char*)pPage + pos->offset);
2945 2946 2947
  setBufPageDirty(pPage, true);
  releaseBufPage(pSup->pResultBuf, pPage);

dengyihao's avatar
dengyihao 已提交
2948
  void* pIter = taosHashIterate(pSup->pResultRowHashTable, NULL);
wmmhello's avatar
wmmhello 已提交
2949
  while (pIter) {
dengyihao's avatar
dengyihao 已提交
2950
    void*               key = taosHashGetKey(pIter, &keyLen);
2951
    SResultRowPosition* p1 = (SResultRowPosition*)pIter;
2952

dengyihao's avatar
dengyihao 已提交
2953
    pPage = (SFilePage*)getBufPage(pSup->pResultBuf, p1->pageId);
2954
    pRow = (SResultRow*)((char*)pPage + p1->offset);
2955 2956
    setBufPageDirty(pPage, true);
    releaseBufPage(pSup->pResultBuf, pPage);
wmmhello's avatar
wmmhello 已提交
2957 2958 2959

    // recalculate the result size
    int32_t realTotalSize = offset + sizeof(int32_t) + keyLen + sizeof(int32_t) + pSup->resultRowSize;
L
Liu Jicong 已提交
2960
    if (realTotalSize > totalSize) {
wmmhello's avatar
wmmhello 已提交
2961
      char* tmp = (char*)taosMemoryRealloc(*result, realTotalSize);
L
Liu Jicong 已提交
2962
      if (tmp == NULL) {
wafwerar's avatar
wafwerar 已提交
2963
        taosMemoryFree(*result);
wmmhello's avatar
wmmhello 已提交
2964
        *result = NULL;
wmmhello's avatar
wmmhello 已提交
2965
        return TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
2966
      } else {
wmmhello's avatar
wmmhello 已提交
2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978
        *result = tmp;
      }
    }
    // save key
    *(int32_t*)(*result + offset) = keyLen;
    offset += sizeof(int32_t);
    memcpy(*result + offset, key, keyLen);
    offset += keyLen;

    // save value
    *(int32_t*)(*result + offset) = pSup->resultRowSize;
    offset += sizeof(int32_t);
2979
    memcpy(*result + offset, pRow, pSup->resultRowSize);
wmmhello's avatar
wmmhello 已提交
2980 2981 2982 2983 2984
    offset += pSup->resultRowSize;

    pIter = taosHashIterate(pSup->pResultRowHashTable, pIter);
  }

wmmhello's avatar
wmmhello 已提交
2985 2986 2987 2988
  *(int32_t*)(*result) = offset;
  *length = offset;

  return TDB_CODE_SUCCESS;
wmmhello's avatar
wmmhello 已提交
2989 2990
}

2991
int32_t aggDecodeResultRow(SOperatorInfo* pOperator, char* result) {
2992
  if (result == NULL) {
wmmhello's avatar
wmmhello 已提交
2993
    return TSDB_CODE_TSC_INVALID_INPUT;
wmmhello's avatar
wmmhello 已提交
2994
  }
wmmhello's avatar
wmmhello 已提交
2995
  SOptrBasicInfo* pInfo = (SOptrBasicInfo*)(pOperator->info);
2996
  SAggSupporter*  pSup = (SAggSupporter*)POINTER_SHIFT(pOperator->info, sizeof(SOptrBasicInfo));
wmmhello's avatar
wmmhello 已提交
2997 2998

  //  int32_t size = taosHashGetSize(pSup->pResultRowHashTable);
2999
  int32_t length = *(int32_t*)(result);
wmmhello's avatar
wmmhello 已提交
3000
  int32_t offset = sizeof(int32_t);
3001 3002 3003 3004

  int32_t count = *(int32_t*)(result + offset);
  offset += sizeof(int32_t);

L
Liu Jicong 已提交
3005
  while (count-- > 0 && length > offset) {
wmmhello's avatar
wmmhello 已提交
3006 3007 3008
    int32_t keyLen = *(int32_t*)(result + offset);
    offset += sizeof(int32_t);

L
Liu Jicong 已提交
3009
    uint64_t    tableGroupId = *(uint64_t*)(result + offset);
3010
    SResultRow* resultRow = getNewResultRow(pSup->pResultBuf, tableGroupId, pSup->resultRowSize);
L
Liu Jicong 已提交
3011
    if (!resultRow) {
wmmhello's avatar
wmmhello 已提交
3012
      return TSDB_CODE_TSC_INVALID_INPUT;
wmmhello's avatar
wmmhello 已提交
3013
    }
3014

wmmhello's avatar
wmmhello 已提交
3015
    // add a new result set for a new group
3016 3017
    SResultRowPosition pos = {.pageId = resultRow->pageId, .offset = resultRow->offset};
    taosHashPut(pSup->pResultRowHashTable, result + offset, keyLen, &pos, sizeof(SResultRowPosition));
wmmhello's avatar
wmmhello 已提交
3018 3019 3020

    offset += keyLen;
    int32_t valueLen = *(int32_t*)(result + offset);
L
Liu Jicong 已提交
3021
    if (valueLen != pSup->resultRowSize) {
wmmhello's avatar
wmmhello 已提交
3022
      return TSDB_CODE_TSC_INVALID_INPUT;
wmmhello's avatar
wmmhello 已提交
3023 3024 3025 3026 3027 3028 3029 3030 3031 3032
    }
    offset += sizeof(int32_t);
    int32_t pageId = resultRow->pageId;
    int32_t pOffset = resultRow->offset;
    memcpy(resultRow, result + offset, valueLen);
    resultRow->pageId = pageId;
    resultRow->offset = pOffset;
    offset += valueLen;

    initResultRow(resultRow);
dengyihao's avatar
dengyihao 已提交
3033
    pInfo->resultRowInfo.cur = (SResultRowPosition){.pageId = resultRow->pageId, .offset = resultRow->offset};
wmmhello's avatar
wmmhello 已提交
3034 3035
  }

L
Liu Jicong 已提交
3036
  if (offset != length) {
wmmhello's avatar
wmmhello 已提交
3037
    return TSDB_CODE_TSC_INVALID_INPUT;
wmmhello's avatar
wmmhello 已提交
3038
  }
wmmhello's avatar
wmmhello 已提交
3039
  return TDB_CODE_SUCCESS;
wmmhello's avatar
wmmhello 已提交
3040 3041
}

3042 3043
enum {
  PROJECT_RETRIEVE_CONTINUE = 0x1,
L
Liu Jicong 已提交
3044
  PROJECT_RETRIEVE_DONE = 0x2,
3045 3046 3047 3048 3049
};

static int32_t handleLimitOffset(SOperatorInfo* pOperator, SSDataBlock* pBlock) {
  SProjectOperatorInfo* pProjectInfo = pOperator->info;
  SOptrBasicInfo*       pInfo = &pProjectInfo->binfo;
L
Liu Jicong 已提交
3050
  SSDataBlock*          pRes = pInfo->pRes;
3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098

  if (pProjectInfo->curSOffset > 0) {
    if (pProjectInfo->groupId == 0) {  // it is the first group
      pProjectInfo->groupId = pBlock->info.groupId;
      blockDataCleanup(pInfo->pRes);
      return PROJECT_RETRIEVE_CONTINUE;
    } else if (pProjectInfo->groupId != pBlock->info.groupId) {
      pProjectInfo->curSOffset -= 1;

      // ignore data block in current group
      if (pProjectInfo->curSOffset > 0) {
        blockDataCleanup(pInfo->pRes);
        return PROJECT_RETRIEVE_CONTINUE;
      }
    }

    // set current group id of the project operator
    pProjectInfo->groupId = pBlock->info.groupId;
  }

  if (pProjectInfo->groupId != 0 && pProjectInfo->groupId != pBlock->info.groupId) {
    pProjectInfo->curGroupOutput += 1;
    if ((pProjectInfo->slimit.limit > 0) && (pProjectInfo->slimit.limit <= pProjectInfo->curGroupOutput)) {
      pOperator->status = OP_EXEC_DONE;
      blockDataCleanup(pRes);

      return PROJECT_RETRIEVE_DONE;
    }

    // reset the value for a new group data
    pProjectInfo->curOffset = 0;
    pProjectInfo->curOutput = 0;
  }

  // here we reach the start position, according to the limit/offset requirements.

  // set current group id
  pProjectInfo->groupId = pBlock->info.groupId;

  if (pProjectInfo->curOffset >= pRes->info.rows) {
    pProjectInfo->curOffset -= pRes->info.rows;
    blockDataCleanup(pRes);
    return PROJECT_RETRIEVE_CONTINUE;
  } else if (pProjectInfo->curOffset < pRes->info.rows && pProjectInfo->curOffset > 0) {
    blockDataTrimFirstNRows(pRes, pProjectInfo->curOffset);
    pProjectInfo->curOffset = 0;
  }

3099 3100 3101
  // check for the limitation in each group
  if (pProjectInfo->limit.limit > 0 && pProjectInfo->curOutput + pRes->info.rows >= pProjectInfo->limit.limit) {
    pRes->info.rows = (int32_t)(pProjectInfo->limit.limit - pProjectInfo->curOutput);
3102
    if (pProjectInfo->slimit.limit > 0 && pProjectInfo->slimit.limit <= pProjectInfo->curGroupOutput) {
3103 3104 3105
      pOperator->status = OP_EXEC_DONE;
    }

3106
    return PROJECT_RETRIEVE_DONE;
3107
  }
3108

3109
  // todo optimize performance
3110 3111
  // If there are slimit/soffset value exists, multi-round result can not be packed into one group, since the
  // they may not belong to the same group the limit/offset value is not valid in this case.
L
Liu Jicong 已提交
3112 3113
  if (pRes->info.rows >= pOperator->resultInfo.threshold || pProjectInfo->slimit.offset != -1 ||
      pProjectInfo->slimit.limit != -1) {
3114
    return PROJECT_RETRIEVE_DONE;
L
Liu Jicong 已提交
3115
  } else {  // not full enough, continue to accumulate the output data in the buffer.
3116 3117 3118 3119
    return PROJECT_RETRIEVE_CONTINUE;
  }
}

3120
static SSDataBlock* doProjectOperation(SOperatorInfo* pOperator) {
3121
  SProjectOperatorInfo* pProjectInfo = pOperator->info;
L
Liu Jicong 已提交
3122
  SOptrBasicInfo*       pInfo = &pProjectInfo->binfo;
3123

L
Liu Jicong 已提交
3124
  SExprSupp*   pSup = &pOperator->exprSupp;
3125
  SSDataBlock* pRes = pInfo->pRes;
3126
  blockDataCleanup(pRes);
3127

3128
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
3129 3130 3131
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
3132

H
Haojun Liao 已提交
3133
#if 0
3134 3135 3136 3137 3138
  if (pProjectInfo->existDataBlock) {  // TODO refactor
    SSDataBlock* pBlock = pProjectInfo->existDataBlock;
    pProjectInfo->existDataBlock = NULL;

    // the pDataBlock are always the same one, no need to call this again
H
Haojun Liao 已提交
3139
    setInputDataBlock(pOperator, pInfo->pCtx, pBlock, TSDB_ORDER_ASC);
3140

H
Haojun Liao 已提交
3141
    blockDataEnsureCapacity(pInfo->pRes, pBlock->info.rows);
3142
    projectApplyFunctions(pOperator->exprSupp.pExprInfo, pInfo->pRes, pBlock, pInfo->pCtx, pOperator->exprSupp.numOfExprs);
L
Liu Jicong 已提交
3143
    if (pRes->info.rows >= pProjectInfo->binfo.capacity * 0.8) {
3144 3145
      copyTsColoum(pRes, pInfo->pCtx, pOperator->exprSupp.numOfExprs);
      resetResultRowEntryResult(pInfo->pCtx, pOperator->exprSupp.numOfExprs);
3146 3147 3148
      return pRes;
    }
  }
H
Haojun Liao 已提交
3149
#endif
3150

3151
  int64_t st = 0;
3152 3153 3154
  int32_t order = 0;
  int32_t scanFlag = 0;

3155 3156 3157 3158
  if (pOperator->cost.openCost == 0) {
    st = taosGetTimestampUs();
  }

H
Haojun Liao 已提交
3159 3160
  SOperatorInfo* downstream = pOperator->pDownstream[0];

L
Liu Jicong 已提交
3161
  while (1) {
H
Haojun Liao 已提交
3162
    // The downstream exec may change the value of the newgroup, so use a local variable instead.
3163
    SSDataBlock* pBlock = downstream->fpSet.getNextFn(downstream);
3164
    if (pBlock == NULL) {
3165
      doSetOperatorCompleted(pOperator);
3166 3167 3168 3169
      break;
    }

    // the pDataBlock are always the same one, no need to call this again
3170
    int32_t code = getTableScanInfo(pOperator->pDownstream[0], &order, &scanFlag);
3171 3172 3173
    if (code != TSDB_CODE_SUCCESS) {
      longjmp(pTaskInfo->env, code);
    }
3174

3175
    doFilter(pProjectInfo->pFilterNode, pBlock);
3176

3177
    setInputDataBlock(pOperator, pSup->pCtx, pBlock, order, scanFlag, false);
3178 3179
    blockDataEnsureCapacity(pInfo->pRes, pInfo->pRes->info.rows + pBlock->info.rows);

3180
    code = projectApplyFunctions(pSup->pExprInfo, pInfo->pRes, pBlock, pSup->pCtx, pSup->numOfExprs,
X
Xiaoyu Wang 已提交
3181
                                 pProjectInfo->pPseudoColInfo);
3182 3183
    if (code != TSDB_CODE_SUCCESS) {
      longjmp(pTaskInfo->env, code);
3184 3185
    }

3186 3187
    int32_t status = handleLimitOffset(pOperator, pBlock);
    if (status == PROJECT_RETRIEVE_CONTINUE) {
H
Haojun Liao 已提交
3188
      continue;
L
Liu Jicong 已提交
3189
    } else if (status == PROJECT_RETRIEVE_DONE) {
3190 3191 3192
      break;
    }
  }
dengyihao's avatar
dengyihao 已提交
3193

H
Haojun Liao 已提交
3194
  pProjectInfo->curOutput += pInfo->pRes->info.rows;
H
Haojun Liao 已提交
3195

3196 3197 3198 3199
  size_t rows = pInfo->pRes->info.rows;
  pOperator->resultInfo.totalRows += rows;

  if (pOperator->cost.openCost == 0) {
3200
    pOperator->cost.openCost = (taosGetTimestampUs() - st) / 1000.0;
3201 3202
  }

3203
  return (rows > 0) ? pInfo->pRes : NULL;
3204 3205
}

L
Liu Jicong 已提交
3206 3207
static void doHandleRemainBlockForNewGroupImpl(SFillOperatorInfo* pInfo, SResultInfo* pResultInfo, bool* newgroup,
                                               SExecTaskInfo* pTaskInfo) {
3208
  pInfo->totalInputRows = pInfo->existNewGroupBlock->info.rows;
H
Haojun Liao 已提交
3209

L
Liu Jicong 已提交
3210 3211
  int64_t ekey = Q_STATUS_EQUAL(pTaskInfo->status, TASK_COMPLETED) ? pTaskInfo->window.ekey
                                                                   : pInfo->existNewGroupBlock->info.window.ekey;
3212 3213
  taosResetFillInfo(pInfo->pFillInfo, getFillInfoStart(pInfo->pFillInfo));

3214
  taosFillSetStartInfo(pInfo->pFillInfo, pInfo->existNewGroupBlock->info.rows, ekey);
3215 3216
  taosFillSetInputDataBlock(pInfo->pFillInfo, pInfo->existNewGroupBlock);

3217
  doFillTimeIntervalGapsInResults(pInfo->pFillInfo, pInfo->pRes, pResultInfo->capacity);
3218 3219 3220 3221
  pInfo->existNewGroupBlock = NULL;
  *newgroup = true;
}

L
Liu Jicong 已提交
3222 3223
static void doHandleRemainBlockFromNewGroup(SFillOperatorInfo* pInfo, SResultInfo* pResultInfo, bool* newgroup,
                                            SExecTaskInfo* pTaskInfo) {
3224 3225
  if (taosFillHasMoreResults(pInfo->pFillInfo)) {
    *newgroup = false;
3226
    doFillTimeIntervalGapsInResults(pInfo->pFillInfo, pInfo->pRes, (int32_t)pResultInfo->capacity);
H
Haojun Liao 已提交
3227
    if (pInfo->pRes->info.rows > pResultInfo->threshold || (!pInfo->multigroupResult)) {
3228 3229 3230 3231 3232 3233
      return;
    }
  }

  // handle the cached new group data block
  if (pInfo->existNewGroupBlock) {
3234
    doHandleRemainBlockForNewGroupImpl(pInfo, pResultInfo, newgroup, pTaskInfo);
3235 3236 3237
  }
}

3238
static SSDataBlock* doFill(SOperatorInfo* pOperator) {
L
Liu Jicong 已提交
3239 3240
  SFillOperatorInfo* pInfo = pOperator->info;
  SExecTaskInfo*     pTaskInfo = pOperator->pTaskInfo;
3241

H
Haojun Liao 已提交
3242
  SResultInfo* pResultInfo = &pOperator->resultInfo;
3243 3244 3245
  SSDataBlock* pResBlock = pInfo->pRes;

  blockDataCleanup(pResBlock);
3246 3247 3248 3249
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

3250
  // todo handle different group data interpolation
X
Xiaoyu Wang 已提交
3251 3252
  bool  n = false;
  bool* newgroup = &n;
3253
  doHandleRemainBlockFromNewGroup(pInfo, pResultInfo, newgroup, pTaskInfo);
3254 3255
  if (pResBlock->info.rows > pResultInfo->threshold || (!pInfo->multigroupResult && pResBlock->info.rows > 0)) {
    return pResBlock;
H
Haojun Liao 已提交
3256
  }
3257

H
Haojun Liao 已提交
3258
  SOperatorInfo* pDownstream = pOperator->pDownstream[0];
L
Liu Jicong 已提交
3259
  while (1) {
3260
    SSDataBlock* pBlock = pDownstream->fpSet.getNextFn(pDownstream);
3261 3262 3263 3264 3265 3266 3267 3268 3269 3270
    if (*newgroup) {
      assert(pBlock != NULL);
    }

    if (*newgroup && pInfo->totalInputRows > 0) {  // there are already processed current group data block
      pInfo->existNewGroupBlock = pBlock;
      *newgroup = false;

      // Fill the previous group data block, before handle the data block of new group.
      // Close the fill operation for previous group data block
3271
      taosFillSetStartInfo(pInfo->pFillInfo, 0, pTaskInfo->window.ekey);
3272 3273 3274 3275 3276 3277 3278
    } else {
      if (pBlock == NULL) {
        if (pInfo->totalInputRows == 0) {
          pOperator->status = OP_EXEC_DONE;
          return NULL;
        }

3279
        taosFillSetStartInfo(pInfo->pFillInfo, 0, pTaskInfo->window.ekey);
3280 3281 3282 3283 3284 3285 3286
      } else {
        pInfo->totalInputRows += pBlock->info.rows;
        taosFillSetStartInfo(pInfo->pFillInfo, pBlock->info.rows, pBlock->info.window.ekey);
        taosFillSetInputDataBlock(pInfo->pFillInfo, pBlock);
      }
    }

3287 3288
    blockDataEnsureCapacity(pResBlock, pOperator->resultInfo.capacity);
    doFillTimeIntervalGapsInResults(pInfo->pFillInfo, pResBlock, pOperator->resultInfo.capacity);
3289 3290

    // current group has no more result to return
3291
    if (pResBlock->info.rows > 0) {
3292 3293
      // 1. The result in current group not reach the threshold of output result, continue
      // 2. If multiple group results existing in one SSDataBlock is not allowed, return immediately
3294 3295
      if (pResBlock->info.rows > pResultInfo->threshold || pBlock == NULL || (!pInfo->multigroupResult)) {
        return pResBlock;
3296 3297
      }

3298
      doHandleRemainBlockFromNewGroup(pInfo, pResultInfo, newgroup, pTaskInfo);
3299 3300
      if (pResBlock->info.rows > pOperator->resultInfo.threshold || pBlock == NULL) {
        return pResBlock;
3301 3302 3303
      }
    } else if (pInfo->existNewGroupBlock) {  // try next group
      assert(pBlock != NULL);
3304
      doHandleRemainBlockForNewGroupImpl(pInfo, pResultInfo, newgroup, pTaskInfo);
3305 3306
      if (pResBlock->info.rows > pResultInfo->threshold) {
        return pResBlock;
3307 3308 3309 3310 3311 3312 3313
      }
    } else {
      return NULL;
    }
  }
}

H
Haojun Liao 已提交
3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324
static void destroyExprInfo(SExprInfo* pExpr, int32_t numOfExprs) {
  for (int32_t i = 0; i < numOfExprs; ++i) {
    SExprInfo* pExprInfo = &pExpr[i];
    if (pExprInfo->pExpr->nodeType == QUERY_NODE_COLUMN) {
      taosMemoryFree(pExprInfo->base.pParam[0].pCol);
    }
    taosMemoryFree(pExprInfo->base.pParam);
    taosMemoryFree(pExprInfo->pExpr);
  }
}

3325 3326 3327 3328 3329
static void destroyOperatorInfo(SOperatorInfo* pOperator) {
  if (pOperator == NULL) {
    return;
  }

3330
  if (pOperator->fpSet.closeFn != NULL) {
3331
    pOperator->fpSet.closeFn(pOperator->info, pOperator->exprSupp.numOfExprs);
3332 3333
  }

H
Haojun Liao 已提交
3334
  if (pOperator->pDownstream != NULL) {
L
Liu Jicong 已提交
3335
    for (int32_t i = 0; i < pOperator->numOfDownstream; ++i) {
H
Haojun Liao 已提交
3336
      destroyOperatorInfo(pOperator->pDownstream[i]);
3337 3338
    }

wafwerar's avatar
wafwerar 已提交
3339
    taosMemoryFreeClear(pOperator->pDownstream);
H
Haojun Liao 已提交
3340
    pOperator->numOfDownstream = 0;
3341 3342
  }

3343 3344
  if (pOperator->exprSupp.pExprInfo != NULL) {
    destroyExprInfo(pOperator->exprSupp.pExprInfo, pOperator->exprSupp.numOfExprs);
H
Haojun Liao 已提交
3345 3346
  }

3347
  taosMemoryFreeClear(pOperator->exprSupp.pExprInfo);
wafwerar's avatar
wafwerar 已提交
3348 3349
  taosMemoryFreeClear(pOperator->info);
  taosMemoryFreeClear(pOperator);
3350 3351
}

3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366
int32_t getBufferPgSize(int32_t rowSize, uint32_t* defaultPgsz, uint32_t* defaultBufsz) {
  *defaultPgsz = 4096;
  while (*defaultPgsz < rowSize * 4) {
    *defaultPgsz <<= 1u;
  }

  // at least four pages need to be in buffer
  *defaultBufsz = 4096 * 256;
  if ((*defaultBufsz) <= (*defaultPgsz)) {
    (*defaultBufsz) = (*defaultPgsz) * 4;
  }

  return 0;
}

dengyihao's avatar
dengyihao 已提交
3367 3368
int32_t doInitAggInfoSup(SAggSupporter* pAggSup, SqlFunctionCtx* pCtx, int32_t numOfOutput, size_t keyBufSize,
                         const char* pKey) {
3369 3370
  _hash_fn_t hashFn = taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY);

dengyihao's avatar
dengyihao 已提交
3371 3372
  pAggSup->resultRowSize = getResultRowSize(pCtx, numOfOutput);
  pAggSup->keyBuf = taosMemoryCalloc(1, keyBufSize + POINTER_BYTES + sizeof(int64_t));
3373 3374
  pAggSup->pResultRowHashTable = taosHashInit(10, hashFn, true, HASH_NO_LOCK);

H
Haojun Liao 已提交
3375
  if (pAggSup->keyBuf == NULL || pAggSup->pResultRowHashTable == NULL) {
3376 3377 3378
    return TSDB_CODE_OUT_OF_MEMORY;
  }

dengyihao's avatar
dengyihao 已提交
3379
  uint32_t defaultPgsz = 0;
3380 3381
  uint32_t defaultBufsz = 0;
  getBufferPgSize(pAggSup->resultRowSize, &defaultPgsz, &defaultBufsz);
H
Haojun Liao 已提交
3382

3383
  int32_t code = createDiskbasedBuf(&pAggSup->pResultBuf, defaultPgsz, defaultBufsz, pKey, TD_TMP_DIR_PATH);
H
Haojun Liao 已提交
3384 3385 3386 3387
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

3388 3389 3390
  return TSDB_CODE_SUCCESS;
}

3391
void cleanupAggSup(SAggSupporter* pAggSup) {
wafwerar's avatar
wafwerar 已提交
3392
  taosMemoryFreeClear(pAggSup->keyBuf);
3393
  taosHashCleanup(pAggSup->pResultRowHashTable);
H
Haojun Liao 已提交
3394
  destroyDiskbasedBuf(pAggSup->pResultBuf);
3395 3396
}

L
Liu Jicong 已提交
3397 3398
int32_t initAggInfo(SExprSupp* pSup, SAggSupporter* pAggSup, SExprInfo* pExprInfo, int32_t numOfCols, size_t keyBufSize,
                    const char* pkey) {
3399 3400 3401 3402 3403
  int32_t code = initExprSupp(pSup, pExprInfo, numOfCols);
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

3404
  doInitAggInfoSup(pAggSup, pSup->pCtx, numOfCols, keyBufSize, pkey);
L
Liu Jicong 已提交
3405
  for (int32_t i = 0; i < numOfCols; ++i) {
3406
    pSup->pCtx[i].pBuf = pAggSup->pResultBuf;
3407 3408
  }

3409
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
3410 3411
}

3412 3413 3414 3415 3416 3417 3418 3419 3420
void initResultSizeInfo(SOperatorInfo* pOperator, int32_t numOfRows) {
  pOperator->resultInfo.capacity = numOfRows;
  pOperator->resultInfo.threshold = numOfRows * 0.75;

  if (pOperator->resultInfo.threshold == 0) {
    pOperator->resultInfo.capacity = numOfRows;
  }
}

3421 3422 3423 3424 3425
void initBasicInfo(SOptrBasicInfo* pInfo, SSDataBlock* pBlock) {
  pInfo->pRes = pBlock;
  initResultRowInfo(&pInfo->resultRowInfo);
}

3426
int32_t initExprSupp(SExprSupp* pSup, SExprInfo* pExprInfo, int32_t numOfExpr) {
3427 3428 3429 3430
  pSup->pExprInfo = pExprInfo;
  pSup->numOfExprs = numOfExpr;
  if (pSup->pExprInfo != NULL) {
    pSup->pCtx = createSqlFunctionCtx(pExprInfo, numOfExpr, &pSup->rowEntryInfoOffset);
3431 3432 3433
    if (pSup->pCtx == NULL) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
3434
  }
3435 3436

  return TSDB_CODE_SUCCESS;
3437 3438
}

L
Liu Jicong 已提交
3439
SOperatorInfo* createAggregateOperatorInfo(SOperatorInfo* downstream, SExprInfo* pExprInfo, int32_t numOfCols,
3440
                                           SSDataBlock* pResultBlock, SExprInfo* pScalarExprInfo,
wmmhello's avatar
wmmhello 已提交
3441
                                           int32_t numOfScalarExpr, SExecTaskInfo* pTaskInfo) {
wafwerar's avatar
wafwerar 已提交
3442
  SAggOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SAggOperatorInfo));
L
Liu Jicong 已提交
3443
  SOperatorInfo*    pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
H
Haojun Liao 已提交
3444 3445 3446
  if (pInfo == NULL || pOperator == NULL) {
    goto _error;
  }
H
Haojun Liao 已提交
3447

3448
  int32_t numOfRows = 1024;
dengyihao's avatar
dengyihao 已提交
3449
  size_t  keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
3450 3451

  initResultSizeInfo(pOperator, numOfRows);
3452
  int32_t code = initAggInfo(&pOperator->exprSupp, &pInfo->aggSup, pExprInfo, numOfCols, keyBufSize, pTaskInfo->id.str);
L
Liu Jicong 已提交
3453
  if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
3454 3455
    goto _error;
  }
H
Haojun Liao 已提交
3456

3457
  initBasicInfo(&pInfo->binfo, pResultBlock);
3458 3459 3460 3461
  code = initExprSupp(&pInfo->scalarExprSup, pScalarExprInfo, numOfScalarExpr);
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
3462

L
Liu Jicong 已提交
3463
  pInfo->groupId = INT32_MIN;
dengyihao's avatar
dengyihao 已提交
3464
  pOperator->name = "TableAggregate";
3465
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_HASH_AGG;
3466
  pOperator->blocking = true;
dengyihao's avatar
dengyihao 已提交
3467 3468 3469
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
  pOperator->pTaskInfo = pTaskInfo;
H
Haojun Liao 已提交
3470

3471 3472
  pOperator->fpSet = createOperatorFpSet(doOpenAggregateOptr, getAggregateResult, NULL, NULL, destroyAggOperatorInfo,
                                         aggEncodeResultRow, aggDecodeResultRow, NULL);
H
Haojun Liao 已提交
3473 3474 3475 3476 3477

  code = appendDownstream(pOperator, &downstream, 1);
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
3478 3479

  return pOperator;
L
Liu Jicong 已提交
3480
_error:
H
Haojun Liao 已提交
3481
  destroyAggOperatorInfo(pInfo, numOfCols);
wafwerar's avatar
wafwerar 已提交
3482 3483
  taosMemoryFreeClear(pInfo);
  taosMemoryFreeClear(pOperator);
H
Haojun Liao 已提交
3484 3485
  pTaskInfo->code = TSDB_CODE_OUT_OF_MEMORY;
  return NULL;
3486 3487
}

3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506
static void* destroySqlFunctionCtx(SqlFunctionCtx* pCtx, int32_t numOfOutput) {
  if (pCtx == NULL) {
    return NULL;
  }

  for (int32_t i = 0; i < numOfOutput; ++i) {
    for (int32_t j = 0; j < pCtx[i].numOfParams; ++j) {
      taosVariantDestroy(&pCtx[i].param[j].param);
    }

    taosMemoryFreeClear(pCtx[i].subsidiaries.pCtx);
    taosMemoryFree(pCtx[i].input.pData);
    taosMemoryFree(pCtx[i].input.pColumnDataAgg);
  }

  taosMemoryFreeClear(pCtx);
  return NULL;
}

3507
void cleanupBasicInfo(SOptrBasicInfo* pInfo) {
3508 3509
  assert(pInfo != NULL);
  cleanupResultRowInfo(&pInfo->resultRowInfo);
H
Haojun Liao 已提交
3510
  pInfo->pRes = blockDataDestroy(pInfo->pRes);
3511 3512
}

H
Haojun Liao 已提交
3513
void destroyBasicOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
3514
  SOptrBasicInfo* pInfo = (SOptrBasicInfo*)param;
3515
  cleanupBasicInfo(pInfo);
3516
}
H
Haojun Liao 已提交
3517 3518

void destroyAggOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
3519
  SAggOperatorInfo* pInfo = (SAggOperatorInfo*)param;
3520
  cleanupBasicInfo(&pInfo->binfo);
3521
}
3522

H
Haojun Liao 已提交
3523
void destroySFillOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
3524
  SFillOperatorInfo* pInfo = (SFillOperatorInfo*)param;
3525
  pInfo->pFillInfo = taosDestroyFillInfo(pInfo->pFillInfo);
H
Haojun Liao 已提交
3526
  pInfo->pRes = blockDataDestroy(pInfo->pRes);
wafwerar's avatar
wafwerar 已提交
3527
  taosMemoryFreeClear(pInfo->p);
3528 3529
}

H
Haojun Liao 已提交
3530
static void destroyProjectOperatorInfo(void* param, int32_t numOfOutput) {
D
fix bug  
dapan 已提交
3531 3532 3533
  if (NULL == param) {
    return;
  }
L
Liu Jicong 已提交
3534
  SProjectOperatorInfo* pInfo = (SProjectOperatorInfo*)param;
3535
  cleanupBasicInfo(&pInfo->binfo);
H
Haojun Liao 已提交
3536
  cleanupAggSup(&pInfo->aggSup);
H
Haojun Liao 已提交
3537
  taosArrayDestroy(pInfo->pPseudoColInfo);
3538 3539
}

3540
void cleanupExecSupp(SExprSupp* pSupp) {
3541 3542 3543 3544 3545 3546
  destroySqlFunctionCtx(pSupp->pCtx, pSupp->numOfExprs);
  destroyExprInfo(pSupp->pExprInfo, pSupp->numOfExprs);

  taosMemoryFree(pSupp->rowEntryInfoOffset);
}

H
Haojun Liao 已提交
3547
static void destroyIndefinitOperatorInfo(void* param, int32_t numOfOutput) {
3548
  SIndefOperatorInfo* pInfo = (SIndefOperatorInfo*)param;
3549
  cleanupBasicInfo(&pInfo->binfo);
H
Haojun Liao 已提交
3550 3551 3552

  taosArrayDestroy(pInfo->pPseudoColInfo);
  cleanupAggSup(&pInfo->aggSup);
3553
  cleanupExecSupp(&pInfo->scalarSup);
H
Haojun Liao 已提交
3554 3555
}

H
Haojun Liao 已提交
3556
void destroyExchangeOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
3557
  SExchangeInfo* pExInfo = (SExchangeInfo*)param;
3558 3559 3560 3561
  taosRemoveRef(exchangeObjRefPool, pExInfo->self);
}

void doDestroyExchangeOperatorInfo(void* param) {
X
Xiaoyu Wang 已提交
3562
  SExchangeInfo* pExInfo = (SExchangeInfo*)param;
3563

H
Haojun Liao 已提交
3564 3565 3566 3567 3568 3569 3570 3571 3572
  taosArrayDestroy(pExInfo->pSources);
  taosArrayDestroy(pExInfo->pSourceDataInfo);
  if (pExInfo->pResult != NULL) {
    blockDataDestroy(pExInfo->pResult);
  }

  tsem_destroy(&pExInfo->ready);
}

H
Haojun Liao 已提交
3573 3574
static SArray* setRowTsColumnOutputInfo(SqlFunctionCtx* pCtx, int32_t numOfCols) {
  SArray* pList = taosArrayInit(4, sizeof(int32_t));
dengyihao's avatar
dengyihao 已提交
3575
  for (int32_t i = 0; i < numOfCols; ++i) {
H
Haojun Liao 已提交
3576 3577 3578 3579 3580 3581 3582 3583
    if (fmIsPseudoColumnFunc(pCtx[i].functionId)) {
      taosArrayPush(pList, &i);
    }
  }

  return pList;
}

3584 3585 3586 3587
static int64_t getLimit(SNode* pLimit) { return NULL == pLimit ? -1 : ((SLimitNode*)pLimit)->limit; }

static int64_t getOffset(SNode* pLimit) { return NULL == pLimit ? -1 : ((SLimitNode*)pLimit)->offset; }

L
Liu Jicong 已提交
3588
SOperatorInfo* createProjectOperatorInfo(SOperatorInfo* downstream, SProjectPhysiNode* pProjPhyNode,
dengyihao's avatar
dengyihao 已提交
3589
                                         SExecTaskInfo* pTaskInfo) {
wafwerar's avatar
wafwerar 已提交
3590
  SProjectOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SProjectOperatorInfo));
L
Liu Jicong 已提交
3591
  SOperatorInfo*        pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
H
Haojun Liao 已提交
3592 3593 3594
  if (pInfo == NULL || pOperator == NULL) {
    goto _error;
  }
3595

L
Liu Jicong 已提交
3596
  int32_t    numOfCols = 0;
3597 3598 3599
  SExprInfo* pExprInfo = createExprInfo(pProjPhyNode->pProjections, NULL, &numOfCols);

  SSDataBlock* pResBlock = createResDataBlock(pProjPhyNode->node.pOutputDataBlockDesc);
3600 3601
  SLimit       limit = {.limit = getLimit(pProjPhyNode->node.pLimit), .offset = getOffset(pProjPhyNode->node.pLimit)};
  SLimit slimit = {.limit = getLimit(pProjPhyNode->node.pSlimit), .offset = getOffset(pProjPhyNode->node.pSlimit)};
3602

L
Liu Jicong 已提交
3603 3604 3605 3606
  pInfo->limit = limit;
  pInfo->slimit = slimit;
  pInfo->curOffset = limit.offset;
  pInfo->curSOffset = slimit.offset;
H
Haojun Liao 已提交
3607
  pInfo->binfo.pRes = pResBlock;
3608
  pInfo->pFilterNode = pProjPhyNode->node.pConditions;
H
Haojun Liao 已提交
3609 3610

  int32_t numOfRows = 4096;
dengyihao's avatar
dengyihao 已提交
3611
  size_t  keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
3612

3613 3614 3615 3616 3617
  // Make sure the size of SSDataBlock will never exceed the size of 2MB.
  int32_t TWOMB = 2 * 1024 * 1024;
  if (numOfRows * pResBlock->info.rowSize > TWOMB) {
    numOfRows = TWOMB / pResBlock->info.rowSize;
  }
3618
  initResultSizeInfo(pOperator, numOfRows);
3619

3620 3621
  initAggInfo(&pOperator->exprSupp, &pInfo->aggSup, pExprInfo, numOfCols, keyBufSize, pTaskInfo->id.str);
  initBasicInfo(&pInfo->binfo, pResBlock);
3622
  setFunctionResultOutput(pOperator, &pInfo->binfo, &pInfo->aggSup, MAIN_SCAN, numOfCols);
3623

3624
  pInfo->pPseudoColInfo = setRowTsColumnOutputInfo(pOperator->exprSupp.pCtx, numOfCols);
X
Xiaoyu Wang 已提交
3625
  pOperator->name = "ProjectOperator";
H
Haojun Liao 已提交
3626
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_PROJECT;
X
Xiaoyu Wang 已提交
3627 3628 3629 3630
  pOperator->blocking = false;
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
  pOperator->pTaskInfo = pTaskInfo;
3631

L
Liu Jicong 已提交
3632 3633
  pOperator->fpSet = createOperatorFpSet(operatorDummyOpenFn, doProjectOperation, NULL, NULL,
                                         destroyProjectOperatorInfo, NULL, NULL, NULL);
L
Liu Jicong 已提交
3634

3635
  int32_t code = appendDownstream(pOperator, &downstream, 1);
H
Haojun Liao 已提交
3636
  if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
3637 3638
    goto _error;
  }
3639 3640

  return pOperator;
H
Haojun Liao 已提交
3641

L
Liu Jicong 已提交
3642
_error:
H
Haojun Liao 已提交
3643 3644
  pTaskInfo->code = TSDB_CODE_OUT_OF_MEMORY;
  return NULL;
3645 3646
}

H
Haojun Liao 已提交
3647 3648
static SSDataBlock* doApplyIndefinitFunction(SOperatorInfo* pOperator) {
  SIndefOperatorInfo* pIndefInfo = pOperator->info;
3649
  SOptrBasicInfo*     pInfo = &pIndefInfo->binfo;
L
Liu Jicong 已提交
3650
  SExprSupp*          pSup = &pOperator->exprSupp;
H
Haojun Liao 已提交
3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684

  SSDataBlock* pRes = pInfo->pRes;
  blockDataCleanup(pRes);

  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

  int64_t st = 0;
  int32_t order = 0;
  int32_t scanFlag = 0;

  if (pOperator->cost.openCost == 0) {
    st = taosGetTimestampUs();
  }

  SOperatorInfo* downstream = pOperator->pDownstream[0];

  while (1) {
    // The downstream exec may change the value of the newgroup, so use a local variable instead.
    SSDataBlock* pBlock = downstream->fpSet.getNextFn(downstream);
    if (pBlock == NULL) {
      doSetOperatorCompleted(pOperator);
      break;
    }

    // the pDataBlock are always the same one, no need to call this again
    int32_t code = getTableScanInfo(pOperator->pDownstream[0], &order, &scanFlag);
    if (code != TSDB_CODE_SUCCESS) {
      longjmp(pTaskInfo->env, code);
    }

    // there is an scalar expression that needs to be calculated before apply the group aggregation.
3685
    SExprSupp* pScalarSup = &pIndefInfo->scalarSup;
3686 3687
    if (pScalarSup->pExprInfo != NULL) {
      code = projectApplyFunctions(pScalarSup->pExprInfo, pBlock, pBlock, pScalarSup->pCtx, pScalarSup->numOfExprs,
L
Liu Jicong 已提交
3688
                                   pIndefInfo->pPseudoColInfo);
H
Haojun Liao 已提交
3689 3690 3691 3692 3693
      if (code != TSDB_CODE_SUCCESS) {
        longjmp(pTaskInfo->env, code);
      }
    }

3694
    setInputDataBlock(pOperator, pSup->pCtx, pBlock, order, scanFlag, false);
H
Haojun Liao 已提交
3695 3696
    blockDataEnsureCapacity(pInfo->pRes, pInfo->pRes->info.rows + pBlock->info.rows);

L
Liu Jicong 已提交
3697 3698
    code = projectApplyFunctions(pOperator->exprSupp.pExprInfo, pInfo->pRes, pBlock, pSup->pCtx,
                                 pOperator->exprSupp.numOfExprs, pIndefInfo->pPseudoColInfo);
H
Haojun Liao 已提交
3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713
    if (code != TSDB_CODE_SUCCESS) {
      longjmp(pTaskInfo->env, code);
    }
  }

  size_t rows = pInfo->pRes->info.rows;
  pOperator->resultInfo.totalRows += rows;

  if (pOperator->cost.openCost == 0) {
    pOperator->cost.openCost = (taosGetTimestampUs() - st) / 1000.0;
  }

  return (rows > 0) ? pInfo->pRes : NULL;
}

3714 3715
SOperatorInfo* createIndefinitOutputOperatorInfo(SOperatorInfo* downstream, SPhysiNode* pNode,
                                                 SExecTaskInfo* pTaskInfo) {
H
Haojun Liao 已提交
3716
  SIndefOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SIndefOperatorInfo));
3717
  SOperatorInfo*      pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
H
Haojun Liao 已提交
3718 3719 3720 3721
  if (pInfo == NULL || pOperator == NULL) {
    goto _error;
  }

3722 3723
  SExprSupp* pSup = &pOperator->exprSupp;

H
Haojun Liao 已提交
3724 3725 3726
  SIndefRowsFuncPhysiNode* pPhyNode = (SIndefRowsFuncPhysiNode*)pNode;

  int32_t    numOfExpr = 0;
X
Xiaoyu Wang 已提交
3727
  SExprInfo* pExprInfo = createExprInfo(pPhyNode->pFuncs, NULL, &numOfExpr);
H
Haojun Liao 已提交
3728 3729

  if (pPhyNode->pExprs != NULL) {
3730
    int32_t    num = 0;
3731
    SExprInfo* pSExpr = createExprInfo(pPhyNode->pExprs, NULL, &num);
3732
    int32_t    code = initExprSupp(&pInfo->scalarSup, pSExpr, num);
3733 3734 3735
    if (code != TSDB_CODE_SUCCESS) {
      goto _error;
    }
H
Haojun Liao 已提交
3736 3737
  }

3738
  SSDataBlock* pResBlock = createResDataBlock(pPhyNode->node.pOutputDataBlockDesc);
H
Haojun Liao 已提交
3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749

  int32_t numOfRows = 4096;
  size_t  keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;

  // Make sure the size of SSDataBlock will never exceed the size of 2MB.
  int32_t TWOMB = 2 * 1024 * 1024;
  if (numOfRows * pResBlock->info.rowSize > TWOMB) {
    numOfRows = TWOMB / pResBlock->info.rowSize;
  }
  initResultSizeInfo(pOperator, numOfRows);

3750 3751 3752
  initAggInfo(&pOperator->exprSupp, &pInfo->aggSup, pExprInfo, numOfExpr, keyBufSize, pTaskInfo->id.str);
  initBasicInfo(&pInfo->binfo, pResBlock);

3753
  setFunctionResultOutput(pOperator, &pInfo->binfo, &pInfo->aggSup, MAIN_SCAN, numOfExpr);
H
Haojun Liao 已提交
3754

3755 3756
  pInfo->binfo.pRes = pResBlock;
  pInfo->pPseudoColInfo = setRowTsColumnOutputInfo(pSup->pCtx, numOfExpr);
H
Haojun Liao 已提交
3757

3758
  pOperator->name = "IndefinitOperator";
H
Haojun Liao 已提交
3759
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_PROJECT;
3760 3761 3762
  pOperator->blocking = false;
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
3763
  pOperator->exprSupp.numOfExprs = numOfExpr;
3764
  pOperator->pTaskInfo = pTaskInfo;
H
Haojun Liao 已提交
3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775

  pOperator->fpSet = createOperatorFpSet(operatorDummyOpenFn, doApplyIndefinitFunction, NULL, NULL,
                                         destroyIndefinitOperatorInfo, NULL, NULL, NULL);

  int32_t code = appendDownstream(pOperator, &downstream, 1);
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }

  return pOperator;

3776
_error:
H
Haojun Liao 已提交
3777 3778 3779 3780 3781 3782
  taosMemoryFree(pInfo);
  taosMemoryFree(pOperator);
  pTaskInfo->code = TSDB_CODE_OUT_OF_MEMORY;
  return NULL;
}

3783
static int32_t initFillInfo(SFillOperatorInfo* pInfo, SExprInfo* pExpr, int32_t numOfCols, SNodeListNode* pValNode,
L
Liu Jicong 已提交
3784
                            STimeWindow win, int32_t capacity, const char* id, SInterval* pInterval, int32_t fillType) {
3785
  SFillColInfo* pColInfo = createFillColInfo(pExpr, numOfCols, pValNode);
H
Haojun Liao 已提交
3786 3787

  STimeWindow w = TSWINDOW_INITIALIZER;
3788
  getAlignQueryTimeWindow(pInterval, pInterval->precision, win.skey, &w);
H
Haojun Liao 已提交
3789 3790

  int32_t order = TSDB_ORDER_ASC;
3791
  pInfo->pFillInfo = taosCreateFillInfo(order, w.skey, 0, capacity, numOfCols, pInterval, fillType, pColInfo, id);
H
Haojun Liao 已提交
3792

wafwerar's avatar
wafwerar 已提交
3793
  pInfo->p = taosMemoryCalloc(numOfCols, POINTER_BYTES);
H
Haojun Liao 已提交
3794
  if (pInfo->pFillInfo == NULL || pInfo->p == NULL) {
H
Haojun Liao 已提交
3795 3796
    taosMemoryFree(pInfo->pFillInfo);
    taosMemoryFree(pInfo->p);
H
Haojun Liao 已提交
3797 3798 3799 3800 3801 3802
    return TSDB_CODE_OUT_OF_MEMORY;
  } else {
    return TSDB_CODE_SUCCESS;
  }
}

3803 3804 3805 3806 3807 3808 3809 3810
SOperatorInfo* createFillOperatorInfo(SOperatorInfo* downstream, SFillPhysiNode* pPhyFillNode, bool multigroupResult,
                                      SExecTaskInfo* pTaskInfo) {
  SFillOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SFillOperatorInfo));
  SOperatorInfo*     pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
  if (pInfo == NULL || pOperator == NULL) {
    goto _error;
  }

L
Liu Jicong 已提交
3811 3812 3813 3814 3815
  int32_t      num = 0;
  SSDataBlock* pResBlock = createResDataBlock(pPhyFillNode->node.pOutputDataBlockDesc);
  SExprInfo*   pExprInfo = createExprInfo(pPhyFillNode->pTargets, NULL, &num);
  SInterval*   pInterval = &((SIntervalAggOperatorInfo*)downstream->info)->interval;
  int32_t      type = convertFillType(pPhyFillNode->mode);
3816

H
Haojun Liao 已提交
3817
  SResultInfo* pResultInfo = &pOperator->resultInfo;
3818 3819
  initResultSizeInfo(pOperator, 4096);

3820 3821
  int32_t code = initFillInfo(pInfo, pExprInfo, num, (SNodeListNode*)pPhyFillNode->pValues, pPhyFillNode->timeRange,
                              pResultInfo->capacity, pTaskInfo->id.str, pInterval, type);
3822 3823 3824
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
3825

L
Liu Jicong 已提交
3826
  pInfo->pRes = pResBlock;
3827
  pInfo->multigroupResult = multigroupResult;
dengyihao's avatar
dengyihao 已提交
3828
  pOperator->name = "FillOperator";
3829
  pOperator->blocking = false;
dengyihao's avatar
dengyihao 已提交
3830
  pOperator->status = OP_NOT_OPENED;
3831
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_FILL;
3832 3833 3834 3835
  pOperator->exprSupp.pExprInfo = pExprInfo;
  pOperator->exprSupp.numOfExprs = num;
  pOperator->info = pInfo;
  pOperator->pTaskInfo = pTaskInfo;
H
Haojun Liao 已提交
3836

L
Liu Jicong 已提交
3837 3838
  pOperator->fpSet =
      createOperatorFpSet(operatorDummyOpenFn, doFill, NULL, NULL, destroySFillOperatorInfo, NULL, NULL, NULL);
3839

3840
  code = appendDownstream(pOperator, &downstream, 1);
3841
  return pOperator;
H
Haojun Liao 已提交
3842

L
Liu Jicong 已提交
3843
_error:
wafwerar's avatar
wafwerar 已提交
3844 3845
  taosMemoryFreeClear(pOperator);
  taosMemoryFreeClear(pInfo);
H
Haojun Liao 已提交
3846
  return NULL;
3847 3848
}

D
dapan1121 已提交
3849
static SExecTaskInfo* createExecTaskInfo(uint64_t queryId, uint64_t taskId, EOPTR_EXEC_MODEL model, char* dbFName) {
wafwerar's avatar
wafwerar 已提交
3850
  SExecTaskInfo* pTaskInfo = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
3851
  setTaskStatus(pTaskInfo, TASK_NOT_COMPLETED);
H
Haojun Liao 已提交
3852

D
dapan1121 已提交
3853
  pTaskInfo->schemaVer.dbname = strdup(dbFName);
3854
  pTaskInfo->cost.created = taosGetTimestampMs();
H
Haojun Liao 已提交
3855
  pTaskInfo->id.queryId = queryId;
dengyihao's avatar
dengyihao 已提交
3856
  pTaskInfo->execModel = model;
H
Haojun Liao 已提交
3857

wafwerar's avatar
wafwerar 已提交
3858
  char* p = taosMemoryCalloc(1, 128);
L
Liu Jicong 已提交
3859
  snprintf(p, 128, "TID:0x%" PRIx64 " QID:0x%" PRIx64, taskId, queryId);
H
Haojun Liao 已提交
3860
  pTaskInfo->id.str = p;
H
Haojun Liao 已提交
3861

3862 3863
  return pTaskInfo;
}
H
Haojun Liao 已提交
3864

H
Haojun Liao 已提交
3865
static SArray* extractColumnInfo(SNodeList* pNodeList);
3866

D
dapan1121 已提交
3867
int32_t extractTableSchemaVersion(SReadHandle* pHandle, uint64_t uid, SExecTaskInfo* pTaskInfo) {
3868 3869
  SMetaReader mr = {0};
  metaReaderInit(&mr, pHandle->meta, 0);
D
dapan1121 已提交
3870 3871 3872 3873 3874
  int32_t code = metaGetTableEntryByUid(&mr, uid);
  if (code) {
    metaReaderClear(&mr);
    return code;
  }
3875 3876 3877 3878

  pTaskInfo->schemaVer.tablename = strdup(mr.me.name);

  if (mr.me.type == TSDB_SUPER_TABLE) {
3879 3880
    pTaskInfo->schemaVer.sversion = mr.me.stbEntry.schemaRow.version;
    pTaskInfo->schemaVer.tversion = mr.me.stbEntry.schemaTag.version;
3881 3882 3883
  } else if (mr.me.type == TSDB_CHILD_TABLE) {
    tb_uid_t suid = mr.me.ctbEntry.suid;
    metaGetTableEntryByUid(&mr, suid);
3884 3885
    pTaskInfo->schemaVer.sversion = mr.me.stbEntry.schemaRow.version;
    pTaskInfo->schemaVer.tversion = mr.me.stbEntry.schemaTag.version;
3886
  } else {
3887
    pTaskInfo->schemaVer.sversion = mr.me.ntbEntry.schemaRow.version;
3888
  }
3889 3890

  metaReaderClear(&mr);
D
dapan1121 已提交
3891 3892

  return TSDB_CODE_SUCCESS;
3893 3894
}

wmmhello's avatar
wmmhello 已提交
3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953
static int32_t sortTableGroup(STableListInfo* pTableListInfo, int32_t groupNum){
  taosArrayClear(pTableListInfo->pGroupList);
  SArray *sortSupport = taosArrayInit(groupNum, sizeof(uint64_t));
  if(sortSupport == NULL) return TSDB_CODE_OUT_OF_MEMORY;
  for (int32_t i = 0; i < taosArrayGetSize(pTableListInfo->pTableList); i++) {
    STableKeyInfo* info = taosArrayGet(pTableListInfo->pTableList, i);
    uint64_t* groupId = taosHashGet(pTableListInfo->map, &info->uid, sizeof(uint64_t));

    int32_t index = taosArraySearchIdx(sortSupport, groupId, compareUint64Val, TD_EQ);
    if (index == -1){
      void *p = taosArraySearch(sortSupport, groupId, compareUint64Val, TD_GT);
      SArray *tGroup = taosArrayInit(8, sizeof(STableKeyInfo));
      if(tGroup == NULL) {
        taosArrayDestroy(sortSupport);
        return TSDB_CODE_OUT_OF_MEMORY;
      }
      if(taosArrayPush(tGroup, info) == NULL){
        qError("taos push info array error");
        taosArrayDestroy(sortSupport);
        return TSDB_CODE_QRY_APP_ERROR;
      }
      if(p == NULL){
        if(taosArrayPush(sortSupport, groupId) != NULL){
          qError("taos push support array error");
          taosArrayDestroy(sortSupport);
          return TSDB_CODE_QRY_APP_ERROR;
        }
        if(taosArrayPush(pTableListInfo->pGroupList, &tGroup) != NULL){
          qError("taos push group array error");
          taosArrayDestroy(sortSupport);
          return TSDB_CODE_QRY_APP_ERROR;
        }
      }else{
        int32_t pos = TARRAY_ELEM_IDX(sortSupport, p);
        if(taosArrayInsert(sortSupport, pos, groupId) == NULL){
          qError("taos insert support array error");
          taosArrayDestroy(sortSupport);
          return TSDB_CODE_QRY_APP_ERROR;
        }
        if(taosArrayInsert(pTableListInfo->pGroupList, pos, &tGroup) == NULL){
          qError("taos insert group array error");
          taosArrayDestroy(sortSupport);
          return TSDB_CODE_QRY_APP_ERROR;
        }
      }
    }else{
      SArray* tGroup = (SArray*)taosArrayGetP(pTableListInfo->pGroupList, index);
      if(taosArrayPush(tGroup, info) == NULL){
        qError("taos push uid array error");
        taosArrayDestroy(sortSupport);
        return TSDB_CODE_QRY_APP_ERROR;
      }
    }

  }
  taosArrayDestroy(sortSupport);
  return TDB_CODE_SUCCESS;
}

wmmhello's avatar
wmmhello 已提交
3954 3955
int32_t generateGroupIdMap(STableListInfo* pTableListInfo, SReadHandle* pHandle, SNodeList* group) {
  if (group == NULL) {
wmmhello's avatar
wmmhello 已提交
3956 3957 3958 3959 3960 3961 3962 3963
    return TDB_CODE_SUCCESS;
  }

  pTableListInfo->map = taosHashInit(32, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), false, HASH_NO_LOCK);
  if (pTableListInfo->map == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  int32_t keyLen = 0;
X
Xiaoyu Wang 已提交
3964
  void*   keyBuf = NULL;
wmmhello's avatar
wmmhello 已提交
3965 3966 3967 3968 3969

  SNode*           node;
  FOREACH(node, group) {
    SExprNode *pExpr =  (SExprNode *)node;
    keyLen += pExpr->resType.bytes;
wmmhello's avatar
wmmhello 已提交
3970 3971
  }

wmmhello's avatar
wmmhello 已提交
3972
  int32_t nullFlagSize = sizeof(int8_t) * LIST_LENGTH(group);
wmmhello's avatar
wmmhello 已提交
3973 3974 3975 3976 3977 3978 3979
  keyLen += nullFlagSize;

  keyBuf = taosMemoryCalloc(1, keyLen);
  if (keyBuf == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

3980
  int32_t groupNum = 0;
X
Xiaoyu Wang 已提交
3981 3982 3983
  for (int32_t i = 0; i < taosArrayGetSize(pTableListInfo->pTableList); i++) {
    STableKeyInfo* info = taosArrayGet(pTableListInfo->pTableList, i);
    SMetaReader    mr = {0};
wmmhello's avatar
wmmhello 已提交
3984 3985 3986
    metaReaderInit(&mr, pHandle->meta, 0);
    metaGetTableEntryByUid(&mr, info->uid);

wmmhello's avatar
wmmhello 已提交
3987 3988
    SNodeList *groupNew = nodesCloneList(group);

wmmhello's avatar
wmmhello 已提交
3989
    nodesRewriteExprsPostOrder(groupNew, doTranslateTagExpr, &mr);
wmmhello's avatar
wmmhello 已提交
3990
    char* isNull = (char*)keyBuf;
wmmhello's avatar
wmmhello 已提交
3991 3992 3993 3994 3995 3996 3997 3998 3999
    char* pStart = (char*)keyBuf + nullFlagSize;

    SNode* pNode;
    int32_t index = 0;
    FOREACH(pNode, groupNew){
      SNode*  pNew = NULL;
      int32_t code = scalarCalculateConstants(pNode, &pNew);
      if (TSDB_CODE_SUCCESS == code) {
        REPLACE_NODE(pNew);
X
Xiaoyu Wang 已提交
4000
      } else {
4001
        taosMemoryFree(keyBuf);
wmmhello's avatar
wmmhello 已提交
4002 4003
        nodesClearList(groupNew);
        return code;
wmmhello's avatar
wmmhello 已提交
4004
      }
4005

wmmhello's avatar
wmmhello 已提交
4006 4007
      ASSERT(nodeType(pNew) == QUERY_NODE_VALUE);
      SValueNode *pValue = (SValueNode *)pNew;
4008

wmmhello's avatar
wmmhello 已提交
4009 4010 4011 4012 4013 4014
      if (pValue->node.resType.type == TSDB_DATA_TYPE_NULL) {
        isNull[index++] = 1;
        continue;
      } else {
        isNull[index++] = 0;
        char*       data = nodesGetValueFromNode(pValue);
wmmhello's avatar
wmmhello 已提交
4015
        if (pValue->node.resType.type == TSDB_DATA_TYPE_JSON){
wmmhello's avatar
wmmhello 已提交
4016
          int32_t len = getJsonValueLen(data);
wmmhello's avatar
wmmhello 已提交
4017 4018 4019
          memcpy(pStart, data, len);
          pStart += len;
        } else if (IS_VAR_DATA_TYPE(pValue->node.resType.type)) {
wmmhello's avatar
wmmhello 已提交
4020 4021
          memcpy(pStart, data, varDataTLen(data));
          pStart += varDataTLen(data);
wmmhello's avatar
wmmhello 已提交
4022
        } else {
wmmhello's avatar
wmmhello 已提交
4023 4024
          memcpy(pStart, data, pValue->node.resType.bytes);
          pStart += pValue->node.resType.bytes;
wmmhello's avatar
wmmhello 已提交
4025 4026 4027
        }
      }
    }
X
Xiaoyu Wang 已提交
4028
    int32_t   len = (int32_t)(pStart - (char*)keyBuf);
4029 4030 4031
    uint64_t groupId = calcGroupId(keyBuf, len);
    taosHashPut(pTableListInfo->map, &(info->uid), sizeof(uint64_t), &groupId, sizeof(uint64_t));
    groupNum++;
wmmhello's avatar
wmmhello 已提交
4032

wmmhello's avatar
wmmhello 已提交
4033
    nodesClearList(groupNew);
wmmhello's avatar
wmmhello 已提交
4034 4035 4036
    metaReaderClear(&mr);
  }
  taosMemoryFree(keyBuf);
4037 4038

  if(pTableListInfo->needSortTableByGroupId){
wmmhello's avatar
wmmhello 已提交
4039
    return sortTableGroup(pTableListInfo, groupNum);
4040 4041
  }

wmmhello's avatar
wmmhello 已提交
4042 4043 4044
  return TDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
4045
SOperatorInfo* createOperatorTree(SPhysiNode* pPhyNode, SExecTaskInfo* pTaskInfo, SReadHandle* pHandle,
4046
                                  uint64_t queryId, uint64_t taskId, STableListInfo* pTableListInfo, const char* pUser) {
4047 4048
  int32_t type = nodeType(pPhyNode);

X
Xiaoyu Wang 已提交
4049
  if (pPhyNode->pChildren == NULL || LIST_LENGTH(pPhyNode->pChildren) == 0) {
H
Haojun Liao 已提交
4050
    if (QUERY_NODE_PHYSICAL_PLAN_TABLE_SCAN == type) {
dengyihao's avatar
dengyihao 已提交
4051
      STableScanPhysiNode* pTableScanNode = (STableScanPhysiNode*)pPhyNode;
H
Haojun Liao 已提交
4052

wmmhello's avatar
wmmhello 已提交
4053 4054
      int32_t code = createScanTableListInfo(pTableScanNode, pHandle, pTableListInfo, queryId, taskId);
      if(code){
wmmhello's avatar
wmmhello 已提交
4055
        pTaskInfo->code = code;
D
dapan1121 已提交
4056 4057
        return NULL;
      }
wmmhello's avatar
wmmhello 已提交
4058
      code = extractTableSchemaVersion(pHandle, pTableScanNode->scan.uid, pTaskInfo);
S
slzhou 已提交
4059
      if (code) {
4060
        pTaskInfo->code = terrno;
wmmhello's avatar
wmmhello 已提交
4061 4062 4063
        return NULL;
      }

wmmhello's avatar
wmmhello 已提交
4064
      SOperatorInfo*  pOperator = createTableScanOperatorInfo(pTableScanNode, pHandle, pTaskInfo, queryId, taskId);
4065 4066
      STableScanInfo* pScanInfo = pOperator->info;
      pTaskInfo->cost.pRecoder = &pScanInfo->readRecorder;
S
slzhou 已提交
4067
      return pOperator;
L
Liu Jicong 已提交
4068

S
slzhou 已提交
4069 4070
    } else if (QUERY_NODE_PHYSICAL_PLAN_TABLE_MERGE_SCAN == type) {
      STableMergeScanPhysiNode* pTableScanNode = (STableMergeScanPhysiNode*)pPhyNode;
wmmhello's avatar
wmmhello 已提交
4071 4072 4073 4074 4075 4076 4077 4078 4079
      int32_t code = createScanTableListInfo(pTableScanNode, pHandle, pTableListInfo, queryId, taskId);
      if(code){
        return NULL;
      }
      code = extractTableSchemaVersion(pHandle, pTableScanNode->scan.uid, pTaskInfo);
      if (code) {
        pTaskInfo->code = terrno;
        return NULL;
      }
wmmhello's avatar
wmmhello 已提交
4080

4081
      SOperatorInfo*  pOperator = createTableMergeScanOperatorInfo(pTableScanNode, pTableListInfo, pHandle, pTaskInfo, queryId, taskId);
wmmhello's avatar
wmmhello 已提交
4082

4083 4084 4085
      STableScanInfo* pScanInfo = pOperator->info;
      pTaskInfo->cost.pRecoder = &pScanInfo->readRecorder;
      return pOperator;
L
Liu Jicong 已提交
4086

H
Haojun Liao 已提交
4087
    } else if (QUERY_NODE_PHYSICAL_PLAN_EXCHANGE == type) {
4088
      return createExchangeOperatorInfo(pHandle->pMsgCb->clientRpc, (SExchangePhysiNode*)pPhyNode, pTaskInfo);
L
Liu Jicong 已提交
4089

H
Haojun Liao 已提交
4090
    } else if (QUERY_NODE_PHYSICAL_PLAN_STREAM_SCAN == type) {
5
54liuyao 已提交
4091
      STableScanPhysiNode* pTableScanNode = (STableScanPhysiNode*)pPhyNode;
4092
      STimeWindowAggSupp   twSup = {
L
Liu Jicong 已提交
4093 4094 4095 4096
            .waterMark = pTableScanNode->watermark,
            .calTrigger = pTableScanNode->triggerType,
            .maxTs = INT64_MIN,
      };
L
Liu Jicong 已提交
4097
      if (pHandle) {
wmmhello's avatar
wmmhello 已提交
4098
        createScanTableListInfo(pTableScanNode, pHandle, pTableListInfo, queryId, taskId);
5
54liuyao 已提交
4099
      }
4100

wmmhello's avatar
wmmhello 已提交
4101
      SOperatorInfo* pOperator = createStreamScanOperatorInfo(pHandle, pTableScanNode, pTaskInfo, &twSup, queryId, taskId);
H
Haojun Liao 已提交
4102
      return pOperator;
L
Liu Jicong 已提交
4103

H
Haojun Liao 已提交
4104
    } else if (QUERY_NODE_PHYSICAL_PLAN_SYSTABLE_SCAN == type) {
L
Liu Jicong 已提交
4105
      SSystemTableScanPhysiNode* pSysScanPhyNode = (SSystemTableScanPhysiNode*)pPhyNode;
4106
      return createSysTableScanOperatorInfo(pHandle, pSysScanPhyNode, pUser, pTaskInfo);
4107
    } else if (QUERY_NODE_PHYSICAL_PLAN_TAG_SCAN == type) {
X
Xiaoyu Wang 已提交
4108
      STagScanPhysiNode* pScanPhyNode = (STagScanPhysiNode*)pPhyNode;
4109

wmmhello's avatar
wmmhello 已提交
4110
      int32_t code = getTableList(pHandle->meta, pScanPhyNode, pTableListInfo);
4111
      if (code != TSDB_CODE_SUCCESS) {
4112
        pTaskInfo->code = terrno;
4113 4114 4115
        return NULL;
      }

4116
      return createTagScanOperatorInfo(pHandle, pScanPhyNode, pTableListInfo, pTaskInfo);
L
Liu Jicong 已提交
4117

4118
    } else if (QUERY_NODE_PHYSICAL_PLAN_BLOCK_DIST_SCAN == type) {
4119
      SBlockDistScanPhysiNode* pBlockNode = (SBlockDistScanPhysiNode*)pPhyNode;
4120 4121 4122 4123 4124 4125 4126 4127 4128
      pTableListInfo->pTableList = taosArrayInit(4, sizeof(STableKeyInfo));

      if (pBlockNode->tableType == TSDB_SUPER_TABLE) {
        int32_t code = tsdbGetAllTableList(pHandle->meta, pBlockNode->uid, pTableListInfo->pTableList);
        if (code != TSDB_CODE_SUCCESS) {
          pTaskInfo->code = terrno;
          return NULL;
        }
      } else {  // Create one table group.
wmmhello's avatar
wmmhello 已提交
4129
        STableKeyInfo info = {.lastKey = 0, .uid = pBlockNode->uid};
4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153
        taosArrayPush(pTableListInfo->pTableList, &info);
      }

      SQueryTableDataCond cond = {0};

      {
        cond.order = TSDB_ORDER_ASC;
        cond.numOfCols = 1;
        cond.colList = taosMemoryCalloc(1, sizeof(SColumnInfo));
        if (cond.colList == NULL) {
          terrno = TSDB_CODE_QRY_OUT_OF_MEMORY;
          return NULL;
        }

        cond.colList->colId = 1;
        cond.colList->type = TSDB_DATA_TYPE_TIMESTAMP;
        cond.colList->bytes = sizeof(TSKEY);

        cond.numOfTWindows = 1;
        cond.twindows = taosMemoryCalloc(1, sizeof(STimeWindow));
        cond.twindows[0] = (STimeWindow){.skey = INT64_MIN, .ekey = INT64_MAX};
        cond.suid = pBlockNode->suid;
        cond.type = BLOCK_LOAD_OFFSET_SEQ_ORDER;
      }
wmmhello's avatar
wmmhello 已提交
4154
      tsdbReaderT* pReader = tsdbReaderOpen(pHandle->vnode, &cond, pTableListInfo->pTableList, queryId, taskId);
4155 4156
      cleanupQueryTableDataCond(&cond);

4157
      return createDataBlockInfoScanOperator(pReader, pHandle, cond.suid, pBlockNode, pTaskInfo);
H
Haojun Liao 已提交
4158 4159
    } else {
      ASSERT(0);
H
Haojun Liao 已提交
4160 4161 4162
    }
  }

4163 4164
  int32_t num = 0;
  size_t  size = LIST_LENGTH(pPhyNode->pChildren);
H
Haojun Liao 已提交
4165

4166
  SOperatorInfo** ops = taosMemoryCalloc(size, POINTER_BYTES);
dengyihao's avatar
dengyihao 已提交
4167
  for (int32_t i = 0; i < size; ++i) {
4168
    SPhysiNode* pChildNode = (SPhysiNode*)nodesListGetNode(pPhyNode->pChildren, i);
4169
    ops[i] = createOperatorTree(pChildNode, pTaskInfo, pHandle, queryId, taskId, pTableListInfo, pUser);
4170 4171 4172
    if (ops[i] == NULL) {
      return NULL;
    }
4173
  }
H
Haojun Liao 已提交
4174

4175
  SOperatorInfo* pOptr = NULL;
H
Haojun Liao 已提交
4176
  if (QUERY_NODE_PHYSICAL_PLAN_PROJECT == type) {
4177
    pOptr = createProjectOperatorInfo(ops[0], (SProjectPhysiNode*)pPhyNode, pTaskInfo);
4178
  } else if (QUERY_NODE_PHYSICAL_PLAN_HASH_AGG == type) {
H
Haojun Liao 已提交
4179 4180
    SAggPhysiNode* pAggNode = (SAggPhysiNode*)pPhyNode;
    SExprInfo*     pExprInfo = createExprInfo(pAggNode->pAggFuncs, pAggNode->pGroupKeys, &num);
4181
    SSDataBlock*   pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
H
Haojun Liao 已提交
4182

dengyihao's avatar
dengyihao 已提交
4183
    int32_t    numOfScalarExpr = 0;
4184 4185 4186 4187 4188
    SExprInfo* pScalarExprInfo = NULL;
    if (pAggNode->pExprs != NULL) {
      pScalarExprInfo = createExprInfo(pAggNode->pExprs, NULL, &numOfScalarExpr);
    }

H
Haojun Liao 已提交
4189 4190
    if (pAggNode->pGroupKeys != NULL) {
      SArray* pColList = extractColumnInfo(pAggNode->pGroupKeys);
dengyihao's avatar
dengyihao 已提交
4191
      pOptr = createGroupOperatorInfo(ops[0], pExprInfo, num, pResBlock, pColList, pAggNode->node.pConditions,
wmmhello's avatar
wmmhello 已提交
4192
                                      pScalarExprInfo, numOfScalarExpr, pTaskInfo);
H
Haojun Liao 已提交
4193
    } else {
dengyihao's avatar
dengyihao 已提交
4194 4195
      pOptr =
          createAggregateOperatorInfo(ops[0], pExprInfo, num, pResBlock, pScalarExprInfo, numOfScalarExpr, pTaskInfo);
H
Haojun Liao 已提交
4196
    }
X
Xiaoyu Wang 已提交
4197
  } else if (QUERY_NODE_PHYSICAL_PLAN_HASH_INTERVAL == type || QUERY_NODE_PHYSICAL_PLAN_STREAM_INTERVAL == type) {
H
Haojun Liao 已提交
4198
    SIntervalPhysiNode* pIntervalPhyNode = (SIntervalPhysiNode*)pPhyNode;
H
Haojun Liao 已提交
4199

H
Haojun Liao 已提交
4200
    SExprInfo*   pExprInfo = createExprInfo(pIntervalPhyNode->window.pFuncs, NULL, &num);
4201
    SSDataBlock* pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
H
Haojun Liao 已提交
4202

dengyihao's avatar
dengyihao 已提交
4203 4204 4205 4206 4207 4208
    SInterval interval = {.interval = pIntervalPhyNode->interval,
                          .sliding = pIntervalPhyNode->sliding,
                          .intervalUnit = pIntervalPhyNode->intervalUnit,
                          .slidingUnit = pIntervalPhyNode->slidingUnit,
                          .offset = pIntervalPhyNode->offset,
                          .precision = ((SColumnNode*)pIntervalPhyNode->window.pTspk)->node.resType.precision};
H
Haojun Liao 已提交
4209

X
Xiaoyu Wang 已提交
4210 4211 4212 4213 4214
    STimeWindowAggSupp as = {
        .waterMark = pIntervalPhyNode->window.watermark,
        .calTrigger = pIntervalPhyNode->window.triggerType,
        .maxTs = INT64_MIN,
    };
4215
    ASSERT(as.calTrigger != STREAM_TRIGGER_MAX_DELAY);
4216

4217
    int32_t tsSlotId = ((SColumnNode*)pIntervalPhyNode->window.pTspk)->slotId;
L
Liu Jicong 已提交
4218 4219 4220
    bool    isStream = (QUERY_NODE_PHYSICAL_PLAN_STREAM_INTERVAL == type);
    pOptr =
        createIntervalOperatorInfo(ops[0], pExprInfo, num, pResBlock, &interval, tsSlotId, &as, pTaskInfo, isStream);
4221

4222 4223
  } else if (QUERY_NODE_PHYSICAL_PLAN_MERGE_ALIGNED_INTERVAL == type) {
    SMergeAlignedIntervalPhysiNode* pIntervalPhyNode = (SMergeAlignedIntervalPhysiNode*)pPhyNode;
S
shenglian zhou 已提交
4224 4225 4226 4227 4228 4229 4230 4231 4232 4233

    SExprInfo*   pExprInfo = createExprInfo(pIntervalPhyNode->window.pFuncs, NULL, &num);
    SSDataBlock* pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);

    SInterval interval = {.interval = pIntervalPhyNode->interval,
                          .sliding = pIntervalPhyNode->sliding,
                          .intervalUnit = pIntervalPhyNode->intervalUnit,
                          .slidingUnit = pIntervalPhyNode->slidingUnit,
                          .offset = pIntervalPhyNode->offset,
                          .precision = ((SColumnNode*)pIntervalPhyNode->window.pTspk)->node.resType.precision};
4234

S
shenglian zhou 已提交
4235
    int32_t tsSlotId = ((SColumnNode*)pIntervalPhyNode->window.pTspk)->slotId;
4236
    pOptr = createMergeAlignedIntervalOperatorInfo(ops[0], pExprInfo, num, pResBlock, &interval, tsSlotId, pTaskInfo);
S
shenglian zhou 已提交
4237
  } else if (QUERY_NODE_PHYSICAL_PLAN_MERGE_INTERVAL == type) {
X
Xiaoyu Wang 已提交
4238
    SMergeIntervalPhysiNode* pIntervalPhyNode = (SMergeIntervalPhysiNode*)pPhyNode;
S
shenglian zhou 已提交
4239 4240 4241 4242 4243 4244 4245 4246 4247 4248

    SExprInfo*   pExprInfo = createExprInfo(pIntervalPhyNode->window.pFuncs, NULL, &num);
    SSDataBlock* pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);

    SInterval interval = {.interval = pIntervalPhyNode->interval,
                          .sliding = pIntervalPhyNode->sliding,
                          .intervalUnit = pIntervalPhyNode->intervalUnit,
                          .slidingUnit = pIntervalPhyNode->slidingUnit,
                          .offset = pIntervalPhyNode->offset,
                          .precision = ((SColumnNode*)pIntervalPhyNode->window.pTspk)->node.resType.precision};
4249

S
shenglian zhou 已提交
4250 4251
    int32_t tsSlotId = ((SColumnNode*)pIntervalPhyNode->window.pTspk)->slotId;
    pOptr = createMergeIntervalOperatorInfo(ops[0], pExprInfo, num, pResBlock, &interval, tsSlotId, pTaskInfo);
5
54liuyao 已提交
4252
  } else if (QUERY_NODE_PHYSICAL_PLAN_STREAM_SEMI_INTERVAL == type) {
4253
    int32_t children = 0;
5
54liuyao 已提交
4254 4255
    pOptr = createStreamFinalIntervalOperatorInfo(ops[0], pPhyNode, pTaskInfo, children);
  } else if (QUERY_NODE_PHYSICAL_PLAN_STREAM_FINAL_INTERVAL == type) {
4256
    int32_t children = 1;
5
54liuyao 已提交
4257
    pOptr = createStreamFinalIntervalOperatorInfo(ops[0], pPhyNode, pTaskInfo, children);
H
Haojun Liao 已提交
4258
  } else if (QUERY_NODE_PHYSICAL_PLAN_SORT == type) {
4259
    pOptr = createSortOperatorInfo(ops[0], (SSortPhysiNode*)pPhyNode, pTaskInfo);
S
shenglian zhou 已提交
4260 4261
  } else if (QUERY_NODE_PHYSICAL_PLAN_GROUP_SORT == type) {
    pOptr = createGroupSortOperatorInfo(ops[0], (SGroupSortPhysiNode*)pPhyNode, pTaskInfo);
X
Xiaoyu Wang 已提交
4262
  } else if (QUERY_NODE_PHYSICAL_PLAN_MERGE == type) {
4263 4264 4265
    SMergePhysiNode* pMergePhyNode = (SMergePhysiNode*)pPhyNode;

    SDataBlockDescNode* pDescNode = pPhyNode->pOutputDataBlockDesc;
X
Xiaoyu Wang 已提交
4266
    SSDataBlock*        pResBlock = createResDataBlock(pDescNode);
4267

X
Xiaoyu Wang 已提交
4268
    SArray* sortInfo = createSortInfo(pMergePhyNode->pMergeKeys);
4269
    int32_t numOfOutputCols = 0;
X
Xiaoyu Wang 已提交
4270
    SArray* pColList =
4271
        extractColMatchInfo(pMergePhyNode->pTargets, pDescNode, &numOfOutputCols, COL_MATCH_FROM_SLOT_ID);
S
shenglian zhou 已提交
4272
    SPhysiNode*  pChildNode = (SPhysiNode*)nodesListGetNode(pPhyNode->pChildren, 0);
4273 4274
    SSDataBlock* pInputDataBlock = createResDataBlock(pChildNode->pOutputDataBlockDesc);
    pOptr = createMultiwaySortMergeOperatorInfo(ops, size, pInputDataBlock, pResBlock, sortInfo, pColList, pTaskInfo);
4275
  } else if (QUERY_NODE_PHYSICAL_PLAN_MERGE_SESSION == type) {
H
Haojun Liao 已提交
4276 4277
    SSessionWinodwPhysiNode* pSessionNode = (SSessionWinodwPhysiNode*)pPhyNode;

X
Xiaoyu Wang 已提交
4278 4279
    STimeWindowAggSupp as = {.waterMark = pSessionNode->window.watermark,
                             .calTrigger = pSessionNode->window.triggerType};
4280

H
Haojun Liao 已提交
4281
    SExprInfo*   pExprInfo = createExprInfo(pSessionNode->window.pFuncs, NULL, &num);
4282
    SSDataBlock* pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
4283 4284
    int32_t      tsSlotId = ((SColumnNode*)pSessionNode->window.pTspk)->slotId;

X
Xiaoyu Wang 已提交
4285 4286
    pOptr =
        createSessionAggOperatorInfo(ops[0], pExprInfo, num, pResBlock, pSessionNode->gap, tsSlotId, &as, pTaskInfo);
4287
  } else if (QUERY_NODE_PHYSICAL_PLAN_STREAM_SESSION == type) {
4288 4289 4290 4291 4292 4293 4294
    pOptr = createStreamSessionAggOperatorInfo(ops[0], pPhyNode, pTaskInfo);
  } else if (QUERY_NODE_PHYSICAL_PLAN_STREAM_SEMI_SESSION == type) {
    int32_t children = 0;
    pOptr = createStreamFinalSessionAggOperatorInfo(ops[0], pPhyNode, pTaskInfo, children);
  } else if (QUERY_NODE_PHYSICAL_PLAN_STREAM_FINAL_SESSION == type) {
    int32_t children = 1;
    pOptr = createStreamFinalSessionAggOperatorInfo(ops[0], pPhyNode, pTaskInfo, children);
H
Haojun Liao 已提交
4295
  } else if (QUERY_NODE_PHYSICAL_PLAN_PARTITION == type) {
4296
    pOptr = createPartitionOperatorInfo(ops[0], (SPartitionPhysiNode*)pPhyNode, pTaskInfo);
4297
  } else if (QUERY_NODE_PHYSICAL_PLAN_MERGE_STATE == type) {
dengyihao's avatar
dengyihao 已提交
4298
    SStateWinodwPhysiNode* pStateNode = (SStateWinodwPhysiNode*)pPhyNode;
4299

4300 4301
    STimeWindowAggSupp as = {.waterMark = pStateNode->window.watermark, .calTrigger = pStateNode->window.triggerType};

dengyihao's avatar
dengyihao 已提交
4302
    SExprInfo*   pExprInfo = createExprInfo(pStateNode->window.pFuncs, NULL, &num);
4303
    SSDataBlock* pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
4304 4305
    int32_t      tsSlotId = ((SColumnNode*)pStateNode->window.pTspk)->slotId;

4306
    SColumnNode* pColNode = (SColumnNode*)((STargetNode*)pStateNode->pStateKey)->pExpr;
X
Xiaoyu Wang 已提交
4307
    SColumn      col = extractColumnFromColumnNode(pColNode);
4308
    pOptr = createStatewindowOperatorInfo(ops[0], pExprInfo, num, pResBlock, &as, tsSlotId, &col, pTaskInfo);
4309
  } else if (QUERY_NODE_PHYSICAL_PLAN_STREAM_STATE == type) {
5
54liuyao 已提交
4310
    pOptr = createStreamStateAggOperatorInfo(ops[0], pPhyNode, pTaskInfo);
4311
  } else if (QUERY_NODE_PHYSICAL_PLAN_MERGE_JOIN == type) {
4312
    pOptr = createMergeJoinOperatorInfo(ops, size, (SJoinPhysiNode*)pPhyNode, pTaskInfo);
4313
  } else if (QUERY_NODE_PHYSICAL_PLAN_FILL == type) {
4314
    pOptr = createFillOperatorInfo(ops[0], (SFillPhysiNode*)pPhyNode, false, pTaskInfo);
H
Haojun Liao 已提交
4315 4316
  } else if (QUERY_NODE_PHYSICAL_PLAN_INDEF_ROWS_FUNC == type) {
    pOptr = createIndefinitOutputOperatorInfo(ops[0], pPhyNode, pTaskInfo);
4317 4318
  } else if (QUERY_NODE_PHYSICAL_PLAN_INTERP_FUNC == type) {
    pOptr = createTimeSliceOperatorInfo(ops[0], pPhyNode, pTaskInfo);
H
Haojun Liao 已提交
4319 4320
  } else {
    ASSERT(0);
H
Haojun Liao 已提交
4321
  }
4322 4323 4324

  taosMemoryFree(ops);
  return pOptr;
4325
}
H
Haojun Liao 已提交
4326

4327
int32_t compareTimeWindow(const void* p1, const void* p2, const void* param) {
dengyihao's avatar
dengyihao 已提交
4328 4329 4330
  const SQueryTableDataCond* pCond = param;
  const STimeWindow*         pWin1 = p1;
  const STimeWindow*         pWin2 = p2;
4331 4332 4333 4334 4335 4336 4337 4338
  if (pCond->order == TSDB_ORDER_ASC) {
    return pWin1->skey - pWin2->skey;
  } else if (pCond->order == TSDB_ORDER_DESC) {
    return pWin2->skey - pWin1->skey;
  }
  return 0;
}

H
Haojun Liao 已提交
4339
SArray* extractColumnInfo(SNodeList* pNodeList) {
L
Liu Jicong 已提交
4340
  size_t  numOfCols = LIST_LENGTH(pNodeList);
H
Haojun Liao 已提交
4341 4342 4343 4344 4345 4346
  SArray* pList = taosArrayInit(numOfCols, sizeof(SColumn));
  if (pList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

L
Liu Jicong 已提交
4347 4348
  for (int32_t i = 0; i < numOfCols; ++i) {
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pNodeList, i);
H
Haojun Liao 已提交
4349

4350 4351 4352
    if (nodeType(pNode->pExpr) == QUERY_NODE_COLUMN) {
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;

4353
      SColumn c = extractColumnFromColumnNode(pColNode);
4354 4355
      taosArrayPush(pList, &c);
    } else if (nodeType(pNode->pExpr) == QUERY_NODE_VALUE) {
L
Liu Jicong 已提交
4356 4357
      SValueNode* pValNode = (SValueNode*)pNode->pExpr;
      SColumn     c = {0};
4358
      c.slotId = pNode->slotId;
L
Liu Jicong 已提交
4359 4360 4361 4362
      c.colId = pNode->slotId;
      c.type = pValNode->node.type;
      c.bytes = pValNode->node.resType.bytes;
      c.scale = pValNode->node.resType.scale;
4363 4364 4365 4366
      c.precision = pValNode->node.resType.precision;

      taosArrayPush(pList, &c);
    }
H
Haojun Liao 已提交
4367 4368 4369 4370 4371
  }

  return pList;
}

L
Liu Jicong 已提交
4372
tsdbReaderT doCreateDataReader(STableScanPhysiNode* pTableScanNode, SReadHandle* pHandle,
wmmhello's avatar
wmmhello 已提交
4373 4374
                               STableListInfo* pTableListInfo, uint64_t queryId, uint64_t taskId) {
  int32_t code = getTableList(pHandle->meta, &pTableScanNode->scan, pTableListInfo);
wmmhello's avatar
wmmhello 已提交
4375 4376 4377 4378 4379 4380 4381 4382 4383 4384
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }

  if (taosArrayGetSize(pTableListInfo->pTableList) == 0) {
    code = 0;
    qDebug("no table qualified for query, TID:0x%" PRIx64 ", QID:0x%" PRIx64, taskId, queryId);
    goto _error;
  }

4385
  SQueryTableDataCond cond = {0};
wmmhello's avatar
wmmhello 已提交
4386
  code = initQueryTableDataCond(&cond, pTableScanNode);
4387
  if (code != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
4388
    goto _error;
X
Xiaoyu Wang 已提交
4389
  }
4390

wmmhello's avatar
wmmhello 已提交
4391
  tsdbReaderT pReader = tsdbReaderOpen(pHandle->vnode, &cond, pTableListInfo->pTableList, queryId, taskId);
4392
  cleanupQueryTableDataCond(&cond);
H
Haojun Liao 已提交
4393 4394

  return pReader;
wmmhello's avatar
wmmhello 已提交
4395 4396 4397 4398

_error:
  terrno = code;
  return NULL;
H
Haojun Liao 已提交
4399 4400
}

L
Liu Jicong 已提交
4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420
static int32_t extractTbscanInStreamOpTree(SOperatorInfo* pOperator, STableScanInfo** ppInfo) {
  if (pOperator->operatorType != QUERY_NODE_PHYSICAL_PLAN_STREAM_SCAN) {
    if (pOperator->numOfDownstream == 0) {
      qError("failed to find stream scan operator");
      return TSDB_CODE_QRY_APP_ERROR;
    }

    if (pOperator->numOfDownstream > 1) {
      qError("join not supported for stream block scan");
      return TSDB_CODE_QRY_APP_ERROR;
    }
    return extractTbscanInStreamOpTree(pOperator->pDownstream[0], ppInfo);
  } else {
    SStreamBlockScanInfo* pInfo = pOperator->info;
    ASSERT(pInfo->pSnapshotReadOp->operatorType == QUERY_NODE_PHYSICAL_PLAN_TABLE_SCAN);
    *ppInfo = pInfo->pSnapshotReadOp->info;
    return 0;
  }
}

4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442
int32_t extractTableScanNode(SPhysiNode* pNode, STableScanPhysiNode** ppNode) {
  if (pNode->pChildren == NULL || LIST_LENGTH(pNode->pChildren) == 0) {
    if (QUERY_NODE_PHYSICAL_PLAN_TABLE_SCAN == pNode->type) {
      *ppNode = (STableScanPhysiNode*)pNode;
      return 0;
    } else {
      ASSERT(0);
      terrno = TSDB_CODE_QRY_APP_ERROR;
      return -1;
    }
  } else {
    if (LIST_LENGTH(pNode->pChildren) != 1) {
      ASSERT(0);
      terrno = TSDB_CODE_QRY_APP_ERROR;
      return -1;
    }
    SPhysiNode* pChildNode = (SPhysiNode*)nodesListGetNode(pNode->pChildren, 0);
    return extractTableScanNode(pChildNode, ppNode);
  }
  return -1;
}

L
Liu Jicong 已提交
4443 4444 4445 4446 4447
int32_t rebuildReader(SOperatorInfo* pOperator, SSubplan* plan, SReadHandle* pHandle, int64_t uid, int64_t ts) {
  STableScanInfo* pTableScanInfo = NULL;
  if (extractTbscanInStreamOpTree(pOperator, &pTableScanInfo) < 0) {
    return -1;
  }
4448

L
Liu Jicong 已提交
4449 4450 4451 4452
  STableScanPhysiNode* pNode = NULL;
  if (extractTableScanNode(plan->pNode, &pNode) < 0) {
    ASSERT(0);
  }
4453

L
Liu Jicong 已提交
4454
  tsdbCleanupReadHandle(pTableScanInfo->dataReader);
4455

L
Liu Jicong 已提交
4456 4457 4458 4459 4460 4461
  STableListInfo info = {0};
  pTableScanInfo->dataReader = doCreateDataReader(pNode, pHandle, &info, 0, 0);
  if (pTableScanInfo->dataReader == NULL) {
    ASSERT(0);
    qError("failed to create data reader");
    return TSDB_CODE_QRY_APP_ERROR;
4462
  }
L
Liu Jicong 已提交
4463
  // TODO: set uid and ts to data reader
4464 4465 4466
  return 0;
}

4467
int32_t encodeOperator(SOperatorInfo* ops, char** result, int32_t* length) {
wmmhello's avatar
wmmhello 已提交
4468
  int32_t code = TDB_CODE_SUCCESS;
4469
  char*   pCurrent = NULL;
wmmhello's avatar
wmmhello 已提交
4470
  int32_t currLength = 0;
4471 4472
  if (ops->fpSet.encodeResultRow) {
    if (result == NULL || length == NULL) {
wmmhello's avatar
wmmhello 已提交
4473 4474 4475
      return TSDB_CODE_TSC_INVALID_INPUT;
    }
    code = ops->fpSet.encodeResultRow(ops, &pCurrent, &currLength);
wmmhello's avatar
wmmhello 已提交
4476

4477 4478
    if (code != TDB_CODE_SUCCESS) {
      if (*result != NULL) {
wmmhello's avatar
wmmhello 已提交
4479 4480 4481 4482 4483
        taosMemoryFree(*result);
        *result = NULL;
      }
      return code;
    }
wmmhello's avatar
wmmhello 已提交
4484

4485
    if (*result == NULL) {
wmmhello's avatar
wmmhello 已提交
4486
      *result = (char*)taosMemoryCalloc(1, currLength + sizeof(int32_t));
wmmhello's avatar
wmmhello 已提交
4487 4488 4489 4490 4491 4492
      if (*result == NULL) {
        taosMemoryFree(pCurrent);
        return TSDB_CODE_OUT_OF_MEMORY;
      }
      memcpy(*result + sizeof(int32_t), pCurrent, currLength);
      *(int32_t*)(*result) = currLength + sizeof(int32_t);
4493
    } else {
wmmhello's avatar
wmmhello 已提交
4494
      int32_t sizePre = *(int32_t*)(*result);
4495
      char*   tmp = (char*)taosMemoryRealloc(*result, sizePre + currLength);
wmmhello's avatar
wmmhello 已提交
4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507
      if (tmp == NULL) {
        taosMemoryFree(pCurrent);
        taosMemoryFree(*result);
        *result = NULL;
        return TSDB_CODE_OUT_OF_MEMORY;
      }
      *result = tmp;
      memcpy(*result + sizePre, pCurrent, currLength);
      *(int32_t*)(*result) += currLength;
    }
    taosMemoryFree(pCurrent);
    *length = *(int32_t*)(*result);
wmmhello's avatar
wmmhello 已提交
4508 4509
  }

wmmhello's avatar
wmmhello 已提交
4510 4511
  for (int32_t i = 0; i < ops->numOfDownstream; ++i) {
    code = encodeOperator(ops->pDownstream[i], result, length);
4512
    if (code != TDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
4513
      return code;
wmmhello's avatar
wmmhello 已提交
4514 4515
    }
  }
wmmhello's avatar
wmmhello 已提交
4516
  return TDB_CODE_SUCCESS;
wmmhello's avatar
wmmhello 已提交
4517 4518
}

H
Haojun Liao 已提交
4519
int32_t decodeOperator(SOperatorInfo* ops, const char* result, int32_t length) {
wmmhello's avatar
wmmhello 已提交
4520
  int32_t code = TDB_CODE_SUCCESS;
4521 4522
  if (ops->fpSet.decodeResultRow) {
    if (result == NULL) {
wmmhello's avatar
wmmhello 已提交
4523 4524
      return TSDB_CODE_TSC_INVALID_INPUT;
    }
H
Haojun Liao 已提交
4525

4526
    ASSERT(length == *(int32_t*)result);
H
Haojun Liao 已提交
4527 4528

    const char* data = result + sizeof(int32_t);
L
Liu Jicong 已提交
4529
    code = ops->fpSet.decodeResultRow(ops, (char*)data);
4530
    if (code != TDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
4531 4532
      return code;
    }
wmmhello's avatar
wmmhello 已提交
4533

wmmhello's avatar
wmmhello 已提交
4534
    int32_t totalLength = *(int32_t*)result;
4535 4536
    int32_t dataLength = *(int32_t*)data;

4537
    if (totalLength == dataLength + sizeof(int32_t)) {  // the last data
wmmhello's avatar
wmmhello 已提交
4538 4539
      result = NULL;
      length = 0;
4540
    } else {
wmmhello's avatar
wmmhello 已提交
4541 4542 4543 4544
      result += dataLength;
      *(int32_t*)(result) = totalLength - dataLength;
      length = totalLength - dataLength;
    }
wmmhello's avatar
wmmhello 已提交
4545 4546
  }

wmmhello's avatar
wmmhello 已提交
4547 4548
  for (int32_t i = 0; i < ops->numOfDownstream; ++i) {
    code = decodeOperator(ops->pDownstream[i], result, length);
4549
    if (code != TDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
4550
      return code;
wmmhello's avatar
wmmhello 已提交
4551 4552
    }
  }
wmmhello's avatar
wmmhello 已提交
4553
  return TDB_CODE_SUCCESS;
wmmhello's avatar
wmmhello 已提交
4554 4555
}

4556
int32_t createDataSinkParam(SDataSinkNode* pNode, void** pParam, qTaskInfo_t* pTaskInfo) {
D
dapan1121 已提交
4557
  SExecTaskInfo* pTask = *(SExecTaskInfo**)pTaskInfo;
4558

D
dapan1121 已提交
4559 4560
  switch (pNode->type) {
    case QUERY_NODE_PHYSICAL_PLAN_DELETE: {
4561
      SDeleterParam* pDeleterParam = taosMemoryCalloc(1, sizeof(SDeleterParam));
D
dapan1121 已提交
4562 4563 4564 4565
      if (NULL == pDeleterParam) {
        return TSDB_CODE_OUT_OF_MEMORY;
      }
      int32_t tbNum = taosArrayGetSize(pTask->tableqinfoList.pTableList);
D
dapan1121 已提交
4566
      pDeleterParam->suid = pTask->tableqinfoList.suid;
D
dapan1121 已提交
4567 4568 4569 4570 4571 4572
      pDeleterParam->pUidList = taosArrayInit(tbNum, sizeof(uint64_t));
      if (NULL == pDeleterParam->pUidList) {
        taosMemoryFree(pDeleterParam);
        return TSDB_CODE_OUT_OF_MEMORY;
      }
      for (int32_t i = 0; i < tbNum; ++i) {
4573
        STableKeyInfo* pTable = taosArrayGet(pTask->tableqinfoList.pTableList, i);
D
dapan1121 已提交
4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586
        taosArrayPush(pDeleterParam->pUidList, &pTable->uid);
      }

      *pParam = pDeleterParam;
      break;
    }
    default:
      break;
  }

  return TSDB_CODE_SUCCESS;
}

dengyihao's avatar
dengyihao 已提交
4587
int32_t createExecTaskInfoImpl(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
4588
                               const char* sql, EOPTR_EXEC_MODEL model) {
H
Haojun Liao 已提交
4589 4590
  uint64_t queryId = pPlan->id.queryId;

H
Haojun Liao 已提交
4591
  int32_t code = TSDB_CODE_SUCCESS;
D
dapan1121 已提交
4592
  *pTaskInfo = createExecTaskInfo(queryId, taskId, model, pPlan->dbFName);
H
Haojun Liao 已提交
4593 4594 4595 4596
  if (*pTaskInfo == NULL) {
    code = TSDB_CODE_QRY_OUT_OF_MEMORY;
    goto _complete;
  }
H
Haojun Liao 已提交
4597

4598
  (*pTaskInfo)->sql = sql;
wmmhello's avatar
wmmhello 已提交
4599 4600
  (*pTaskInfo)->tableqinfoList.pTagCond = pPlan->pTagCond;
  (*pTaskInfo)->tableqinfoList.pTagIndexCond = pPlan->pTagIndexCond;
L
Liu Jicong 已提交
4601
  (*pTaskInfo)->pRoot =
4602
      createOperatorTree(pPlan->pNode, *pTaskInfo, pHandle, queryId, taskId, &(*pTaskInfo)->tableqinfoList, pPlan->user);
L
Liu Jicong 已提交
4603

D
dapan1121 已提交
4604
  if (NULL == (*pTaskInfo)->pRoot) {
4605
    code = (*pTaskInfo)->code;
D
dapan1121 已提交
4606
    goto _complete;
4607 4608
  }

H
Haojun Liao 已提交
4609 4610
  return code;

H
Haojun Liao 已提交
4611
_complete:
wafwerar's avatar
wafwerar 已提交
4612
  taosMemoryFreeClear(*pTaskInfo);
H
Haojun Liao 已提交
4613 4614
  terrno = code;
  return code;
H
Haojun Liao 已提交
4615 4616
}

wmmhello's avatar
wmmhello 已提交
4617 4618 4619
static void doDestroyTableList(STableListInfo* pTableqinfoList) {
  taosArrayDestroy(pTableqinfoList->pTableList);
  taosHashCleanup(pTableqinfoList->map);
wmmhello's avatar
wmmhello 已提交
4620 4621 4622 4623 4624 4625 4626
  if(pTableqinfoList->needSortTableByGroupId){
    for(int32_t i = 0; i < taosArrayGetSize(pTableqinfoList->pGroupList); i++){
      SArray* tmp = taosArrayGetP(pTableqinfoList->pGroupList, i);
      taosArrayDestroy(tmp);
    }
  }
  taosArrayDestroy(pTableqinfoList->pGroupList);
4627

wmmhello's avatar
wmmhello 已提交
4628 4629
  pTableqinfoList->pTableList = NULL;
  pTableqinfoList->map = NULL;
4630 4631
}

L
Liu Jicong 已提交
4632
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
H
Haojun Liao 已提交
4633 4634
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));

wmmhello's avatar
wmmhello 已提交
4635
  doDestroyTableList(&pTaskInfo->tableqinfoList);
H
Haojun Liao 已提交
4636
  destroyOperatorInfo(pTaskInfo->pRoot);
L
Liu Jicong 已提交
4637 4638
  //  taosArrayDestroy(pTaskInfo->summary.queryProfEvents);
  //  taosHashCleanup(pTaskInfo->summary.operatorProfResults);
4639

4640 4641
  taosMemoryFree(pTaskInfo->schemaVer.dbname);
  taosMemoryFree(pTaskInfo->schemaVer.tablename);
wafwerar's avatar
wafwerar 已提交
4642 4643 4644
  taosMemoryFreeClear(pTaskInfo->sql);
  taosMemoryFreeClear(pTaskInfo->id.str);
  taosMemoryFreeClear(pTaskInfo);
4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656
}

static void doSetTagValueToResultBuf(char* output, const char* val, int16_t type, int16_t bytes) {
  if (val == NULL) {
    setNull(output, type, bytes);
    return;
  }

  if (IS_VAR_DATA_TYPE(type)) {
    // Binary data overflows for sort of unknown reasons. Let trim the overflow data
    if (varDataTLen(val) > bytes) {
      int32_t maxLen = bytes - VARSTR_HEADER_SIZE;
L
Liu Jicong 已提交
4657
      int32_t len = (varDataLen(val) > maxLen) ? maxLen : varDataLen(val);
4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669
      memcpy(varDataVal(output), varDataVal(val), len);
      varDataSetLen(output, len);
    } else {
      varDataCopy(output, val);
    }
  } else {
    memcpy(output, val, bytes);
  }
}

static int64_t getQuerySupportBufSize(size_t numOfTables) {
  size_t s1 = sizeof(STableQueryInfo);
L
Liu Jicong 已提交
4670 4671
  //  size_t s3 = sizeof(STableCheckInfo);  buffer consumption in tsdb
  return (int64_t)(s1 * 1.5 * numOfTables);
4672 4673 4674 4675 4676 4677 4678
}

int32_t checkForQueryBuf(size_t numOfTables) {
  int64_t t = getQuerySupportBufSize(numOfTables);
  if (tsQueryBufferSizeBytes < 0) {
    return TSDB_CODE_SUCCESS;
  } else if (tsQueryBufferSizeBytes > 0) {
L
Liu Jicong 已提交
4679
    while (1) {
4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705
      int64_t s = tsQueryBufferSizeBytes;
      int64_t remain = s - t;
      if (remain >= 0) {
        if (atomic_val_compare_exchange_64(&tsQueryBufferSizeBytes, s, remain) == s) {
          return TSDB_CODE_SUCCESS;
        }
      } else {
        return TSDB_CODE_QRY_NOT_ENOUGH_BUFFER;
      }
    }
  }

  // disable query processing if the value of tsQueryBufferSize is zero.
  return TSDB_CODE_QRY_NOT_ENOUGH_BUFFER;
}

void releaseQueryBuf(size_t numOfTables) {
  if (tsQueryBufferSizeBytes < 0) {
    return;
  }

  int64_t t = getQuerySupportBufSize(numOfTables);

  // restore value is not enough buffer available
  atomic_add_fetch_64(&tsQueryBufferSizeBytes, t);
}
D
dapan1121 已提交
4706

dengyihao's avatar
dengyihao 已提交
4707 4708
int32_t getOperatorExplainExecInfo(SOperatorInfo* operatorInfo, SExplainExecInfo** pRes, int32_t* capacity,
                                   int32_t* resNum) {
D
dapan1121 已提交
4709 4710
  if (*resNum >= *capacity) {
    *capacity += 10;
dengyihao's avatar
dengyihao 已提交
4711

D
dapan1121 已提交
4712 4713
    *pRes = taosMemoryRealloc(*pRes, (*capacity) * sizeof(SExplainExecInfo));
    if (NULL == *pRes) {
D
dapan1121 已提交
4714
      qError("malloc %d failed", (*capacity) * (int32_t)sizeof(SExplainExecInfo));
D
dapan1121 已提交
4715 4716 4717 4718
      return TSDB_CODE_QRY_OUT_OF_MEMORY;
    }
  }

4719 4720 4721 4722 4723
  SExplainExecInfo* pInfo = &(*pRes)[*resNum];

  pInfo->numOfRows = operatorInfo->resultInfo.totalRows;
  pInfo->startupCost = operatorInfo->cost.openCost;
  pInfo->totalCost = operatorInfo->cost.totalCost;
D
dapan1121 已提交
4724

4725
  if (operatorInfo->fpSet.getExplainFn) {
4726
    int32_t code = operatorInfo->fpSet.getExplainFn(operatorInfo, &pInfo->verboseInfo, &pInfo->verboseLen);
D
dapan1121 已提交
4727
    if (code) {
4728
      qError("%s operator getExplainFn failed, code:%s", GET_TASKID(operatorInfo->pTaskInfo), tstrerror(code));
D
dapan1121 已提交
4729 4730
      return code;
    }
4731 4732 4733
  } else {
    pInfo->verboseLen = 0;
    pInfo->verboseInfo = NULL;
D
dapan1121 已提交
4734
  }
dengyihao's avatar
dengyihao 已提交
4735

D
dapan1121 已提交
4736
  ++(*resNum);
dengyihao's avatar
dengyihao 已提交
4737

D
dapan1121 已提交
4738
  int32_t code = 0;
D
dapan1121 已提交
4739 4740
  for (int32_t i = 0; i < operatorInfo->numOfDownstream; ++i) {
    code = getOperatorExplainExecInfo(operatorInfo->pDownstream[i], pRes, capacity, resNum);
D
dapan1121 已提交
4741 4742 4743 4744 4745 4746 4747
    if (code) {
      taosMemoryFreeClear(*pRes);
      return TSDB_CODE_QRY_OUT_OF_MEMORY;
    }
  }

  return TSDB_CODE_SUCCESS;
D
dapan1121 已提交
4748
}
5
54liuyao 已提交
4749

L
Liu Jicong 已提交
4750
int32_t initStreamAggSupporter(SStreamAggSupporter* pSup, const char* pKey, SqlFunctionCtx* pCtx, int32_t numOfOutput,
4751
                               int32_t size) {
4752
  pSup->resultRowSize = getResultRowSize(pCtx, numOfOutput);
5
54liuyao 已提交
4753 4754
  pSup->keySize = sizeof(int64_t) + sizeof(TSKEY);
  pSup->pKeyBuf = taosMemoryCalloc(1, pSup->keySize);
4755 4756
  _hash_fn_t hashFn = taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY);
  pSup->pResultRows = taosHashInit(1024, hashFn, false, HASH_NO_LOCK);
5
54liuyao 已提交
4757 4758 4759
  if (pSup->pKeyBuf == NULL || pSup->pResultRows == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
4760
  pSup->valueSize = size;
5
54liuyao 已提交
4761

5
54liuyao 已提交
4762 4763
  pSup->pScanWindow = taosArrayInit(4, sizeof(STimeWindow));

5
54liuyao 已提交
4764 4765 4766 4767 4768 4769 4770 4771 4772
  int32_t pageSize = 4096;
  while (pageSize < pSup->resultRowSize * 4) {
    pageSize <<= 1u;
  }
  // at least four pages need to be in buffer
  int32_t bufSize = 4096 * 256;
  if (bufSize <= pageSize) {
    bufSize = pageSize * 4;
  }
4773
  int32_t code = createDiskbasedBuf(&pSup->pResultBuf, pageSize, bufSize, pKey, TD_TMP_DIR_PATH);
L
Liu Jicong 已提交
4774
  for (int32_t i = 0; i < numOfOutput; ++i) {
4775 4776 4777
    pCtx[i].pBuf = pSup->pResultBuf;
  }
  return code;
5
54liuyao 已提交
4778
}