executorimpl.c 266.7 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"
23

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

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

H
Haojun Liao 已提交
38
#define IS_MAIN_SCAN(runtime)          ((runtime)->scanFlag == MAIN_SCAN)
39 40
#define IS_REVERSE_SCAN(runtime)       ((runtime)->scanFlag == REVERSE_SCAN)
#define IS_REPEAT_SCAN(runtime)        ((runtime)->scanFlag == REPEAT_SCAN)
L
Liu Jicong 已提交
41
#define SET_MAIN_SCAN_FLAG(runtime)    ((runtime)->scanFlag = MAIN_SCAN)
42 43 44 45
#define SET_REVERSE_SCAN_FLAG(runtime) ((runtime)->scanFlag = REVERSE_SCAN)

#define TSWINDOW_IS_EQUAL(t1, t2) (((t1).skey == (t2).skey) && ((t1).ekey == (t2).ekey))

L
Liu Jicong 已提交
46 47
#define SDATA_BLOCK_INITIALIZER \
  (SDataBlockInfo) { {0}, 0 }
48 49 50 51

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

enum {
L
Liu Jicong 已提交
52 53
  TS_JOIN_TS_EQUAL = 0,
  TS_JOIN_TS_NOT_EQUALS = 1,
54 55 56 57 58
  TS_JOIN_TAG_NOT_EQUALS = 2,
};

typedef enum SResultTsInterpType {
  RESULT_ROW_START_INTERP = 1,
L
Liu Jicong 已提交
59
  RESULT_ROW_END_INTERP = 2,
60 61 62 63
} SResultTsInterpType;

#if 0
static UNUSED_FUNC void *u_malloc (size_t __size) {
wafwerar's avatar
wafwerar 已提交
64
  uint32_t v = taosRand();
65 66 67 68

  if (v % 1000 <= 0) {
    return NULL;
  } else {
wafwerar's avatar
wafwerar 已提交
69
    return taosMemoryMalloc(__size);
70 71 72 73
  }
}

static UNUSED_FUNC void* u_calloc(size_t num, size_t __size) {
wafwerar's avatar
wafwerar 已提交
74
  uint32_t v = taosRand();
75 76 77
  if (v % 1000 <= 0) {
    return NULL;
  } else {
wafwerar's avatar
wafwerar 已提交
78
    return taosMemoryCalloc(num, __size);
79 80 81 82
  }
}

static UNUSED_FUNC void* u_realloc(void* p, size_t __size) {
wafwerar's avatar
wafwerar 已提交
83
  uint32_t v = taosRand();
84 85 86
  if (v % 5 <= 1) {
    return NULL;
  } else {
wafwerar's avatar
wafwerar 已提交
87
    return taosMemoryRealloc(p, __size);
88 89 90 91 92 93 94 95 96 97 98 99
  }
}

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

#define CLEAR_QUERY_STATUS(q, st)   ((q)->status &= (~(st)))
#define GET_NUM_OF_TABLEGROUP(q)    taosArrayGetSize((q)->tableqinfoGroupInfo.pGroupList)
#define QUERY_IS_INTERVAL_QUERY(_q) ((_q)->interval.interval > 0)

L
Liu Jicong 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
#define TSKEY_MAX_ADD(a, b)                      \
  do {                                           \
    if (a < 0) {                                 \
      a = a + b;                                 \
      break;                                     \
    }                                            \
    if (sizeof(a) == sizeof(int32_t)) {          \
      if ((b) > 0 && ((b) >= INT32_MAX - (a))) { \
        a = INT32_MAX;                           \
      } else {                                   \
        a = a + b;                               \
      }                                          \
    } else {                                     \
      if ((b) > 0 && ((b) >= INT64_MAX - (a))) { \
        a = INT64_MAX;                           \
      } else {                                   \
        a = a + b;                               \
      }                                          \
    }                                            \
  } while (0)

#define TSKEY_MIN_SUB(a, b)                      \
  do {                                           \
    if (a >= 0) {                                \
      a = a + b;                                 \
      break;                                     \
    }                                            \
    if (sizeof(a) == sizeof(int32_t)) {          \
      if ((b) < 0 && ((b) <= INT32_MIN - (a))) { \
        a = INT32_MIN;                           \
      } else {                                   \
        a = a + b;                               \
      }                                          \
    } else {                                     \
      if ((b) < 0 && ((b) <= INT64_MIN - (a))) { \
        a = INT64_MIN;                           \
      } else {                                   \
        a = a + b;                               \
      }                                          \
    }                                            \
  } while (0)

int32_t getMaximumIdleDurationSec() { return tsShellActivityTimer * 2; }

static int32_t getExprFunctionId(SExprInfo* pExprInfo) {
145
  assert(pExprInfo != NULL && pExprInfo->pExpr != NULL && pExprInfo->pExpr->nodeType == TEXPR_UNARYEXPR_NODE);
146
  return 0;
147 148
}

H
Haojun Liao 已提交
149 150 151 152 153
static void getNextTimeWindow(SInterval* pInterval, int32_t precision, int32_t order, STimeWindow* tw) {
  int32_t factor = GET_FORWARD_DIRECTION_FACTOR(order);
  if (pInterval->intervalUnit != 'n' && pInterval->intervalUnit != 'y') {
    tw->skey += pInterval->sliding * factor;
    tw->ekey = tw->skey + pInterval->interval - 1;
154 155 156
    return;
  }

H
Haojun Liao 已提交
157
  int64_t key = tw->skey, interval = pInterval->interval;
L
Liu Jicong 已提交
158
  // convert key to second
H
Haojun Liao 已提交
159
  key = convertTimePrecision(key, precision, TSDB_TIME_PRECISION_MILLI) / 1000;
160

H
Haojun Liao 已提交
161
  if (pInterval->intervalUnit == 'y') {
162 163 164 165
    interval *= 12;
  }

  struct tm tm;
L
Liu Jicong 已提交
166
  time_t    t = (time_t)key;
wafwerar's avatar
wafwerar 已提交
167
  taosLocalTime(&t, &tm);
168 169 170 171

  int mon = (int)(tm.tm_year * 12 + tm.tm_mon + interval * factor);
  tm.tm_year = mon / 12;
  tm.tm_mon = mon % 12;
172
  tw->skey = convertTimePrecision((int64_t)taosMktime(&tm) * 1000L, TSDB_TIME_PRECISION_MILLI, precision);
173 174 175 176

  mon = (int)(mon + interval);
  tm.tm_year = mon / 12;
  tm.tm_mon = mon % 12;
177
  tw->ekey = convertTimePrecision((int64_t)taosMktime(&tm) * 1000L, TSDB_TIME_PRECISION_MILLI, precision);
178 179 180 181 182

  tw->ekey -= 1;
}

static void doSetTagValueToResultBuf(char* output, const char* val, int16_t type, int16_t bytes);
L
Liu Jicong 已提交
183
static bool functionNeedToExecute(SqlFunctionCtx* pCtx);
184

185
static void setBlockStatisInfo(SqlFunctionCtx* pCtx, SExprInfo* pExpr, SSDataBlock* pSDataBlock);
186

L
Liu Jicong 已提交
187
static void destroyTableQueryInfoImpl(STableQueryInfo* pTableQueryInfo);
188 189 190

static SColumnInfo* extractColumnFilterInfo(SExprInfo* pExpr, int32_t numOfOutput, int32_t* numOfFilterCols);

L
Liu Jicong 已提交
191 192 193 194
static int32_t setTimestampListJoinInfo(STaskRuntimeEnv* pRuntimeEnv, SVariant* pTag, STableQueryInfo* pTableQueryInfo);
static void    releaseQueryBuf(size_t numOfTables);
static int32_t binarySearchForKey(char* pValue, int num, TSKEY key, int order);
// static STsdbQueryCond createTsdbQueryCond(STaskAttr* pQueryAttr, STimeWindow* win);
195 196
static STableIdInfo createTableIdInfo(STableQueryInfo* pTableQueryInfo);

H
Haojun Liao 已提交
197
static int32_t getNumOfScanTimes(STaskAttr* pQueryAttr);
198 199 200 201 202 203 204 205 206

static void destroyBasicOperatorInfo(void* param, int32_t numOfOutput);
static void destroySFillOperatorInfo(void* param, int32_t numOfOutput);
static void destroyProjectOperatorInfo(void* param, int32_t numOfOutput);
static void destroyTagScanOperatorInfo(void* param, int32_t numOfOutput);
static void destroyOrderOperatorInfo(void* param, int32_t numOfOutput);
static void destroySWindowOperatorInfo(void* param, int32_t numOfOutput);
static void destroyStateWindowOperatorInfo(void* param, int32_t numOfOutput);
static void destroyAggOperatorInfo(void* param, int32_t numOfOutput);
X
Xiaoyu Wang 已提交
207

H
Haojun Liao 已提交
208
static void destroyIntervalOperatorInfo(void* param, int32_t numOfOutput);
H
Haojun Liao 已提交
209 210 211
static void destroyExchangeOperatorInfo(void* param, int32_t numOfOutput);
static void destroyConditionOperatorInfo(void* param, int32_t numOfOutput);

212
static void destroyOperatorInfo(SOperatorInfo* pOperator);
213
static void destroySysTableScannerOperatorInfo(void* param, int32_t numOfOutput);
214

215
void doSetOperatorCompleted(SOperatorInfo* pOperator) {
216
  pOperator->status = OP_EXEC_DONE;
H
Haojun Liao 已提交
217
  if (pOperator->pTaskInfo != NULL) {
218
    setTaskStatus(pOperator->pTaskInfo, TASK_COMPLETED);
219 220
  }
}
221

222 223 224
#define OPTR_IS_OPENED(_optr)  (((_optr)->status & OP_OPENED) == OP_OPENED)
#define OPTR_SET_OPENED(_optr) ((_optr)->status |= OP_OPENED)

H
Haojun Liao 已提交
225
int32_t operatorDummyOpenFn(SOperatorInfo* pOperator) {
226
  OPTR_SET_OPENED(pOperator);
H
Haojun Liao 已提交
227
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
228 229
}

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

dengyihao's avatar
dengyihao 已提交
232 233 234
static int32_t doCopyToSDataBlock(SSDataBlock* pBlock, SExprInfo* pExprInfo, SDiskbasedBuf* pBuf,
                                  SGroupResInfo* pGroupResInfo, int32_t orderType, int32_t* rowCellOffset,
                                  SqlFunctionCtx* pCtx);
H
Haojun Liao 已提交
235

236
static void initCtxOutputBuffer(SqlFunctionCtx* pCtx, int32_t size);
H
Haojun Liao 已提交
237
static void setResultBufSize(STaskAttr* pQueryAttr, SResultInfo* pResultInfo);
H
Haojun Liao 已提交
238
static void setCtxTagForJoin(STaskRuntimeEnv* pRuntimeEnv, SqlFunctionCtx* pCtx, SExprInfo* pExprInfo, void* pTable);
dengyihao's avatar
dengyihao 已提交
239 240
static void doSetTableGroupOutputBuf(SAggOperatorInfo* pAggInfo, int32_t numOfOutput, uint64_t groupId,
                                     SExecTaskInfo* pTaskInfo);
241

H
Haojun Liao 已提交
242
SArray* getOrderCheckColumns(STaskAttr* pQuery);
243 244

typedef struct SRowCompSupporter {
L
Liu Jicong 已提交
245 246 247
  STaskRuntimeEnv* pRuntimeEnv;
  int16_t          dataOffset;
  __compar_fn_t    comFunc;
248 249
} SRowCompSupporter;

L
Liu Jicong 已提交
250 251 252
static int compareRowData(const void* a, const void* b, const void* userData) {
  const SResultRow* pRow1 = (const SResultRow*)a;
  const SResultRow* pRow2 = (const SResultRow*)b;
253

L
Liu Jicong 已提交
254 255
  SRowCompSupporter* supporter = (SRowCompSupporter*)userData;
  STaskRuntimeEnv*   pRuntimeEnv = supporter->pRuntimeEnv;
256

L
Liu Jicong 已提交
257 258
  SFilePage* page1 = getBufPage(pRuntimeEnv->pResultBuf, pRow1->pageId);
  SFilePage* page2 = getBufPage(pRuntimeEnv->pResultBuf, pRow2->pageId);
259 260

  int16_t offset = supporter->dataOffset;
L
Liu Jicong 已提交
261 262
  char*   in1 = getPosInResultPage(pRuntimeEnv->pQueryAttr, page1, pRow1->offset, offset);
  char*   in2 = getPosInResultPage(pRuntimeEnv->pQueryAttr, page2, pRow2->offset, offset);
263 264 265 266

  return (in1 != NULL && in2 != NULL) ? supporter->comFunc(in1, in2) : 0;
}

L
Liu Jicong 已提交
267
// setup the output buffer for each operator
268
SSDataBlock* createResDataBlock(SDataBlockDescNode* pNode) {
H
Haojun Liao 已提交
269
  int32_t numOfCols = LIST_LENGTH(pNode->pSlots);
H
Haojun Liao 已提交
270

wafwerar's avatar
wafwerar 已提交
271
  SSDataBlock* pBlock = taosMemoryCalloc(1, sizeof(SSDataBlock));
H
Haojun Liao 已提交
272 273 274
  pBlock->info.numOfCols = numOfCols;
  pBlock->pDataBlock = taosArrayInit(numOfCols, sizeof(SColumnInfoData));

H
Haojun Liao 已提交
275
  pBlock->info.blockId = pNode->dataBlockId;
dengyihao's avatar
dengyihao 已提交
276
  pBlock->info.rowSize = pNode->totalRowSize;  // todo ??
H
Haojun Liao 已提交
277

L
Liu Jicong 已提交
278
  for (int32_t i = 0; i < numOfCols; ++i) {
H
Haojun Liao 已提交
279
    SColumnInfoData idata = {{0}};
L
Liu Jicong 已提交
280
    SSlotDescNode*  pDescNode = nodesListGetNode(pNode->pSlots, i);
H
Haojun Liao 已提交
281 282
    if (!pDescNode->output) {
      continue;
H
Haojun Liao 已提交
283
    }
H
Haojun Liao 已提交
284

dengyihao's avatar
dengyihao 已提交
285
    idata.info.type = pDescNode->dataType.type;
L
Liu Jicong 已提交
286 287
    idata.info.bytes = pDescNode->dataType.bytes;
    idata.info.scale = pDescNode->dataType.scale;
H
Haojun Liao 已提交
288
    idata.info.slotId = pDescNode->slotId;
H
Haojun Liao 已提交
289 290
    idata.info.precision = pDescNode->dataType.precision;

H
Hongze Cheng 已提交
291 292 293 294
    if (IS_VAR_DATA_TYPE(idata.info.type)) {
      pBlock->info.hasVarCol = true;
    }

H
Haojun Liao 已提交
295
    taosArrayPush(pBlock->pDataBlock, &idata);
H
Haojun Liao 已提交
296
  }
H
Haojun Liao 已提交
297 298

  return pBlock;
H
Haojun Liao 已提交
299 300
}

L
Liu Jicong 已提交
301
static bool isSelectivityWithTagsQuery(SqlFunctionCtx* pCtx, int32_t numOfOutput) {
302
  return true;
L
Liu Jicong 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
  //  bool    hasTags = false;
  //  int32_t numOfSelectivity = 0;
  //
  //  for (int32_t i = 0; i < numOfOutput; ++i) {
  //    int32_t functId = pCtx[i].functionId;
  //    if (functId == FUNCTION_TAG_DUMMY || functId == FUNCTION_TS_DUMMY) {
  //      hasTags = true;
  //      continue;
  //    }
  //
  //    if ((aAggs[functId].status & FUNCSTATE_SELECTIVITY) != 0) {
  //      numOfSelectivity++;
  //    }
  //  }
  //
  //  return (numOfSelectivity > 0 && hasTags);
}

static bool hasNull(SColumn* pColumn, SColumnDataAgg* pStatis) {
dengyihao's avatar
dengyihao 已提交
322 323
  if (TSDB_COL_IS_TAG(pColumn->flag) || TSDB_COL_IS_UD_COL(pColumn->flag) ||
      pColumn->colId == PRIMARYKEY_TIMESTAMP_COL_ID) {
324 325 326 327 328 329 330 331 332 333
    return false;
  }

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

  return true;
}

H
Haojun Liao 已提交
334
static void prepareResultListBuffer(SResultRowInfo* pResultRowInfo, jmp_buf env) {
335 336
  int64_t newCapacity = 0;

337 338 339 340 341 342 343 344 345 346 347
  // more than the capacity, reallocate the resources
  if (pResultRowInfo->size < pResultRowInfo->capacity) {
    return;
  }

  if (pResultRowInfo->capacity > 10000) {
    newCapacity = (int64_t)(pResultRowInfo->capacity * 1.25);
  } else {
    newCapacity = (int64_t)(pResultRowInfo->capacity * 1.5);
  }

H
Haojun Liao 已提交
348 349 350 351
  if (newCapacity == pResultRowInfo->capacity) {
    newCapacity += 4;
  }

wafwerar's avatar
wafwerar 已提交
352
  pResultRowInfo->pPosition = taosMemoryRealloc(pResultRowInfo->pPosition, newCapacity * sizeof(SResultRowPosition));
353 354

  int32_t inc = (int32_t)newCapacity - pResultRowInfo->capacity;
wmmhello's avatar
wmmhello 已提交
355
  memset(&pResultRowInfo->pPosition[pResultRowInfo->capacity], 0, sizeof(SResultRowPosition) * inc);
356 357 358
  pResultRowInfo->capacity = (int32_t)newCapacity;
}

L
Liu Jicong 已提交
359 360
static bool chkResultRowFromKey(STaskRuntimeEnv* pRuntimeEnv, SResultRowInfo* pResultRowInfo, char* pData,
                                int16_t bytes, bool masterscan, uint64_t uid) {
361 362 363
  bool existed = false;
  SET_RES_WINDOW_KEY(pRuntimeEnv->keyBuf, pData, bytes, uid);

L
Liu Jicong 已提交
364 365
  SResultRow** p1 =
      (SResultRow**)taosHashGet(pRuntimeEnv->pResultRowHashTable, pRuntimeEnv->keyBuf, GET_RES_WINDOW_KEY_LEN(bytes));
366 367 368 369 370 371 372 373 374 375 376

  // 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 已提交
377
        //        existed = (pResultRowInfo->pResult[0] == (*p1));
378 379
      } else {  // check if current pResultRowInfo contains the existed pResultRow
        SET_RES_EXT_WINDOW_KEY(pRuntimeEnv->keyBuf, pData, bytes, uid, pResultRowInfo);
L
Liu Jicong 已提交
380 381
        int64_t* index =
            taosHashGet(pRuntimeEnv->pResultRowListSet, pRuntimeEnv->keyBuf, GET_RES_EXT_WINDOW_KEY_LEN(bytes));
382 383 384 385 386 387 388 389 390 391 392 393 394 395
        if (index != NULL) {
          existed = true;
        } else {
          existed = false;
        }
      }
    }

    return existed;
  }

  return p1 != NULL;
}

396
SResultRow* getNewResultRow_rv(SDiskbasedBuf* pResultBuf, int64_t tableGroupId, int32_t interBufSize) {
L
Liu Jicong 已提交
397
  SFilePage* pData = NULL;
398 399 400 401 402 403 404 405 406 407 408 409 410

  // 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 已提交
411
    if (pData->num + interBufSize > getBufPageSize(pResultBuf)) {
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
      // 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;
  }

  // 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 已提交
431
  pData->num += interBufSize;
432 433 434 435

  return pResultRow;
}

436 437
static SResultRow* doSetResultOutBufByKey_rv(SDiskbasedBuf* pResultBuf, SResultRowInfo* pResultRowInfo, int64_t uid,
                                             char* pData, int16_t bytes, bool masterscan, uint64_t groupId,
L
Liu Jicong 已提交
438
                                             SExecTaskInfo* pTaskInfo, bool isIntervalQuery, SAggSupporter* pSup) {
H
Haojun Liao 已提交
439
  bool existInCurrentResusltRowInfo = false;
440
  SET_RES_WINDOW_KEY(pSup->keyBuf, pData, bytes, groupId);
H
Haojun Liao 已提交
441

dengyihao's avatar
dengyihao 已提交
442 443
  SResultRowPosition* p1 =
      (SResultRowPosition*)taosHashGet(pSup->pResultRowHashTable, pSup->keyBuf, GET_RES_WINDOW_KEY_LEN(bytes));
H
Haojun Liao 已提交
444 445 446 447

  // in case of repeat scan/reverse scan, no new time window added.
  if (isIntervalQuery) {
    if (!masterscan) {  // the *p1 may be NULL in case of sliding+offset exists.
H
Haojun Liao 已提交
448 449 450 451 452
      if (p1 != NULL) {
        return getResultRowByPos(pResultBuf, p1);
      } else {
        return NULL;
      }
H
Haojun Liao 已提交
453 454 455 456
    }

    if (p1 != NULL) {
      if (pResultRowInfo->size == 0) {
dengyihao's avatar
dengyihao 已提交
457 458
        existInCurrentResusltRowInfo =
            false;  // this time window created by other timestamp that does not belongs to current table.
H
Haojun Liao 已提交
459
      } else if (pResultRowInfo->size == 1) {
C
Cary Xu 已提交
460 461
        SResultRowPosition* p = &pResultRowInfo->pPosition[0];
        existInCurrentResusltRowInfo = (p->pageId == p1->pageId && p->offset == p1->offset);
H
Haojun Liao 已提交
462
      } else {  // check if current pResultRowInfo contains the existInCurrentResusltRowInfo pResultRow
463
        SET_RES_EXT_WINDOW_KEY(pSup->keyBuf, pData, bytes, uid, pResultRowInfo);
464
        int64_t* index = taosHashGet(pSup->pResultRowListSet, pSup->keyBuf, GET_RES_EXT_WINDOW_KEY_LEN(bytes));
H
Haojun Liao 已提交
465
        if (index != NULL) {
H
Haojun Liao 已提交
466 467
          // TODO check the scan order for current opened time window
          existInCurrentResusltRowInfo = true;
H
Haojun Liao 已提交
468
        } else {
H
Haojun Liao 已提交
469
          existInCurrentResusltRowInfo = false;
H
Haojun Liao 已提交
470 471 472 473
        }
      }
    }
  } else {
dengyihao's avatar
dengyihao 已提交
474 475
    // In case of group by column query, the required SResultRow object must be existInCurrentResusltRowInfo in the
    // pResultRowInfo object.
H
Haojun Liao 已提交
476
    if (p1 != NULL) {
H
Haojun Liao 已提交
477
      return getResultRowByPos(pResultBuf, p1);
H
Haojun Liao 已提交
478 479 480
    }
  }

H
Haojun Liao 已提交
481 482 483
  SResultRow* pResult = NULL;
  if (!existInCurrentResusltRowInfo) {
    // 1. close current opened time window
484 485
    if (pResultRowInfo->cur.pageId != -1) {  // todo extract function
      SResultRowPosition pos = pResultRowInfo->cur;
dengyihao's avatar
dengyihao 已提交
486 487
      SFilePage*         pPage = getBufPage(pResultBuf, pos.pageId);
      SResultRow*        pRow = (SResultRow*)((char*)pPage + pos.offset);
H
Haojun Liao 已提交
488 489 490
      closeResultRow(pRow);
      releaseBufPage(pResultBuf, pPage);
    }
H
Haojun Liao 已提交
491

H
Haojun Liao 已提交
492
    prepareResultListBuffer(pResultRowInfo, pTaskInfo->env);
H
Haojun Liao 已提交
493
    if (p1 == NULL) {
494
      pResult = getNewResultRow_rv(pResultBuf, groupId, pSup->resultRowSize);
H
Haojun Liao 已提交
495
      initResultRow(pResult);
H
Haojun Liao 已提交
496 497

      // add a new result set for a new group
H
Haojun Liao 已提交
498
      SResultRowPosition pos = {.pageId = pResult->pageId, .offset = pResult->offset};
dengyihao's avatar
dengyihao 已提交
499 500
      taosHashPut(pSup->pResultRowHashTable, pSup->keyBuf, GET_RES_WINDOW_KEY_LEN(bytes), &pos,
                  sizeof(SResultRowPosition));
501
      SResultRowCell cell = {.groupId = groupId, .pos = pos};
502
      taosArrayPush(pSup->pResultRowArrayList, &cell);
H
Haojun Liao 已提交
503
    } else {
H
Haojun Liao 已提交
504
      pResult = getResultRowByPos(pResultBuf, p1);
H
Haojun Liao 已提交
505 506
    }

H
Haojun Liao 已提交
507
    // 2. set the new time window to be the new active time window
dengyihao's avatar
dengyihao 已提交
508 509
    pResultRowInfo->pPosition[pResultRowInfo->size++] =
        (SResultRowPosition){.pageId = pResult->pageId, .offset = pResult->offset};
510
    pResultRowInfo->cur = (SResultRowPosition){.pageId = pResult->pageId, .offset = pResult->offset};
511
    SET_RES_EXT_WINDOW_KEY(pSup->keyBuf, pData, bytes, uid, pResultRowInfo);
dengyihao's avatar
dengyihao 已提交
512 513
    taosHashPut(pSup->pResultRowListSet, pSup->keyBuf, GET_RES_EXT_WINDOW_KEY_LEN(bytes), &pResultRowInfo->cur,
                POINTER_BYTES);
C
Cary Xu 已提交
514 515
  } else {
    pResult = getResultRowByPos(pResultBuf, p1);
H
Haojun Liao 已提交
516 517 518 519 520 521 522
  }

  // too many time window in query
  if (pResultRowInfo->size > MAX_INTERVAL_TIME_WINDOW) {
    longjmp(pTaskInfo->env, TSDB_CODE_QRY_TOO_MANY_TIMEWINDOW);
  }

H
Haojun Liao 已提交
523
  return pResult;
H
Haojun Liao 已提交
524 525
}

dengyihao's avatar
dengyihao 已提交
526 527
static void getInitialStartTimeWindow(SInterval* pInterval, int32_t precision, TSKEY ts, STimeWindow* w,
                                      bool ascQuery) {
H
Haojun Liao 已提交
528
  if (ascQuery) {
529
    getAlignQueryTimeWindow(pInterval, precision, ts, w);
530 531
  } else {
    // the start position of the first time window in the endpoint that spreads beyond the queried last timestamp
532
    getAlignQueryTimeWindow(pInterval, precision, ts, w);
533 534

    int64_t key = w->skey;
L
Liu Jicong 已提交
535
    while (key < ts) {  // moving towards end
536
      key = taosTimeAdd(key, pInterval->sliding, pInterval->slidingUnit, precision);
537 538 539 540 541 542 543 544 545 546
      if (key >= ts) {
        break;
      }

      w->skey = key;
    }
  }
}

// get the correct time window according to the handled timestamp
dengyihao's avatar
dengyihao 已提交
547 548
static STimeWindow getActiveTimeWindow(SDiskbasedBuf* pBuf, SResultRowInfo* pResultRowInfo, int64_t ts,
                                       SInterval* pInterval, int32_t precision, STimeWindow* win) {
549 550
  STimeWindow w = {0};

551
  if (pResultRowInfo->cur.pageId == -1) {  // the first window, from the previous stored value
552
    getInitialStartTimeWindow(pInterval, precision, ts, &w, true);
553
    w.ekey = taosTimeAdd(w.skey, pInterval->interval, pInterval->intervalUnit, precision) - 1;
554
  } else {
555
    w = getResultRowByPos(pBuf, &pResultRowInfo->cur)->win;
556 557 558
  }

  if (w.skey > ts || w.ekey < ts) {
H
Haojun Liao 已提交
559 560 561
    if (pInterval->intervalUnit == 'n' || pInterval->intervalUnit == 'y') {
      w.skey = taosTimeTruncate(ts, pInterval, precision);
      w.ekey = taosTimeAdd(w.skey, pInterval->interval, pInterval->intervalUnit, precision) - 1;
562 563 564 565
    } else {
      int64_t st = w.skey;

      if (st > ts) {
H
Haojun Liao 已提交
566
        st -= ((st - ts + pInterval->sliding - 1) / pInterval->sliding) * pInterval->sliding;
567 568
      }

H
Haojun Liao 已提交
569
      int64_t et = st + pInterval->interval - 1;
570
      if (et < ts) {
H
Haojun Liao 已提交
571
        st += ((ts - et + pInterval->sliding - 1) / pInterval->sliding) * pInterval->sliding;
572 573 574
      }

      w.skey = st;
575
      w.ekey = taosTimeAdd(w.skey, pInterval->interval, pInterval->intervalUnit, precision) - 1;
576 577 578 579 580 581
    }
  }
  return w;
}

// get the correct time window according to the handled timestamp
L
Liu Jicong 已提交
582
static STimeWindow getCurrentActiveTimeWindow(SResultRowInfo* pResultRowInfo, int64_t ts, STaskAttr* pQueryAttr) {
583
  STimeWindow w = {0};
H
Haojun Liao 已提交
584
#if 0
L
Liu Jicong 已提交
585 586
  if (pResultRowInfo->curPos == -1) {  // the first window, from the previous stored value
                                       //    getInitialStartTimeWindow(pQueryAttr, ts, &w);
587 588

    if (pQueryAttr->interval.intervalUnit == 'n' || pQueryAttr->interval.intervalUnit == 'y') {
L
Liu Jicong 已提交
589 590 591
      w.ekey =
          taosTimeAdd(w.skey, pQueryAttr->interval.interval, pQueryAttr->interval.intervalUnit, pQueryAttr->precision) -
          1;
592 593 594 595
    } else {
      w.ekey = w.skey + pQueryAttr->interval.interval - 1;
    }
  } else {
H
Haojun Liao 已提交
596
    w = pRow->win;
597 598 599 600 601 602 603 604 605
  }

  /*
   * query border check, skey should not be bounded by the query time range, since the value skey will
   * be used as the time window index value. So we only change ekey of time window accordingly.
   */
  if (w.ekey > pQueryAttr->window.ekey && QUERY_IS_ASC_QUERY(pQueryAttr)) {
    w.ekey = pQueryAttr->window.ekey;
  }
H
Haojun Liao 已提交
606
#endif
607 608 609 610 611

  return w;
}

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

L
Liu Jicong 已提交
617
  SFilePage* pData = NULL;
618 619 620 621 622 623

  // 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 已提交
624
    pData = getNewBufPage(pResultBuf, tid, &pageId);
625
    pData->num = sizeof(SFilePage);
626 627
  } else {
    SPageInfo* pi = getLastPageInfo(list);
628
    pData = getBufPage(pResultBuf, getPageId(pi));
629
    pageId = getPageId(pi);
630

631
    if (pData->num + size > getBufPageSize(pResultBuf)) {
632
      // release current page first, and prepare the next one
633
      releaseBufPageInfo(pResultBuf, pi);
634

H
Haojun Liao 已提交
635
      pData = getNewBufPage(pResultBuf, tid, &pageId);
636
      if (pData != NULL) {
637
        pData->num = sizeof(SFilePage);
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
      }
    }
  }

  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;
}

L
Liu Jicong 已提交
658 659 660
static bool chkWindowOutputBufByKey(STaskRuntimeEnv* pRuntimeEnv, SResultRowInfo* pResultRowInfo, STimeWindow* win,
                                    bool masterscan, SResultRow** pResult, int64_t groupId, SqlFunctionCtx* pCtx,
                                    int32_t numOfOutput, int32_t* rowCellInfoOffset) {
661
  assert(win->skey <= win->ekey);
L
Liu Jicong 已提交
662
  return chkResultRowFromKey(pRuntimeEnv, pResultRowInfo, (char*)&win->skey, TSDB_KEYSIZE, masterscan, groupId);
663 664
}

dengyihao's avatar
dengyihao 已提交
665 666
static void setResultRowOutputBufInitCtx_rv(SResultRow* pResult, SqlFunctionCtx* pCtx, int32_t numOfOutput,
                                            int32_t* rowCellInfoOffset);
H
Haojun Liao 已提交
667

L
Liu Jicong 已提交
668 669 670 671
static int32_t setResultOutputBufByKey_rv(SResultRowInfo* pResultRowInfo, int64_t id, STimeWindow* win, bool masterscan,
                                          SResultRow** pResult, int64_t tableGroupId, SqlFunctionCtx* pCtx,
                                          int32_t numOfOutput, int32_t* rowCellInfoOffset, SAggSupporter* pAggSup,
                                          SExecTaskInfo* pTaskInfo) {
H
Haojun Liao 已提交
672
  assert(win->skey <= win->ekey);
L
Liu Jicong 已提交
673 674
  SResultRow* pResultRow = doSetResultOutBufByKey_rv(pAggSup->pResultBuf, pResultRowInfo, id, (char*)&win->skey,
                                                     TSDB_KEYSIZE, masterscan, tableGroupId, pTaskInfo, true, pAggSup);
H
Haojun Liao 已提交
675 676 677 678 679 680 681 682 683

  if (pResultRow == NULL) {
    *pResult = NULL;
    return TSDB_CODE_SUCCESS;
  }

  // set time window for current result
  pResultRow->win = (*win);
  *pResult = pResultRow;
H
Haojun Liao 已提交
684
  setResultRowOutputBufInitCtx_rv(pResultRow, pCtx, numOfOutput, rowCellInfoOffset);
H
Haojun Liao 已提交
685 686 687
  return TSDB_CODE_SUCCESS;
}

688 689 690 691 692
static void setResultRowInterpo(SResultRow* pResult, SResultTsInterpType type) {
  assert(pResult != NULL && (type == RESULT_ROW_START_INTERP || type == RESULT_ROW_END_INTERP));
  if (type == RESULT_ROW_START_INTERP) {
    pResult->startInterp = true;
  } else {
L
Liu Jicong 已提交
693
    pResult->endInterp = true;
694 695 696 697 698 699 700 701
  }
}

static bool resultRowInterpolated(SResultRow* pResult, SResultTsInterpType type) {
  assert(pResult != NULL && (type == RESULT_ROW_START_INTERP || type == RESULT_ROW_END_INTERP));
  if (type == RESULT_ROW_START_INTERP) {
    return pResult->startInterp == true;
  } else {
L
Liu Jicong 已提交
702
    return pResult->endInterp == true;
703 704 705
  }
}

L
Liu Jicong 已提交
706 707
static FORCE_INLINE int32_t getForwardStepsInBlock(int32_t numOfRows, __block_search_fn_t searchFn, TSKEY ekey,
                                                   int16_t pos, int16_t order, int64_t* pData) {
708 709 710
  int32_t forwardStep = 0;

  if (order == TSDB_ORDER_ASC) {
L
Liu Jicong 已提交
711
    int32_t end = searchFn((char*)&pData[pos], numOfRows - pos, ekey, order);
712 713 714 715 716 717 718 719
    if (end >= 0) {
      forwardStep = end;

      if (pData[end + pos] == ekey) {
        forwardStep += 1;
      }
    }
  } else {
L
Liu Jicong 已提交
720
    int32_t end = searchFn((char*)pData, pos + 1, ekey, order);
721 722 723 724 725 726 727 728 729 730 731 732 733
    if (end >= 0) {
      forwardStep = pos - end;

      if (pData[end] == ekey) {
        forwardStep += 1;
      }
    }
  }

  assert(forwardStep >= 0);
  return forwardStep;
}

dengyihao's avatar
dengyihao 已提交
734 735
static void doUpdateResultRowIndex(SResultRowInfo* pResultRowInfo, TSKEY lastKey, bool ascQuery,
                                   bool timeWindowInterpo) {
736
  int64_t skey = TSKEY_INITIAL_VAL;
H
Haojun Liao 已提交
737
#if 0
738 739
  int32_t i = 0;
  for (i = pResultRowInfo->size - 1; i >= 0; --i) {
L
Liu Jicong 已提交
740
    SResultRow* pResult = pResultRowInfo->pResult[i];
741 742 743 744 745 746
    if (pResult->closed) {
      break;
    }

    // new closed result rows
    if (timeWindowInterpo) {
L
Liu Jicong 已提交
747 748 749
      if (pResult->endInterp &&
          ((pResult->win.skey <= lastKey && ascQuery) || (pResult->win.skey >= lastKey && !ascQuery))) {
        if (i > 0) {  // the first time window, the startInterp is false.
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
          assert(pResult->startInterp);
        }

        closeResultRow(pResultRowInfo, i);
      } else {
        skey = pResult->win.skey;
      }
    } else {
      if ((pResult->win.ekey <= lastKey && ascQuery) || (pResult->win.skey >= lastKey && !ascQuery)) {
        closeResultRow(pResultRowInfo, i);
      } else {
        skey = pResult->win.skey;
      }
    }
  }

  // all result rows are closed, set the last one to be the skey
  if (skey == TSKEY_INITIAL_VAL) {
    if (pResultRowInfo->size == 0) {
L
Liu Jicong 已提交
769
      //      assert(pResultRowInfo->current == NULL);
770 771 772 773 774 775 776
      assert(pResultRowInfo->curPos == -1);
      pResultRowInfo->curPos = -1;
    } else {
      pResultRowInfo->curPos = pResultRowInfo->size - 1;
    }
  } else {
    for (i = pResultRowInfo->size - 1; i >= 0; --i) {
L
Liu Jicong 已提交
777
      SResultRow* pResult = pResultRowInfo->pResult[i];
778 779 780 781 782 783 784 785 786 787 788
      if (pResult->closed) {
        break;
      }
    }

    if (i == pResultRowInfo->size - 1) {
      pResultRowInfo->curPos = i;
    } else {
      pResultRowInfo->curPos = i + 1;  // current not closed result object
    }
  }
H
Haojun Liao 已提交
789
#endif
790
}
791
//
dengyihao's avatar
dengyihao 已提交
792
// static void updateResultRowInfoActiveIndex(SResultRowInfo* pResultRowInfo, const STimeWindow* pWin, TSKEY lastKey,
793 794 795 796 797 798 799 800 801
//                                           bool ascQuery, bool interp) {
//  if ((lastKey > pWin->ekey && ascQuery) || (lastKey < pWin->ekey && (!ascQuery))) {
//    closeAllResultRows(pResultRowInfo);
//    pResultRowInfo->curPos = pResultRowInfo->size - 1;
//  } else {
//    int32_t step = ascQuery ? 1 : -1;
//    doUpdateResultRowIndex(pResultRowInfo, lastKey - step, ascQuery, interp);
//  }
//}
802

L
Liu Jicong 已提交
803 804 805
static int32_t getNumOfRowsInTimeWindow(SDataBlockInfo* pDataBlockInfo, TSKEY* pPrimaryColumn, int32_t startPos,
                                        TSKEY ekey, __block_search_fn_t searchFn, STableQueryInfo* item,
                                        int32_t order) {
806 807
  assert(startPos >= 0 && startPos < pDataBlockInfo->rows);

L
Liu Jicong 已提交
808 809
  int32_t num = -1;
  int32_t step = GET_FORWARD_DIRECTION_FACTOR(order);
810

H
Haojun Liao 已提交
811
  if (order == TSDB_ORDER_ASC) {
812 813
    if (ekey < pDataBlockInfo->window.ekey && pPrimaryColumn) {
      num = getForwardStepsInBlock(pDataBlockInfo->rows, searchFn, ekey, startPos, order, pPrimaryColumn);
H
Haojun Liao 已提交
814
      if (item != NULL) {
815 816 817 818
        item->lastKey = pPrimaryColumn[startPos + (num - 1)] + step;
      }
    } else {
      num = pDataBlockInfo->rows - startPos;
H
Haojun Liao 已提交
819
      if (item != NULL) {
820 821 822 823 824 825
        item->lastKey = pDataBlockInfo->window.ekey + step;
      }
    }
  } else {  // desc
    if (ekey > pDataBlockInfo->window.skey && pPrimaryColumn) {
      num = getForwardStepsInBlock(pDataBlockInfo->rows, searchFn, ekey, startPos, order, pPrimaryColumn);
H
Haojun Liao 已提交
826
      if (item != NULL) {
827 828 829 830
        item->lastKey = pPrimaryColumn[startPos - (num - 1)] + step;
      }
    } else {
      num = startPos + 1;
H
Haojun Liao 已提交
831
      if (item != NULL) {
832 833 834 835 836 837 838 839 840
        item->lastKey = pDataBlockInfo->window.skey + step;
      }
    }
  }

  assert(num >= 0);
  return num;
}

841 842 843 844 845
//  query_range_start, query_range_end, window_duration, window_start, window_end
static void initExecTimeWindowInfo(SColumnInfoData* pColData, STimeWindow* pQueryWindow) {
  pColData->info.type = TSDB_DATA_TYPE_TIMESTAMP;
  pColData->info.bytes = sizeof(int64_t);

846
  colInfoDataEnsureCapacity(pColData, 0, 5);
847 848 849 850 851 852 853 854 855
  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);
}

856
static void updateTimeWindowInfo(SColumnInfoData* pColData, STimeWindow* pWin, bool includeEndpoint) {
857
  int64_t* ts = (int64_t*)pColData->pData;
dengyihao's avatar
dengyihao 已提交
858
  int32_t  delta = includeEndpoint ? 1 : 0;
859

860
  int64_t duration = pWin->ekey - pWin->skey + delta;
dengyihao's avatar
dengyihao 已提交
861 862 863
  ts[2] = duration;            // set the duration
  ts[3] = pWin->skey;          // window start key
  ts[4] = pWin->ekey + delta;  // window end key
864 865
}

dengyihao's avatar
dengyihao 已提交
866 867
void doApplyFunctions(SqlFunctionCtx* pCtx, STimeWindow* pWin, SColumnInfoData* pTimeWindowData, int32_t offset,
                      int32_t forwardStep, TSKEY* tsCol, int32_t numOfTotal, int32_t numOfOutput, int32_t order) {
868 869 870
  for (int32_t k = 0; k < numOfOutput; ++k) {
    pCtx[k].startTs = pWin->skey;

H
Haojun Liao 已提交
871
    // keep it temporarily
dengyihao's avatar
dengyihao 已提交
872 873
    bool    hasAgg = pCtx[k].input.colDataAggIsSet;
    int32_t numOfRows = pCtx[k].input.numOfRows;
H
Haojun Liao 已提交
874
    int32_t startOffset = pCtx[k].input.startRowIndex;
875

H
Haojun Liao 已提交
876
    int32_t pos = (order == TSDB_ORDER_ASC) ? offset : offset - (forwardStep - 1);
877 878
    pCtx[k].input.startRowIndex = pos;
    pCtx[k].input.numOfRows = forwardStep;
879 880

    if (tsCol != NULL) {
H
Haojun Liao 已提交
881
      pCtx[k].ptsList = tsCol;
882 883 884 885 886 887 888 889
    }

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

890 891
    if (fmIsWindowPseudoColumnFunc(pCtx[k].functionId)) {
      SResultRowEntryInfo* pEntryInfo = GET_RES_INFO(&pCtx[k]);
dengyihao's avatar
dengyihao 已提交
892
      char*                p = GET_ROWCELL_INTERBUF(pEntryInfo);
893

894
      SColumnInfoData idata = {0};
dengyihao's avatar
dengyihao 已提交
895
      idata.info.type = TSDB_DATA_TYPE_BIGINT;
896
      idata.info.bytes = tDataTypes[TSDB_DATA_TYPE_BIGINT].bytes;
dengyihao's avatar
dengyihao 已提交
897
      idata.pData = p;
898 899 900 901

      SScalarParam out = {.columnData = &idata};
      SScalarParam tw = {.numOfRows = 5, .columnData = pTimeWindowData};
      pCtx[k].sfp.process(&tw, 1, &out);
902 903 904 905
      pEntryInfo->numOfRes = 1;
      continue;
    }

H
Haojun Liao 已提交
906
    if (functionNeedToExecute(&pCtx[k])) {
907
      pCtx[k].fpSet.process(&pCtx[k]);
908 909 910
    }

    // restore it
911 912 913
    pCtx[k].input.colDataAggIsSet = hasAgg;
    pCtx[k].input.startRowIndex = startOffset;
    pCtx[k].input.numOfRows = numOfRows;
914 915 916
  }
}

H
Haojun Liao 已提交
917 918 919
static int32_t getNextQualifiedWindow(SInterval* pInterval, STimeWindow* pNext, SDataBlockInfo* pDataBlockInfo,
                                      TSKEY* primaryKeys, int32_t prevPosition, STableIntervalOperatorInfo* pInfo) {
  int32_t order = pInfo->order;
L
Liu Jicong 已提交
920
  bool    ascQuery = (order == TSDB_ORDER_ASC);
H
Haojun Liao 已提交
921

922
  int32_t precision = pInterval->precision;
H
Haojun Liao 已提交
923
  getNextTimeWindow(pInterval, precision, order, pNext);
924 925

  // next time window is not in current block
H
Haojun Liao 已提交
926 927
  if ((pNext->skey > pDataBlockInfo->window.ekey && order == TSDB_ORDER_ASC) ||
      (pNext->ekey < pDataBlockInfo->window.skey && order == TSDB_ORDER_DESC)) {
928 929 930
    return -1;
  }

L
Liu Jicong 已提交
931
  TSKEY   startKey = ascQuery ? pNext->skey : pNext->ekey;
932 933 934
  int32_t startPos = 0;

  // tumbling time window query, a special case of sliding time window query
H
Haojun Liao 已提交
935 936
  if (pInterval->sliding == pInterval->interval && prevPosition != -1) {
    int32_t factor = GET_FORWARD_DIRECTION_FACTOR(order);
937 938
    startPos = prevPosition + factor;
  } else {
H
Haojun Liao 已提交
939
    if (startKey <= pDataBlockInfo->window.skey && ascQuery) {
940
      startPos = 0;
H
Haojun Liao 已提交
941
    } else if (startKey >= pDataBlockInfo->window.ekey && !ascQuery) {
942 943
      startPos = pDataBlockInfo->rows - 1;
    } else {
L
Liu Jicong 已提交
944
      startPos = binarySearchForKey((char*)primaryKeys, pDataBlockInfo->rows, startKey, order);
945 946 947 948
    }
  }

  /* interp query with fill should not skip time window */
L
Liu Jicong 已提交
949 950 951
  //  if (pQueryAttr->pointInterpQuery && pQueryAttr->fillType != TSDB_FILL_NONE) {
  //    return startPos;
  //  }
952 953 954 955 956 957

  /*
   * This time window does not cover any data, try next time window,
   * this case may happen when the time window is too small
   */
  if (primaryKeys == NULL) {
H
Haojun Liao 已提交
958
    if (ascQuery) {
959 960 961 962 963
      assert(pDataBlockInfo->window.skey <= pNext->ekey);
    } else {
      assert(pDataBlockInfo->window.ekey >= pNext->skey);
    }
  } else {
H
Haojun Liao 已提交
964
    if (ascQuery && primaryKeys[startPos] > pNext->ekey) {
965
      TSKEY next = primaryKeys[startPos];
H
Haojun Liao 已提交
966 967 968
      if (pInterval->intervalUnit == 'n' || pInterval->intervalUnit == 'y') {
        pNext->skey = taosTimeTruncate(next, pInterval, precision);
        pNext->ekey = taosTimeAdd(pNext->skey, pInterval->interval, pInterval->intervalUnit, precision) - 1;
969
      } else {
L
Liu Jicong 已提交
970
        pNext->ekey += ((next - pNext->ekey + pInterval->sliding - 1) / pInterval->sliding) * pInterval->sliding;
H
Haojun Liao 已提交
971
        pNext->skey = pNext->ekey - pInterval->interval + 1;
972
      }
H
Haojun Liao 已提交
973
    } else if ((!ascQuery) && primaryKeys[startPos] < pNext->skey) {
974
      TSKEY next = primaryKeys[startPos];
H
Haojun Liao 已提交
975 976 977
      if (pInterval->intervalUnit == 'n' || pInterval->intervalUnit == 'y') {
        pNext->skey = taosTimeTruncate(next, pInterval, precision);
        pNext->ekey = taosTimeAdd(pNext->skey, pInterval->interval, pInterval->intervalUnit, precision) - 1;
978
      } else {
H
Haojun Liao 已提交
979 980
        pNext->skey -= ((pNext->skey - next + pInterval->sliding - 1) / pInterval->sliding) * pInterval->sliding;
        pNext->ekey = pNext->skey + pInterval->interval - 1;
981 982 983 984 985 986 987
      }
    }
  }

  return startPos;
}

L
Liu Jicong 已提交
988
static FORCE_INLINE TSKEY reviseWindowEkey(STaskAttr* pQueryAttr, STimeWindow* pWindow) {
dengyihao's avatar
dengyihao 已提交
989
  TSKEY   ekey = -1;
990 991
  int32_t order = TSDB_ORDER_ASC;
  if (order == TSDB_ORDER_ASC) {
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
    ekey = pWindow->ekey;
    if (ekey > pQueryAttr->window.ekey) {
      ekey = pQueryAttr->window.ekey;
    }
  } else {
    ekey = pWindow->skey;
    if (ekey < pQueryAttr->window.ekey) {
      ekey = pQueryAttr->window.ekey;
    }
  }

  return ekey;
}

H
Haojun Liao 已提交
1006
static void setNotInterpoWindowKey(SqlFunctionCtx* pCtx, int32_t numOfOutput, int32_t type) {
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
  if (type == RESULT_ROW_START_INTERP) {
    for (int32_t k = 0; k < numOfOutput; ++k) {
      pCtx[k].start.key = INT64_MIN;
    }
  } else {
    for (int32_t k = 0; k < numOfOutput; ++k) {
      pCtx[k].end.key = INT64_MIN;
    }
  }
}

H
Haojun Liao 已提交
1018
static void saveDataBlockLastRow(char** pRow, SArray* pDataBlock, int32_t rowIndex, int32_t numOfCols) {
1019 1020 1021 1022
  if (pDataBlock == NULL) {
    return;
  }

H
Haojun Liao 已提交
1023
  for (int32_t k = 0; k < numOfCols; ++k) {
L
Liu Jicong 已提交
1024
    SColumnInfoData* pColInfo = taosArrayGet(pDataBlock, k);
H
Haojun Liao 已提交
1025
    memcpy(pRow[k], ((char*)pColInfo->pData) + (pColInfo->info.bytes * rowIndex), pColInfo->info.bytes);
1026 1027 1028
  }
}

H
Haojun Liao 已提交
1029
static TSKEY getStartTsKey(STimeWindow* win, const TSKEY* tsCols, int32_t rows, bool ascQuery) {
1030 1031
  TSKEY ts = TSKEY_INITIAL_VAL;
  if (tsCols == NULL) {
L
Liu Jicong 已提交
1032
    ts = ascQuery ? win->skey : win->ekey;
1033
  } else {
L
Liu Jicong 已提交
1034
    int32_t offset = ascQuery ? 0 : rows - 1;
1035 1036 1037 1038 1039 1040
    ts = tsCols[offset];
  }

  return ts;
}

dengyihao's avatar
dengyihao 已提交
1041 1042
static int32_t doSetInputDataBlock(SOperatorInfo* pOperator, SqlFunctionCtx* pCtx, SSDataBlock* pBlock, int32_t order,
                                   bool createDummyCol);
1043

dengyihao's avatar
dengyihao 已提交
1044 1045
static void doSetInputDataBlockInfo(SOperatorInfo* pOperator, SqlFunctionCtx* pCtx, SSDataBlock* pBlock,
                                    int32_t order) {
1046 1047
  for (int32_t i = 0; i < pOperator->numOfOutput; ++i) {
    pCtx[i].order = order;
L
Liu Jicong 已提交
1048
    pCtx[i].size = pBlock->info.rows;
1049
    setBlockStatisInfo(&pCtx[i], &pOperator->pExpr[i], pBlock);
1050 1051 1052
  }
}

dengyihao's avatar
dengyihao 已提交
1053 1054
void setInputDataBlock(SOperatorInfo* pOperator, SqlFunctionCtx* pCtx, SSDataBlock* pBlock, int32_t order,
                       bool createDummyCol) {
1055
  if (pBlock->pBlockAgg != NULL) {
H
Haojun Liao 已提交
1056
    doSetInputDataBlockInfo(pOperator, pCtx, pBlock, order);
1057
  } else {
1058
    doSetInputDataBlock(pOperator, pCtx, pBlock, order, createDummyCol);
H
Haojun Liao 已提交
1059
  }
1060 1061
}

dengyihao's avatar
dengyihao 已提交
1062 1063
static int32_t doCreateConstantValColumnInfo(SInputColumnInfoData* pInput, SFunctParam* pFuncParam, int32_t type,
                                             int32_t paramIndex, int32_t numOfRows) {
1064 1065 1066 1067 1068 1069 1070 1071
  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)
dengyihao's avatar
dengyihao 已提交
1072 1073
    pColInfo->info.type = type;
    pColInfo->info.bytes = tDataTypes[type].bytes;
1074 1075 1076 1077 1078

    pInput->pData[paramIndex] = pColInfo;
  }

  ASSERT(!IS_VAR_DATA_TYPE(type));
1079
  colInfoDataEnsureCapacity(pColInfo, 0, numOfRows);
1080 1081 1082

  if (type == TSDB_DATA_TYPE_BIGINT || type == TSDB_DATA_TYPE_UBIGINT) {
    int64_t v = pFuncParam->param.i;
dengyihao's avatar
dengyihao 已提交
1083
    for (int32_t i = 0; i < numOfRows; ++i) {
1084 1085 1086 1087
      colDataAppendInt64(pColInfo, i, &v);
    }
  } else if (type == TSDB_DATA_TYPE_DOUBLE) {
    double v = pFuncParam->param.d;
dengyihao's avatar
dengyihao 已提交
1088
    for (int32_t i = 0; i < numOfRows; ++i) {
1089 1090 1091 1092 1093 1094 1095
      colDataAppendDouble(pColInfo, i, &v);
    }
  }

  return TSDB_CODE_SUCCESS;
}

dengyihao's avatar
dengyihao 已提交
1096 1097
static int32_t doSetInputDataBlock(SOperatorInfo* pOperator, SqlFunctionCtx* pCtx, SSDataBlock* pBlock, int32_t order,
                                   bool createDummyCol) {
1098 1099
  int32_t code = TSDB_CODE_SUCCESS;

1100 1101
  for (int32_t i = 0; i < pOperator->numOfOutput; ++i) {
    pCtx[i].order = order;
L
Liu Jicong 已提交
1102
    pCtx[i].size = pBlock->info.rows;
H
Haojun Liao 已提交
1103 1104
    pCtx[i].currentStage = MAIN_SCAN;

1105
    SInputColumnInfoData* pInput = &pCtx[i].input;
1106
    pInput->uid = pBlock->info.uid;
1107

1108 1109
    SExprInfo* pOneExpr = &pOperator->pExpr[i];
    for (int32_t j = 0; j < pOneExpr->base.numOfParams; ++j) {
dengyihao's avatar
dengyihao 已提交
1110
      SFunctParam* pFuncParam = &pOneExpr->base.pParam[j];
G
Ganlin Zhao 已提交
1111 1112
      if (pFuncParam->type == FUNC_PARAM_TYPE_COLUMN) {
        int32_t slotId = pFuncParam->pCol->slotId;
dengyihao's avatar
dengyihao 已提交
1113
        pInput->pData[j] = taosArrayGet(pBlock->pDataBlock, slotId);
1114 1115 1116
        pInput->totalRows = pBlock->info.rows;
        pInput->numOfRows = pBlock->info.rows;
        pInput->startRowIndex = 0;
1117

dengyihao's avatar
dengyihao 已提交
1118
        pInput->pPTS = taosArrayGet(pBlock->pDataBlock, 0);  // todo set the correct timestamp column
1119 1120
        ASSERT(pInput->pData[j] != NULL);
      } else if (pFuncParam->type == FUNC_PARAM_TYPE_VALUE) {
1121 1122 1123
        // 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) {
1124 1125 1126 1127
          code = doCreateConstantValColumnInfo(pInput, pFuncParam, pFuncParam->param.nType, j, pBlock->info.rows);
          if (code != TSDB_CODE_SUCCESS) {
            return code;
          }
1128
        }
G
Ganlin Zhao 已提交
1129 1130
      }
    }
H
Haojun Liao 已提交
1131

H
Haojun Liao 已提交
1132
    //    setBlockStatisInfo(&pCtx[i], pBlock, pOperator->pExpr[i].base.pColumns);
H
Haojun Liao 已提交
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
    //      uint32_t flag = pOperator->pExpr[i].base.pParam[0].pCol->flag;
    //      if (TSDB_COL_IS_NORMAL_COL(flag) /*|| (pCtx[i].functionId == FUNCTION_BLKINFO) ||
    //          (TSDB_COL_IS_TAG(flag) && pOperator->pRuntimeEnv->scanFlag == MERGE_STAGE)*/) {

    //        SColumn* pCol = pOperator->pExpr[i].base.pParam[0].pCol;
    //        if (pCtx[i].columnIndex == -1) {
    //          for(int32_t j = 0; j < pBlock->info.numOfCols; ++j) {
    //            SColumnInfoData* pColData = taosArrayGet(pBlock->pDataBlock, j);
    //            if (pColData->info.colId == pCol->colId) {
    //              pCtx[i].columnIndex = j;
    //              break;
    //            }
    //          }
    //        }

    //        uint32_t status = aAggs[pCtx[i].functionId].status;
    //        if ((status & (FUNCSTATE_SELECTIVITY | FUNCSTATE_NEED_TS)) != 0) {
    //          SColumnInfoData* tsInfo = taosArrayGet(pBlock->pDataBlock, 0);
    // In case of the top/bottom query again the nest query result, which has no timestamp column
    // don't set the ptsList attribute.
    //          if (tsInfo->info.type == TSDB_DATA_TYPE_TIMESTAMP) {
    //            pCtx[i].ptsList = (int64_t*) tsInfo->pData;
    //          } else {
    //            pCtx[i].ptsList = NULL;
    //          }
    //        }
    //      } else if (TSDB_COL_IS_UD_COL(pCol->flag) && (pOperator->pRuntimeEnv->scanFlag == MERGE_STAGE)) {
    //        SColIndex*       pColIndex = &pOperator->pExpr[i].base.colInfo;
    //        SColumnInfoData* p = taosArrayGet(pBlock->pDataBlock, pColIndex->colIndex);
    //
    //        pCtx[i].pInput = p->pData;
    //        assert(p->info.colId == pColIndex->info.colId && pCtx[i].inputType == p->info.type);
    //        for(int32_t j = 0; j < pBlock->info.rows; ++j) {
    //          char* dst = p->pData + j * p->info.bytes;
    //          taosVariantDump(&pOperator->pExpr[i].base.param[1], dst, p->info.type, true);
    //        }
    //      }
  }
1171 1172

  return code;
H
Haojun Liao 已提交
1173 1174 1175
}

static void doAggregateImpl(SOperatorInfo* pOperator, TSKEY startTs, SqlFunctionCtx* pCtx) {
1176
  for (int32_t k = 0; k < pOperator->numOfOutput; ++k) {
H
Haojun Liao 已提交
1177
    if (functionNeedToExecute(&pCtx[k])) {
L
Liu Jicong 已提交
1178
      pCtx[k].startTs = startTs;  // this can be set during create the struct
H
Haojun Liao 已提交
1179
      pCtx[k].fpSet.process(&pCtx[k]);
1180 1181 1182 1183
    }
  }
}

H
Haojun Liao 已提交
1184
static void setPseudoOutputColInfo(SSDataBlock* pResult, SqlFunctionCtx* pCtx, SArray* pPseudoList) {
dengyihao's avatar
dengyihao 已提交
1185
  size_t num = (pPseudoList != NULL) ? taosArrayGetSize(pPseudoList) : 0;
H
Haojun Liao 已提交
1186 1187 1188 1189 1190
  for (int32_t i = 0; i < num; ++i) {
    pCtx[i].pOutput = taosArrayGet(pResult->pDataBlock, i);
  }
}

dengyihao's avatar
dengyihao 已提交
1191 1192
void projectApplyFunctions(SExprInfo* pExpr, SSDataBlock* pResult, SSDataBlock* pSrcBlock, SqlFunctionCtx* pCtx,
                           int32_t numOfOutput, SArray* pPseudoList) {
H
Haojun Liao 已提交
1193
  setPseudoOutputColInfo(pResult, pCtx, pPseudoList);
H
Haojun Liao 已提交
1194
  pResult->info.groupId = pSrcBlock->info.groupId;
H
Haojun Liao 已提交
1195

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

1200 1201
  int32_t numOfRows = 0;

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

L
Liu Jicong 已提交
1206
    if (pExpr[k].pExpr->nodeType == QUERY_NODE_COLUMN) {  // it is a project query
1207
      SColumnInfoData* pColInfoData = taosArrayGet(pResult->pDataBlock, outputSlotId);
1208
      if (pResult->info.rows > 0 && !createNewColModel) {
1209 1210 1211 1212
        colDataMergeCol(pColInfoData, pResult->info.rows, pfCtx->input.pData[0], pfCtx->input.numOfRows);
      } else {
        colDataAssign(pColInfoData, pfCtx->input.pData[0], pfCtx->input.numOfRows);
      }
1213

1214
      numOfRows = pfCtx->input.numOfRows;
1215
    } else if (pExpr[k].pExpr->nodeType == QUERY_NODE_VALUE) {
1216
      SColumnInfoData* pColInfoData = taosArrayGet(pResult->pDataBlock, outputSlotId);
1217

dengyihao's avatar
dengyihao 已提交
1218
      int32_t offset = createNewColModel ? 0 : pResult->info.rows;
1219
      for (int32_t i = 0; i < pSrcBlock->info.rows; ++i) {
dengyihao's avatar
dengyihao 已提交
1220 1221 1222
        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);
1223
      }
1224 1225

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

1230
      SColumnInfoData* pResColData = taosArrayGet(pResult->pDataBlock, outputSlotId);
dengyihao's avatar
dengyihao 已提交
1231
      SColumnInfoData  idata = {.info = pResColData->info};
1232

1233
      SScalarParam dest = {.columnData = &idata};
1234 1235
      scalarCalculate(pExpr[k].pExpr->_optrRoot.pRootNode, pBlockList, &dest);

dengyihao's avatar
dengyihao 已提交
1236
      int32_t startOffset = createNewColModel ? 0 : pResult->info.rows;
1237
      colDataMergeCol(pResColData, startOffset, &idata, dest.numOfRows);
1238 1239

      numOfRows = dest.numOfRows;
1240 1241
      taosArrayDestroy(pBlockList);
    } else if (pExpr[k].pExpr->nodeType == QUERY_NODE_FUNCTION) {
1242
      ASSERT(!fmIsAggFunc(pfCtx->functionId));
1243

1244
      if (fmIsPseudoColumnFunc(pfCtx->functionId)) {
H
Haojun Liao 已提交
1245
        // do nothing
1246
      } else if (fmIsNonstandardSQLFunc(pfCtx->functionId)) {
H
Haojun Liao 已提交
1247
        // todo set the correct timestamp column
1248
        pfCtx->input.pPTS = taosArrayGet(pSrcBlock->pDataBlock, 1);
1249

dengyihao's avatar
dengyihao 已提交
1250
        SResultRowEntryInfo* pResInfo = GET_RES_INFO(&pCtx[k]);
1251
        pfCtx->fpSet.init(&pCtx[k], pResInfo);
1252

1253
        pfCtx->pOutput = taosArrayGet(pResult->pDataBlock, outputSlotId);
dengyihao's avatar
dengyihao 已提交
1254
        pfCtx->offset = createNewColModel ? 0 : pResult->info.rows;  // set the start offset
H
Haojun Liao 已提交
1255

1256
        // set the timestamp(_rowts) output buffer
1257 1258
        if (taosArrayGetSize(pPseudoList) > 0) {
          int32_t* outputColIndex = taosArrayGet(pPseudoList, 0);
1259
          pfCtx->pTsOutput = (SColumnInfoData*)pCtx[*outputColIndex].pOutput;
1260
        }
H
Haojun Liao 已提交
1261

1262
        numOfRows = pfCtx->fpSet.process(pfCtx);
H
Haojun Liao 已提交
1263 1264 1265
      } else {
        SArray* pBlockList = taosArrayInit(4, POINTER_BYTES);
        taosArrayPush(pBlockList, &pSrcBlock);
G
Ganlin Zhao 已提交
1266

1267
        SColumnInfoData* pResColData = taosArrayGet(pResult->pDataBlock, outputSlotId);
dengyihao's avatar
dengyihao 已提交
1268
        SColumnInfoData  idata = {.info = pResColData->info};
H
Haojun Liao 已提交
1269

1270
        SScalarParam dest = {.columnData = &idata};
H
Haojun Liao 已提交
1271
        scalarCalculate((SNode*)pExpr[k].pExpr->_function.pFunctNode, pBlockList, &dest);
1272

dengyihao's avatar
dengyihao 已提交
1273
        int32_t startOffset = createNewColModel ? 0 : pResult->info.rows;
1274
        colDataMergeCol(pResColData, startOffset, &idata, dest.numOfRows);
1275 1276

        numOfRows = dest.numOfRows;
H
Haojun Liao 已提交
1277 1278
        taosArrayDestroy(pBlockList);
      }
1279
    } else {
1280
      ASSERT(0);
1281 1282
    }
  }
1283

1284 1285 1286
  if (!createNewColModel) {
    pResult->info.rows += numOfRows;
  }
1287 1288 1289 1290
}

void doTimeWindowInterpolation(SOperatorInfo* pOperator, SOptrBasicInfo* pInfo, SArray* pDataBlock, TSKEY prevTs,
                               int32_t prevRowIndex, TSKEY curTs, int32_t curRowIndex, TSKEY windowKey, int32_t type) {
dengyihao's avatar
dengyihao 已提交
1291
  SExprInfo* pExpr = pOperator->pExpr;
1292

H
Haojun Liao 已提交
1293
  SqlFunctionCtx* pCtx = pInfo->pCtx;
1294 1295 1296 1297 1298 1299 1300 1301

  for (int32_t k = 0; k < pOperator->numOfOutput; ++k) {
    int32_t functionId = pCtx[k].functionId;
    if (functionId != FUNCTION_TWA && functionId != FUNCTION_INTERP) {
      pCtx[k].start.key = INT64_MIN;
      continue;
    }

L
Liu Jicong 已提交
1302
    SColIndex*       pColIndex = NULL /*&pExpr[k].base.colInfo*/;
1303
    int16_t          index = pColIndex->colIndex;
L
Liu Jicong 已提交
1304
    SColumnInfoData* pColInfo = taosArrayGet(pDataBlock, index);
1305

L
Liu Jicong 已提交
1306
    //    assert(pColInfo->info.colId == pColIndex->info.colId && curTs != windowKey);
1307 1308 1309
    double v1 = 0, v2 = 0, v = 0;

    if (prevRowIndex == -1) {
dengyihao's avatar
dengyihao 已提交
1310
      //      GET_TYPED_DATA(v1, double, pColInfo->info.type, (char*)pRuntimeEnv->prevRow[index]);
1311
    } else {
L
Liu Jicong 已提交
1312
      GET_TYPED_DATA(v1, double, pColInfo->info.type, (char*)pColInfo->pData + prevRowIndex * pColInfo->info.bytes);
1313 1314
    }

L
Liu Jicong 已提交
1315
    GET_TYPED_DATA(v2, double, pColInfo->info.type, (char*)pColInfo->pData + curRowIndex * pColInfo->info.bytes);
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326

    if (functionId == FUNCTION_INTERP) {
      if (type == RESULT_ROW_START_INTERP) {
        pCtx[k].start.key = prevTs;
        pCtx[k].start.val = v1;

        pCtx[k].end.key = curTs;
        pCtx[k].end.val = v2;

        if (pColInfo->info.type == TSDB_DATA_TYPE_BINARY || pColInfo->info.type == TSDB_DATA_TYPE_NCHAR) {
          if (prevRowIndex == -1) {
dengyihao's avatar
dengyihao 已提交
1327
            //            pCtx[k].start.ptr = (char*)pRuntimeEnv->prevRow[index];
1328
          } else {
L
Liu Jicong 已提交
1329
            pCtx[k].start.ptr = (char*)pColInfo->pData + prevRowIndex * pColInfo->info.bytes;
1330 1331
          }

L
Liu Jicong 已提交
1332
          pCtx[k].end.ptr = (char*)pColInfo->pData + curRowIndex * pColInfo->info.bytes;
1333 1334 1335
        }
      }
    } else if (functionId == FUNCTION_TWA) {
L
Liu Jicong 已提交
1336 1337 1338
      SPoint point1 = (SPoint){.key = prevTs, .val = &v1};
      SPoint point2 = (SPoint){.key = curTs, .val = &v2};
      SPoint point = (SPoint){.key = windowKey, .val = &v};
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352

      taosGetLinearInterpolationVal(&point, TSDB_DATA_TYPE_DOUBLE, &point1, &point2, TSDB_DATA_TYPE_DOUBLE);

      if (type == RESULT_ROW_START_INTERP) {
        pCtx[k].start.key = point.key;
        pCtx[k].start.val = v;
      } else {
        pCtx[k].end.key = point.key;
        pCtx[k].end.val = v;
      }
    }
  }
}

H
Haojun Liao 已提交
1353
static bool setTimeWindowInterpolationStartTs(SOperatorInfo* pOperatorInfo, SqlFunctionCtx* pCtx, int32_t pos,
dengyihao's avatar
dengyihao 已提交
1354 1355
                                              int32_t numOfRows, SArray* pDataBlock, const TSKEY* tsCols,
                                              STimeWindow* win) {
H
Haojun Liao 已提交
1356
  bool  ascQuery = true;
L
Liu Jicong 已提交
1357
  TSKEY curTs = tsCols[pos];
dengyihao's avatar
dengyihao 已提交
1358
  TSKEY lastTs = 0;  //*(TSKEY*)pRuntimeEnv->prevRow[0];
1359 1360 1361

  // lastTs == INT64_MIN and pos == 0 means this is the first time window, interpolation is not needed.
  // start exactly from this point, no need to do interpolation
L
Liu Jicong 已提交
1362
  TSKEY key = ascQuery ? win->skey : win->ekey;
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
  if (key == curTs) {
    setNotInterpoWindowKey(pCtx, pOperatorInfo->numOfOutput, RESULT_ROW_START_INTERP);
    return true;
  }

  if (lastTs == INT64_MIN && ((pos == 0 && ascQuery) || (pos == (numOfRows - 1) && !ascQuery))) {
    setNotInterpoWindowKey(pCtx, pOperatorInfo->numOfOutput, RESULT_ROW_START_INTERP);
    return true;
  }

dengyihao's avatar
dengyihao 已提交
1373
  int32_t step = 1;  // GET_FORWARD_DIRECTION_FACTOR(pQueryAttr->order.order);
L
Liu Jicong 已提交
1374
  TSKEY   prevTs = ((pos == 0 && ascQuery) || (pos == (numOfRows - 1) && !ascQuery)) ? lastTs : tsCols[pos - step];
1375

dengyihao's avatar
dengyihao 已提交
1376 1377
  doTimeWindowInterpolation(pOperatorInfo, pOperatorInfo->info, pDataBlock, prevTs, pos - step, curTs, pos, key,
                            RESULT_ROW_START_INTERP);
1378 1379 1380
  return true;
}

L
Liu Jicong 已提交
1381 1382 1383
static bool setTimeWindowInterpolationEndTs(SOperatorInfo* pOperatorInfo, SqlFunctionCtx* pCtx, int32_t endRowIndex,
                                            SArray* pDataBlock, const TSKEY* tsCols, TSKEY blockEkey,
                                            STimeWindow* win) {
H
Haojun Liao 已提交
1384 1385
  int32_t order = TSDB_ORDER_ASC;
  int32_t numOfOutput = pOperatorInfo->numOfOutput;
1386

L
Liu Jicong 已提交
1387
  TSKEY actualEndKey = tsCols[endRowIndex];
H
Haojun Liao 已提交
1388
  TSKEY key = order ? win->ekey : win->skey;
1389 1390

  // not ended in current data block, do not invoke interpolation
dengyihao's avatar
dengyihao 已提交
1391 1392
  if ((key > blockEkey /*&& QUERY_IS_ASC_QUERY(pQueryAttr)*/) ||
      (key < blockEkey /*&& !QUERY_IS_ASC_QUERY(pQueryAttr)*/)) {
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
    setNotInterpoWindowKey(pCtx, numOfOutput, RESULT_ROW_END_INTERP);
    return false;
  }

  // there is actual end point of current time window, no interpolation need
  if (key == actualEndKey) {
    setNotInterpoWindowKey(pCtx, numOfOutput, RESULT_ROW_END_INTERP);
    return true;
  }

H
Haojun Liao 已提交
1403
  int32_t step = GET_FORWARD_DIRECTION_FACTOR(order);
1404 1405 1406 1407 1408
  int32_t nextRowIndex = endRowIndex + step;
  assert(nextRowIndex >= 0);

  TSKEY nextKey = tsCols[nextRowIndex];
  doTimeWindowInterpolation(pOperatorInfo, pOperatorInfo->info, pDataBlock, actualEndKey, endRowIndex, nextKey,
L
Liu Jicong 已提交
1409
                            nextRowIndex, key, RESULT_ROW_END_INTERP);
1410 1411 1412
  return true;
}

H
Haojun Liao 已提交
1413
static void doWindowBorderInterpolation(SOperatorInfo* pOperatorInfo, SSDataBlock* pBlock, SqlFunctionCtx* pCtx,
L
Liu Jicong 已提交
1414 1415
                                        SResultRow* pResult, STimeWindow* win, int32_t startPos, int32_t forwardStep,
                                        int32_t order, bool timeWindowInterpo) {
H
Haojun Liao 已提交
1416
  if (!timeWindowInterpo) {
1417 1418 1419 1420
    return;
  }

  assert(pBlock != NULL);
H
Haojun Liao 已提交
1421
  int32_t step = GET_FORWARD_DIRECTION_FACTOR(order);
1422

L
Liu Jicong 已提交
1423 1424
  if (pBlock->pDataBlock == NULL) {
    //    tscError("pBlock->pDataBlock == NULL");
1425 1426
    return;
  }
H
Haojun Liao 已提交
1427

L
Liu Jicong 已提交
1428
  SColumnInfoData* pColInfo = taosArrayGet(pBlock->pDataBlock, 0);
1429

L
Liu Jicong 已提交
1430 1431 1432
  TSKEY* tsCols = (TSKEY*)(pColInfo->pData);
  bool   done = resultRowInterpolated(pResult, RESULT_ROW_START_INTERP);
  if (!done) {  // it is not interpolated, now start to generated the interpolated value
1433
    int32_t startRowIndex = startPos;
L
Liu Jicong 已提交
1434
    bool    interp = setTimeWindowInterpolationStartTs(pOperatorInfo, pCtx, startRowIndex, pBlock->info.rows,
dengyihao's avatar
dengyihao 已提交
1435
                                                    pBlock->pDataBlock, tsCols, win);
1436 1437 1438 1439
    if (interp) {
      setResultRowInterpo(pResult, RESULT_ROW_START_INTERP);
    }
  } else {
H
Haojun Liao 已提交
1440
    setNotInterpoWindowKey(pCtx, pOperatorInfo->numOfOutput, RESULT_ROW_START_INTERP);
1441 1442 1443
  }

  // point interpolation does not require the end key time window interpolation.
L
Liu Jicong 已提交
1444 1445 1446
  //  if (pointInterpQuery) {
  //    return;
  //  }
1447 1448 1449 1450 1451 1452

  // interpolation query does not generate the time window end interpolation
  done = resultRowInterpolated(pResult, RESULT_ROW_END_INTERP);
  if (!done) {
    int32_t endRowIndex = startPos + (forwardStep - 1) * step;

L
Liu Jicong 已提交
1453 1454 1455
    TSKEY endKey = (order == TSDB_ORDER_ASC) ? pBlock->info.window.ekey : pBlock->info.window.skey;
    bool  interp =
        setTimeWindowInterpolationEndTs(pOperatorInfo, pCtx, endRowIndex, pBlock->pDataBlock, tsCols, endKey, win);
1456 1457 1458 1459
    if (interp) {
      setResultRowInterpo(pResult, RESULT_ROW_END_INTERP);
    }
  } else {
H
Haojun Liao 已提交
1460
    setNotInterpoWindowKey(pCtx, pOperatorInfo->numOfOutput, RESULT_ROW_END_INTERP);
1461 1462 1463
  }
}

dengyihao's avatar
dengyihao 已提交
1464 1465
static SArray* hashIntervalAgg(SOperatorInfo* pOperatorInfo, SResultRowInfo* pResultRowInfo, SSDataBlock* pSDataBlock,
                               int32_t tableGroupId) {
L
Liu Jicong 已提交
1466
  STableIntervalOperatorInfo* pInfo = (STableIntervalOperatorInfo*)pOperatorInfo->info;
1467

H
Haojun Liao 已提交
1468
  SExecTaskInfo* pTaskInfo = pOperatorInfo->pTaskInfo;
L
Liu Jicong 已提交
1469
  int32_t        numOfOutput = pOperatorInfo->numOfOutput;
1470

1471 1472 1473 1474 1475
  SArray* pUpdated = NULL;
  if (pInfo->execModel == OPTR_EXEC_MODEL_STREAM) {
    pUpdated = taosArrayInit(4, sizeof(SResultRowPosition));
  }

H
Haojun Liao 已提交
1476
  int32_t step = 1;
1477
  bool    ascScan = true;
1478

dengyihao's avatar
dengyihao 已提交
1479
  //  int32_t prevIndex = pResultRowInfo->curPos;
1480 1481 1482

  TSKEY* tsCols = NULL;
  if (pSDataBlock->pDataBlock != NULL) {
1483
    SColumnInfoData* pColDataInfo = taosArrayGet(pSDataBlock->pDataBlock, pInfo->primaryTsIndex);
L
Liu Jicong 已提交
1484
    tsCols = (int64_t*)pColDataInfo->pData;
dengyihao's avatar
dengyihao 已提交
1485 1486
    //    assert(tsCols[0] == pSDataBlock->info.window.skey && tsCols[pSDataBlock->info.rows - 1] ==
    //           pSDataBlock->info.window.ekey);
1487 1488
  }

dengyihao's avatar
dengyihao 已提交
1489
  int32_t startPos = ascScan ? 0 : (pSDataBlock->info.rows - 1);
1490
  TSKEY   ts = getStartTsKey(&pSDataBlock->info.window, tsCols, pSDataBlock->info.rows, ascScan);
1491

dengyihao's avatar
dengyihao 已提交
1492 1493
  STimeWindow win = getActiveTimeWindow(pInfo->aggSup.pResultBuf, pResultRowInfo, ts, &pInfo->interval,
                                        pInfo->interval.precision, &pInfo->win);
L
Liu Jicong 已提交
1494
  bool        masterScan = true;
1495 1496

  SResultRow* pResult = NULL;
L
Liu Jicong 已提交
1497
  int32_t     ret = setResultOutputBufByKey_rv(pResultRowInfo, pSDataBlock->info.uid, &win, masterScan, &pResult,
dengyihao's avatar
dengyihao 已提交
1498 1499
                                           tableGroupId, pInfo->binfo.pCtx, numOfOutput, pInfo->binfo.rowCellInfoOffset,
                                           &pInfo->aggSup, pTaskInfo);
1500
  if (ret != TSDB_CODE_SUCCESS || pResult == NULL) {
H
Haojun Liao 已提交
1501
    longjmp(pTaskInfo->env, TSDB_CODE_QRY_OUT_OF_MEMORY);
1502 1503
  }

1504 1505 1506 1507 1508
  if (pInfo->execModel == OPTR_EXEC_MODEL_STREAM) {
    SResultRowPosition pos = {.pageId = pResult->pageId, .offset = pResult->offset};
    taosArrayPush(pUpdated, &pos);
  }

1509
  int32_t forwardStep = 0;
H
Haojun Liao 已提交
1510
  TSKEY   ekey = win.ekey;
1511
  forwardStep =
H
Haojun Liao 已提交
1512
      getNumOfRowsInTimeWindow(&pSDataBlock->info, tsCols, startPos, ekey, binarySearchForKey, NULL, TSDB_ORDER_ASC);
1513 1514

  // prev time window not interpolation yet.
dengyihao's avatar
dengyihao 已提交
1515
  //  int32_t curIndex = pResultRowInfo->curPos;
H
Haojun Liao 已提交
1516 1517

#if 0
H
Haojun Liao 已提交
1518
  if (prevIndex != -1 && prevIndex < curIndex && pInfo->timeWindowInterpo) {
1519 1520 1521
    for (int32_t j = prevIndex; j < curIndex; ++j) {  // previous time window may be all closed already.
      SResultRow* pRes = getResultRow(pResultRowInfo, j);
      if (pRes->closed) {
1522
        assert(resultRowInterpolated(pRes, RESULT_ROW_START_INTERP) && resultRowInterpolated(pRes, RESULT_ROW_END_INTERP));
1523 1524 1525
        continue;
      }

L
Liu Jicong 已提交
1526 1527 1528 1529 1530 1531 1532
      STimeWindow w = pRes->win;
      ret = setResultOutputBufByKey_rv(pResultRowInfo, pSDataBlock->info.uid, &w, masterScan, &pResult, tableGroupId,
                                       pInfo->binfo.pCtx, numOfOutput, pInfo->binfo.rowCellInfoOffset, &pInfo->aggSup,
                                       pTaskInfo);
      if (ret != TSDB_CODE_SUCCESS) {
        longjmp(pTaskInfo->env, TSDB_CODE_QRY_OUT_OF_MEMORY);
      }
1533

L
Liu Jicong 已提交
1534 1535 1536
      assert(!resultRowInterpolated(pResult, RESULT_ROW_END_INTERP));
      doTimeWindowInterpolation(pOperatorInfo, &pInfo->binfo, pSDataBlock->pDataBlock, *(TSKEY*)pInfo->pRow[0], -1,
                                tsCols[startPos], startPos, w.ekey, RESULT_ROW_END_INTERP);
1537

L
Liu Jicong 已提交
1538 1539
      setResultRowInterpo(pResult, RESULT_ROW_END_INTERP);
      setNotInterpoWindowKey(pInfo->binfo.pCtx, pOperatorInfo->numOfOutput, RESULT_ROW_START_INTERP);
1540

1541
      doApplyFunctions(pInfo->binfo.pCtx, &w, &pInfo->timeWindowData, startPos, 0, tsCols, pSDataBlock->info.rows, numOfOutput, TSDB_ORDER_ASC);
L
Liu Jicong 已提交
1542
    }
1543 1544

    // restore current time window
L
Liu Jicong 已提交
1545 1546 1547
    ret = setResultOutputBufByKey_rv(pResultRowInfo, pSDataBlock->info.uid, &win, masterScan, &pResult, tableGroupId,
                                     pInfo->binfo.pCtx, numOfOutput, pInfo->binfo.rowCellInfoOffset, &pInfo->aggSup,
                                     pTaskInfo);
1548
    if (ret != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
1549
      longjmp(pTaskInfo->env, TSDB_CODE_QRY_OUT_OF_MEMORY);
1550 1551
    }
  }
H
Haojun Liao 已提交
1552
#endif
1553 1554

  // window start key interpolation
dengyihao's avatar
dengyihao 已提交
1555 1556
  doWindowBorderInterpolation(pOperatorInfo, pSDataBlock, pInfo->binfo.pCtx, pResult, &win, startPos, forwardStep,
                              pInfo->order, false);
1557

1558
  updateTimeWindowInfo(&pInfo->twAggSup.timeWindowData, &win, true);
dengyihao's avatar
dengyihao 已提交
1559 1560
  doApplyFunctions(pInfo->binfo.pCtx, &win, &pInfo->twAggSup.timeWindowData, startPos, forwardStep, tsCols,
                   pSDataBlock->info.rows, numOfOutput, TSDB_ORDER_ASC);
1561 1562 1563 1564

  STimeWindow nextWin = win;
  while (1) {
    int32_t prevEndPos = (forwardStep - 1) * step + startPos;
H
Haojun Liao 已提交
1565
    startPos = getNextQualifiedWindow(&pInfo->interval, &nextWin, &pSDataBlock->info, tsCols, prevEndPos, pInfo);
1566 1567 1568 1569 1570
    if (startPos < 0) {
      break;
    }

    // null data, failed to allocate more memory buffer
L
Liu Jicong 已提交
1571 1572 1573
    int32_t code = setResultOutputBufByKey_rv(pResultRowInfo, pSDataBlock->info.uid, &nextWin, masterScan, &pResult,
                                              tableGroupId, pInfo->binfo.pCtx, numOfOutput,
                                              pInfo->binfo.rowCellInfoOffset, &pInfo->aggSup, pTaskInfo);
1574
    if (code != TSDB_CODE_SUCCESS || pResult == NULL) {
H
Haojun Liao 已提交
1575
      longjmp(pTaskInfo->env, TSDB_CODE_QRY_OUT_OF_MEMORY);
1576 1577
    }

1578 1579 1580 1581 1582
    if (pInfo->execModel == OPTR_EXEC_MODEL_STREAM) {
      SResultRowPosition pos = {.pageId = pResult->pageId, .offset = pResult->offset};
      taosArrayPush(pUpdated, &pos);
    }

L
Liu Jicong 已提交
1583 1584 1585
    ekey = nextWin.ekey;  // reviseWindowEkey(pQueryAttr, &nextWin);
    forwardStep =
        getNumOfRowsInTimeWindow(&pSDataBlock->info, tsCols, startPos, ekey, binarySearchForKey, NULL, TSDB_ORDER_ASC);
1586 1587

    // window start(end) key interpolation
C
Cary Xu 已提交
1588 1589
    doWindowBorderInterpolation(pOperatorInfo, pSDataBlock, pInfo->binfo.pCtx, pResult, &nextWin, startPos, forwardStep,
                                pInfo->order, false);
1590

1591
    updateTimeWindowInfo(&pInfo->twAggSup.timeWindowData, &nextWin, true);
dengyihao's avatar
dengyihao 已提交
1592 1593
    doApplyFunctions(pInfo->binfo.pCtx, &nextWin, &pInfo->twAggSup.timeWindowData, startPos, forwardStep, tsCols,
                     pSDataBlock->info.rows, numOfOutput, TSDB_ORDER_ASC);
1594 1595
  }

H
Haojun Liao 已提交
1596
  if (pInfo->timeWindowInterpo) {
1597
    int32_t rowIndex = ascScan ? (pSDataBlock->info.rows - 1) : 0;
H
Haojun Liao 已提交
1598
    saveDataBlockLastRow(pInfo->pRow, pSDataBlock->pDataBlock, rowIndex, pSDataBlock->info.numOfCols);
1599 1600
  }

1601
  return pUpdated;
L
Liu Jicong 已提交
1602
  //  updateResultRowInfoActiveIndex(pResultRowInfo, &pInfo->win, pRuntimeEnv->current->lastKey, true, false);
1603 1604
}

1605
static void doKeepTuple(SWindowRowsSup* pRowSup, int64_t ts) {
dengyihao's avatar
dengyihao 已提交
1606 1607
  pRowSup->win.ekey = ts;
  pRowSup->prevTs = ts;
1608
  pRowSup->numOfRows += 1;
1609 1610
}

1611 1612
static void doKeepNewWindowStartInfo(SWindowRowsSup* pRowSup, const int64_t* tsList, int32_t rowIndex) {
  pRowSup->startRowIndex = rowIndex;
dengyihao's avatar
dengyihao 已提交
1613 1614
  pRowSup->numOfRows = 0;
  pRowSup->win.skey = tsList[rowIndex];
1615 1616
}

1617
// todo handle multiple tables cases.
L
Liu Jicong 已提交
1618
static void doSessionWindowAggImpl(SOperatorInfo* pOperator, SSessionAggOperatorInfo* pInfo, SSDataBlock* pBlock) {
H
Haojun Liao 已提交
1619
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
1620

1621
  // todo find the correct time stamp column slot
1622
  SColumnInfoData* pColInfoData = taosArrayGet(pBlock->pDataBlock, 0);
1623

1624 1625 1626
  bool    masterScan = true;
  int32_t numOfOutput = pOperator->numOfOutput;
  int64_t gid = pBlock->info.groupId;
1627

H
Haojun Liao 已提交
1628
  int64_t gap = pInfo->gap;
1629

1630
  if (!pInfo->reptScan) {
1631
    pInfo->reptScan = true;
1632
    pInfo->winSup.prevTs = INT64_MIN;
1633 1634
  }

1635 1636 1637
  SWindowRowsSup* pRowSup = &pInfo->winSup;
  pRowSup->numOfRows = 0;

1638
  // In case of ascending or descending order scan data, only one time window needs to be kepted for each table.
1639
  TSKEY* tsList = (TSKEY*)pColInfoData->pData;
1640
  for (int32_t j = 0; j < pBlock->info.rows; ++j) {
1641 1642 1643 1644
    if (pInfo->winSup.prevTs == INT64_MIN) {
      doKeepNewWindowStartInfo(pRowSup, tsList, j);
      doKeepTuple(pRowSup, tsList[j]);
    } else if (tsList[j] - pRowSup->prevTs <= gap && (tsList[j] - pRowSup->prevTs) >= 0) {
1645
      // The gap is less than the threshold, so it belongs to current session window that has been opened already.
1646 1647 1648
      doKeepTuple(pRowSup, tsList[j]);
      if (j == 0 && pRowSup->startRowIndex != 0) {
        pRowSup->startRowIndex = 0;
1649 1650 1651
      }
    } else {  // start a new session window
      SResultRow* pResult = NULL;
1652 1653

      // keep the time window for the closed time window.
1654
      STimeWindow window = pRowSup->win;
1655

1656
      pRowSup->win.ekey = pRowSup->win.skey;
L
Liu Jicong 已提交
1657
      int32_t ret = setResultOutputBufByKey_rv(&pInfo->binfo.resultRowInfo, pBlock->info.uid, &window, masterScan,
dengyihao's avatar
dengyihao 已提交
1658 1659
                                               &pResult, gid, pInfo->binfo.pCtx, numOfOutput,
                                               pInfo->binfo.rowCellInfoOffset, &pInfo->aggSup, pTaskInfo);
1660
      if (ret != TSDB_CODE_SUCCESS) {  // null data, too many state code
1661
        longjmp(pTaskInfo->env, TSDB_CODE_QRY_APP_ERROR);
1662 1663
      }

1664
      // pInfo->numOfRows data belong to the current session window
1665
      updateTimeWindowInfo(&pInfo->twAggSup.timeWindowData, &window, false);
dengyihao's avatar
dengyihao 已提交
1666 1667
      doApplyFunctions(pInfo->binfo.pCtx, &window, &pInfo->twAggSup.timeWindowData, pRowSup->startRowIndex,
                       pRowSup->numOfRows, NULL, pBlock->info.rows, numOfOutput, TSDB_ORDER_ASC);
1668

1669
      // here we start a new session window
1670 1671
      doKeepNewWindowStartInfo(pRowSup, tsList, j);
      doKeepTuple(pRowSup, tsList[j]);
1672 1673 1674 1675
    }
  }

  SResultRow* pResult = NULL;
1676
  pRowSup->win.ekey = tsList[pBlock->info.rows - 1];
dengyihao's avatar
dengyihao 已提交
1677 1678 1679
  int32_t ret = setResultOutputBufByKey_rv(&pInfo->binfo.resultRowInfo, pBlock->info.uid, &pRowSup->win, masterScan,
                                           &pResult, gid, pInfo->binfo.pCtx, numOfOutput,
                                           pInfo->binfo.rowCellInfoOffset, &pInfo->aggSup, pTaskInfo);
1680
  if (ret != TSDB_CODE_SUCCESS) {  // null data, too many state code
1681
    longjmp(pTaskInfo->env, TSDB_CODE_QRY_APP_ERROR);
1682 1683
  }

1684
  updateTimeWindowInfo(&pInfo->twAggSup.timeWindowData, &pRowSup->win, false);
dengyihao's avatar
dengyihao 已提交
1685 1686
  doApplyFunctions(pInfo->binfo.pCtx, &pRowSup->win, &pInfo->twAggSup.timeWindowData, pRowSup->startRowIndex,
                   pRowSup->numOfRows, NULL, pBlock->info.rows, numOfOutput, TSDB_ORDER_ASC);
1687 1688 1689 1690
}

static void setResultRowKey(SResultRow* pResultRow, char* pData, int16_t type) {
  if (IS_VAR_DATA_TYPE(type)) {
1691
    // todo disable this
dengyihao's avatar
dengyihao 已提交
1692 1693 1694 1695 1696 1697
    //    if (pResultRow->key == NULL) {
    //      pResultRow->key = taosMemoryMalloc(varDataTLen(pData));
    //      varDataCopy(pResultRow->key, pData);
    //    } else {
    //      ASSERT(memcmp(pResultRow->key, pData, varDataTLen(pData)) == 0);
    //    }
1698 1699 1700 1701 1702 1703 1704 1705 1706
  } else {
    int64_t v = -1;
    GET_TYPED_DATA(v, int64_t, type, pData);

    pResultRow->win.skey = v;
    pResultRow->win.ekey = v;
  }
}

1707
int32_t setGroupResultOutputBuf(SOptrBasicInfo* binfo, int32_t numOfCols, char* pData, int16_t type, int16_t bytes,
dengyihao's avatar
dengyihao 已提交
1708 1709
                                int32_t groupId, SDiskbasedBuf* pBuf, SExecTaskInfo* pTaskInfo,
                                SAggSupporter* pAggSup) {
L
Liu Jicong 已提交
1710 1711
  SResultRowInfo* pResultRowInfo = &binfo->resultRowInfo;
  SqlFunctionCtx* pCtx = binfo->pCtx;
1712

L
Liu Jicong 已提交
1713
  SResultRow* pResultRow = doSetResultOutBufByKey_rv(pBuf, pResultRowInfo, groupId, (char*)pData, bytes, true, groupId,
H
Haojun Liao 已提交
1714
                                                     pTaskInfo, false, pAggSup);
L
Liu Jicong 已提交
1715
  assert(pResultRow != NULL);
1716 1717

  setResultRowKey(pResultRow, pData, type);
H
Haojun Liao 已提交
1718
  setResultRowOutputBufInitCtx_rv(pResultRow, pCtx, numOfCols, binfo->rowCellInfoOffset);
1719 1720 1721
  return TSDB_CODE_SUCCESS;
}

L
Liu Jicong 已提交
1722 1723
static bool functionNeedToExecute(SqlFunctionCtx* pCtx) {
  struct SResultRowEntryInfo* pResInfo = GET_RES_INFO(pCtx);
1724 1725 1726

  // in case of timestamp column, always generated results.
  int32_t functionId = pCtx->functionId;
H
Haojun Liao 已提交
1727 1728 1729 1730
  if (functionId == -1) {
    return false;
  }

1731
  if (isRowEntryCompleted(pResInfo)) {
1732 1733 1734 1735
    return false;
  }

  if (functionId == FUNCTION_FIRST_DST || functionId == FUNCTION_FIRST) {
L
Liu Jicong 已提交
1736
    //    return QUERY_IS_ASC_QUERY(pQueryAttr);
1737 1738 1739 1740
  }

  // denote the order type
  if ((functionId == FUNCTION_LAST_DST || functionId == FUNCTION_LAST)) {
L
Liu Jicong 已提交
1741
    //    return pCtx->param[0].i == pQueryAttr->order.order;
1742 1743 1744
  }

  // in the reverse table scan, only the following functions need to be executed
L
Liu Jicong 已提交
1745 1746 1747 1748
  //  if (IS_REVERSE_SCAN(pRuntimeEnv) ||
  //      (pRuntimeEnv->scanFlag == REPEAT_SCAN && functionId != FUNCTION_STDDEV && functionId != FUNCTION_PERCT)) {
  //    return false;
  //  }
1749 1750 1751 1752

  return true;
}

dengyihao's avatar
dengyihao 已提交
1753 1754
static int32_t doCreateConstantValColumnAggInfo(SInputColumnInfoData* pInput, SFunctParam* pFuncParam, int32_t type,
                                                int32_t paramIndex, int32_t numOfRows) {
1755 1756 1757 1758 1759 1760 1761
  if (pInput->pData[paramIndex] == NULL) {
    pInput->pData[paramIndex] = taosMemoryCalloc(1, sizeof(SColumnInfoData));
    if (pInput->pData[paramIndex] == NULL) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }

    // Set the correct column info (data type and bytes)
dengyihao's avatar
dengyihao 已提交
1762 1763
    pInput->pData[paramIndex]->info.type = type;
    pInput->pData[paramIndex]->info.bytes = tDataTypes[type].bytes;
1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780
  }

  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;
    }
  } else {
    da = pInput->pColumnDataAgg[paramIndex];
  }

  ASSERT(!IS_VAR_DATA_TYPE(type));

  if (type == TSDB_DATA_TYPE_BIGINT) {
    int64_t v = pFuncParam->param.i;
dengyihao's avatar
dengyihao 已提交
1781
    *da = (SColumnDataAgg){.numOfNull = 0, .min = v, .max = v, .maxIndex = 0, .minIndex = 0, .sum = v * numOfRows};
1782 1783
  } else if (type == TSDB_DATA_TYPE_DOUBLE) {
    double v = pFuncParam->param.d;
dengyihao's avatar
dengyihao 已提交
1784
    *da = (SColumnDataAgg){.numOfNull = 0, .maxIndex = 0, .minIndex = 0};
1785

dengyihao's avatar
dengyihao 已提交
1786 1787 1788
    *(double*)&da->min = v;
    *(double*)&da->max = v;
    *(double*)&da->sum = v * numOfRows;
1789 1790 1791
  } else if (type == TSDB_DATA_TYPE_BOOL) {  // todo validate this data type
    bool v = pFuncParam->param.i;

dengyihao's avatar
dengyihao 已提交
1792 1793 1794 1795
    *da = (SColumnDataAgg){.numOfNull = 0, .maxIndex = 0, .minIndex = 0};
    *(bool*)&da->min = 0;
    *(bool*)&da->max = v;
    *(bool*)&da->sum = v * numOfRows;
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814
  } else if (type == TSDB_DATA_TYPE_TIMESTAMP) {
    // do nothing
  } else {
    ASSERT(0);
  }

  return TSDB_CODE_SUCCESS;
}

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;

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

1818 1819 1820
      if (pFuncParam->type == FUNC_PARAM_TYPE_COLUMN) {
        int32_t slotId = pFuncParam->pCol->slotId;
        pInput->pColumnDataAgg[j] = &pBlock->pBlockAgg[slotId];
1821 1822 1823 1824

        // 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);
1825 1826
      } else if (pFuncParam->type == FUNC_PARAM_TYPE_VALUE) {
        doCreateConstantValColumnAggInfo(pInput, pFuncParam, pFuncParam->param.nType, j, pBlock->info.rows);
1827 1828
      }
    }
1829
  } else {
1830
    pInput->colDataAggIsSet = false;
1831 1832 1833
  }

  // set the statistics data for primary time stamp column
1834 1835 1836 1837 1838
  //  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;
  //  }
1839 1840 1841
}

// set the output buffer for the selectivity + tag query
L
Liu Jicong 已提交
1842
static int32_t setCtxTagColumnInfo(SqlFunctionCtx* pCtx, int32_t numOfOutput) {
1843 1844 1845 1846 1847 1848 1849
  if (!isSelectivityWithTagsQuery(pCtx, numOfOutput)) {
    return TSDB_CODE_SUCCESS;
  }

  int32_t num = 0;
  int16_t tagLen = 0;

H
Haojun Liao 已提交
1850
  SqlFunctionCtx*  p = NULL;
wafwerar's avatar
wafwerar 已提交
1851
  SqlFunctionCtx** pTagCtx = taosMemoryCalloc(numOfOutput, POINTER_BYTES);
1852 1853 1854 1855 1856 1857 1858 1859
  if (pTagCtx == NULL) {
    return TSDB_CODE_QRY_OUT_OF_MEMORY;
  }

  for (int32_t i = 0; i < numOfOutput; ++i) {
    int32_t functionId = pCtx[i].functionId;

    if (functionId == FUNCTION_TAG_DUMMY || functionId == FUNCTION_TS_DUMMY) {
H
Haojun Liao 已提交
1860
      tagLen += pCtx[i].resDataInfo.bytes;
1861
      pTagCtx[num++] = &pCtx[i];
L
Liu Jicong 已提交
1862
    } else if (1 /*(aAggs[functionId].status & FUNCSTATE_SELECTIVITY) != 0*/) {
1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
      p = &pCtx[i];
    } else if (functionId == FUNCTION_TS || functionId == FUNCTION_TAG) {
      // tag function may be the group by tag column
      // ts may be the required primary timestamp column
      continue;
    } else {
      // the column may be the normal column, group by normal_column, the functionId is FUNCTION_PRJ
    }
  }
  if (p != NULL) {
1873 1874 1875
    p->subsidiaryRes.pCtx = pTagCtx;
    p->subsidiaryRes.numOfCols = num;
    p->subsidiaryRes.bufLen = tagLen;
1876
  } else {
wafwerar's avatar
wafwerar 已提交
1877
    taosMemoryFreeClear(pTagCtx);
1878 1879 1880 1881 1882
  }

  return TSDB_CODE_SUCCESS;
}

1883
SqlFunctionCtx* createSqlFunctionCtx(SExprInfo* pExprInfo, int32_t numOfOutput, int32_t** rowCellInfoOffset) {
L
Liu Jicong 已提交
1884
  SqlFunctionCtx* pFuncCtx = (SqlFunctionCtx*)taosMemoryCalloc(numOfOutput, sizeof(SqlFunctionCtx));
H
Haojun Liao 已提交
1885 1886 1887 1888
  if (pFuncCtx == NULL) {
    return NULL;
  }

wafwerar's avatar
wafwerar 已提交
1889
  *rowCellInfoOffset = taosMemoryCalloc(numOfOutput, sizeof(int32_t));
H
Haojun Liao 已提交
1890
  if (*rowCellInfoOffset == 0) {
wafwerar's avatar
wafwerar 已提交
1891
    taosMemoryFreeClear(pFuncCtx);
H
Haojun Liao 已提交
1892 1893 1894 1895
    return NULL;
  }

  for (int32_t i = 0; i < numOfOutput; ++i) {
H
Haojun Liao 已提交
1896
    SExprInfo* pExpr = &pExprInfo[i];
H
Haojun Liao 已提交
1897

L
Liu Jicong 已提交
1898
    SExprBasicInfo* pFunct = &pExpr->base;
H
Haojun Liao 已提交
1899
    SqlFunctionCtx* pCtx = &pFuncCtx[i];
H
Haojun Liao 已提交
1900

1901
    pCtx->functionId = -1;
H
Haojun Liao 已提交
1902
    if (pExpr->pExpr->nodeType == QUERY_NODE_FUNCTION) {
H
Haojun Liao 已提交
1903
      SFuncExecEnv env = {0};
H
Haojun Liao 已提交
1904 1905
      pCtx->functionId = pExpr->pExpr->_function.pFunctNode->funcId;

H
Haojun Liao 已提交
1906
      if (fmIsAggFunc(pCtx->functionId) || fmIsNonstandardSQLFunc(pCtx->functionId)) {
1907 1908 1909 1910
        fmGetFuncExecFuncs(pCtx->functionId, &pCtx->fpSet);
        pCtx->fpSet.getEnv(pExpr->pExpr->_function.pFunctNode, &env);
      } else {
        fmGetScalarFuncExecFuncs(pCtx->functionId, &pCtx->sfp);
1911 1912 1913
        if (pCtx->sfp.getEnv != NULL) {
          pCtx->sfp.getEnv(pExpr->pExpr->_function.pFunctNode, &env);
        }
1914
      }
H
Haojun Liao 已提交
1915
      pCtx->resDataInfo.interBufSize = env.calcMemSize;
1916 1917 1918 1919
    } else if (pExpr->pExpr->nodeType == QUERY_NODE_COLUMN || pExpr->pExpr->nodeType == QUERY_NODE_OPERATOR ||
               pExpr->pExpr->nodeType == QUERY_NODE_VALUE) {
      // for simple column, the intermediate buffer needs to hold one element.
      pCtx->resDataInfo.interBufSize = pFunct->resSchema.bytes;
H
Haojun Liao 已提交
1920
    }
H
Haojun Liao 已提交
1921

H
Haojun Liao 已提交
1922
    pCtx->input.numOfInputCols = pFunct->numOfParams;
wafwerar's avatar
wafwerar 已提交
1923 1924
    pCtx->input.pData = taosMemoryCalloc(pFunct->numOfParams, POINTER_BYTES);
    pCtx->input.pColumnDataAgg = taosMemoryCalloc(pFunct->numOfParams, POINTER_BYTES);
H
Haojun Liao 已提交
1925

1926
    pCtx->pTsOutput = NULL;
L
Liu Jicong 已提交
1927
    pCtx->resDataInfo.bytes = pFunct->resSchema.bytes;
1928 1929 1930 1931 1932
    pCtx->resDataInfo.type = pFunct->resSchema.type;
    pCtx->order = TSDB_ORDER_ASC;
    pCtx->start.key = INT64_MIN;
    pCtx->end.key = INT64_MIN;
    pCtx->numOfParams = pExpr->base.numOfParams;
H
Haojun Liao 已提交
1933

1934
    pCtx->param = pFunct->pParam;
dengyihao's avatar
dengyihao 已提交
1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
    //    for (int32_t j = 0; j < pCtx->numOfParams; ++j) {
    //      // set the order information for top/bottom query
    //      int32_t functionId = pCtx->functionId;
    //      if (functionId == FUNCTION_TOP || functionId == FUNCTION_BOTTOM || functionId == FUNCTION_DIFF) {
    //        int32_t f = getExprFunctionId(&pExpr[0]);
    //        assert(f == FUNCTION_TS || f == FUNCTION_TS_DUMMY);
    //
    //        //      pCtx->param[2].i = pQueryAttr->order.order;
    //        //      pCtx->param[2].nType = TSDB_DATA_TYPE_BIGINT;
    //        //      pCtx->param[3].i = functionId;
    //        //      pCtx->param[3].nType = TSDB_DATA_TYPE_BIGINT;
    //
    //        //      pCtx->param[1].i = pQueryAttr->order.col.info.colId;
    //      } else if (functionId == FUNCTION_INTERP) {
    //        //      pCtx->param[2].i = (int8_t)pQueryAttr->fillType;
    //        //      if (pQueryAttr->fillVal != NULL) {
    //        //        if (isNull((const char *)&pQueryAttr->fillVal[i], pCtx->inputType)) {
    //        //          pCtx->param[1].nType = TSDB_DATA_TYPE_NULL;
    //        //        } else {  // todo refactor, taosVariantCreateFromBinary should handle the NULL value
    //        //          if (pCtx->inputType != TSDB_DATA_TYPE_BINARY && pCtx->inputType != TSDB_DATA_TYPE_NCHAR) {
    //        //            taosVariantCreateFromBinary(&pCtx->param[1], (char *)&pQueryAttr->fillVal[i],
    //        pCtx->inputBytes, pCtx->inputType);
    //        //          }
    //        //        }
    //        //      }
    //      } else if (functionId == FUNCTION_TWA) {
    //        //      pCtx->param[1].i = pQueryAttr->window.skey;
    //        //      pCtx->param[1].nType = TSDB_DATA_TYPE_BIGINT;
    //        //      pCtx->param[2].i = pQueryAttr->window.ekey;
    //        //      pCtx->param[2].nType = TSDB_DATA_TYPE_BIGINT;
    //      } else if (functionId == FUNCTION_ARITHM) {
    //        //      pCtx->param[1].pz = (char*) getScalarFuncSupport(pRuntimeEnv->scalarSup, i);
    //      }
    //    }
H
Haojun Liao 已提交
1969 1970
  }

L
Liu Jicong 已提交
1971 1972 1973
  for (int32_t i = 1; i < numOfOutput; ++i) {
    (*rowCellInfoOffset)[i] =
        (int32_t)((*rowCellInfoOffset)[i - 1] + sizeof(SResultRowEntryInfo) + pFuncCtx[i - 1].resDataInfo.interBufSize);
H
Haojun Liao 已提交
1974
  }
H
Haojun Liao 已提交
1975 1976 1977 1978 1979

  setCtxTagColumnInfo(pFuncCtx, numOfOutput);
  return pFuncCtx;
}

1980
static void* destroySqlFunctionCtx(SqlFunctionCtx* pCtx, int32_t numOfOutput) {
1981 1982 1983 1984 1985 1986
  if (pCtx == NULL) {
    return NULL;
  }

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

    taosVariantDestroy(&pCtx[i].tag);
wafwerar's avatar
wafwerar 已提交
1991
    taosMemoryFreeClear(pCtx[i].subsidiaryRes.pCtx);
1992 1993
  }

wafwerar's avatar
wafwerar 已提交
1994
  taosMemoryFreeClear(pCtx);
1995 1996 1997
  return NULL;
}

L
Liu Jicong 已提交
1998
bool isTaskKilled(SExecTaskInfo* pTaskInfo) {
1999 2000
  // query has been executed more than tsShellActivityTimer, and the retrieve has not arrived
  // abort current query execution.
L
Liu Jicong 已提交
2001 2002
  if (pTaskInfo->owner != 0 &&
      ((taosGetTimestampSec() - pTaskInfo->cost.start / 1000) > 10 * getMaximumIdleDurationSec())
2003 2004
      /*(!needBuildResAfterQueryComplete(pTaskInfo))*/) {
    assert(pTaskInfo->cost.start != 0);
L
Liu Jicong 已提交
2005 2006 2007
    //    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;
2008 2009 2010 2011 2012
  }

  return false;
}

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

L
Liu Jicong 已提交
2015
static bool isCachedLastQuery(STaskAttr* pQueryAttr) {
2016 2017 2018 2019 2020 2021 2022 2023 2024
  for (int32_t i = 0; i < pQueryAttr->numOfOutput; ++i) {
    int32_t functionId = getExprFunctionId(&pQueryAttr->pExpr1[i]);
    if (functionId == FUNCTION_LAST || functionId == FUNCTION_LAST_DST) {
      continue;
    }

    return false;
  }

2025 2026
  int32_t order = TSDB_ORDER_ASC;
  if (order != TSDB_ORDER_DESC || !TSWINDOW_IS_EQUAL(pQueryAttr->window, TSWINDOW_DESC_INITIALIZER)) {
2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045
    return false;
  }

  if (pQueryAttr->groupbyColumn) {
    return false;
  }

  if (pQueryAttr->interval.interval > 0) {
    return false;
  }

  if (pQueryAttr->numOfFilterCols > 0 || pQueryAttr->havingNum > 0) {
    return false;
  }

  return true;
}

/////////////////////////////////////////////////////////////////////////////////////////////
L
Liu Jicong 已提交
2046
// todo refactor : return window
2047
void getAlignQueryTimeWindow(SInterval* pInterval, int32_t precision, int64_t key, STimeWindow* win) {
H
Haojun Liao 已提交
2048
  win->skey = taosTimeTruncate(key, pInterval, precision);
2049 2050

  /*
H
Haojun Liao 已提交
2051
   * if the realSkey > INT64_MAX - pInterval->interval, the query duration between
2052 2053
   * realSkey and realEkey must be less than one interval.Therefore, no need to adjust the query ranges.
   */
2054 2055
  win->ekey = taosTimeAdd(win->skey, pInterval->interval, pInterval->intervalUnit, precision) - 1;
  if (win->ekey < win->skey) {
2056 2057 2058 2059
    win->ekey = INT64_MAX;
  }
}

L
Liu Jicong 已提交
2060
static int32_t updateBlockLoadStatus(STaskAttr* pQuery, int32_t status) {
2061 2062 2063
  bool hasFirstLastFunc = false;
  bool hasOtherFunc = false;

2064
  if (status == BLK_DATA_DATA_LOAD || status == BLK_DATA_FILTEROUT) {
2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082
    return status;
  }

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

    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;
    }
  }

2083
  if (hasFirstLastFunc && status == BLK_DATA_NOT_LOAD) {
L
Liu Jicong 已提交
2084
    if (!hasOtherFunc) {
2085
      return BLK_DATA_FILTEROUT;
2086
    } else {
2087
      return BLK_DATA_DATA_LOAD;
2088 2089 2090 2091 2092 2093
    }
  }

  return status;
}

H
Haojun Liao 已提交
2094
static void doUpdateLastKey(STaskAttr* pQueryAttr) {
2095 2096 2097
  STimeWindow* win = &pQueryAttr->window;

  size_t num = taosArrayGetSize(pQueryAttr->tableGroupInfo.pGroupList);
L
Liu Jicong 已提交
2098
  for (int32_t i = 0; i < num; ++i) {
2099 2100 2101
    SArray* p1 = taosArrayGetP(pQueryAttr->tableGroupInfo.pGroupList, i);

    size_t len = taosArrayGetSize(p1);
L
Liu Jicong 已提交
2102 2103 2104 2105 2106 2107 2108
    for (int32_t j = 0; j < len; ++j) {
      //      STableKeyInfo* pInfo = taosArrayGet(p1, j);
      //
      //      // update the new lastkey if it is equalled to the value of the old skey
      //      if (pInfo->lastKey == win->ekey) {
      //        pInfo->lastKey = win->skey;
      //      }
2109 2110 2111 2112
    }
  }
}

L
Liu Jicong 已提交
2113 2114
// static void updateDataCheckOrder(SQInfo *pQInfo, SQueryTableReq* pQueryMsg, bool stableQuery) {
//   STaskAttr* pQueryAttr = pQInfo->runtimeEnv.pQueryAttr;
H
Haojun Liao 已提交
2115
//
L
Liu Jicong 已提交
2116 2117 2118 2119
//   // 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 已提交
2120
//
L
Liu Jicong 已提交
2121 2122 2123 2124 2125
//   // 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 已提交
2126
//
L
Liu Jicong 已提交
2127 2128 2129 2130
//     pQueryAttr->order.order = TSDB_ORDER_ASC;
//     if (pQueryAttr->window.skey > pQueryAttr->window.ekey) {
//       TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey, TSKEY);
//     }
H
Haojun Liao 已提交
2131
//
L
Liu Jicong 已提交
2132 2133 2134
//     pQueryAttr->needReverseScan = false;
//     return;
//   }
H
Haojun Liao 已提交
2135
//
L
Liu Jicong 已提交
2136 2137 2138 2139 2140
//   if (pQueryAttr->groupbyColumn && pQueryAttr->order.order == TSDB_ORDER_DESC) {
//     pQueryAttr->order.order = TSDB_ORDER_ASC;
//     if (pQueryAttr->window.skey > pQueryAttr->window.ekey) {
//       TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey, TSKEY);
//     }
H
Haojun Liao 已提交
2141
//
L
Liu Jicong 已提交
2142 2143 2144 2145
//     pQueryAttr->needReverseScan = false;
//     doUpdateLastKey(pQueryAttr);
//     return;
//   }
H
Haojun Liao 已提交
2146
//
L
Liu Jicong 已提交
2147 2148 2149 2150 2151 2152
//   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 已提交
2153
//
L
Liu Jicong 已提交
2154 2155 2156
//     pQueryAttr->order.order = TSDB_ORDER_ASC;
//     return;
//   }
H
Haojun Liao 已提交
2157
//
L
Liu Jicong 已提交
2158 2159 2160 2161
//   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 已提交
2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187
////               pQueryAttr->window.ekey, pQueryAttr->window.ekey, pQueryAttr->window.skey);
//
//        TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey, TSKEY);
//        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);
//
//        TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey, TSKEY);
//        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 已提交
2188 2189
////                 pQueryAttr->window.skey, pQueryAttr->window.ekey, pQueryAttr->window.ekey,
/// pQueryAttr->window.skey);
H
Haojun Liao 已提交
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199
//
//          TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey, TSKEY);
//          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 已提交
2200 2201
////                 pQueryAttr->window.skey, pQueryAttr->window.ekey, pQueryAttr->window.ekey,
/// pQueryAttr->window.skey);
H
Haojun Liao 已提交
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212
//
//          TSWAP(pQueryAttr->window.skey, pQueryAttr->window.ekey, TSKEY);
//          doUpdateLastKey(pQueryAttr);
//        }
//
//        pQueryAttr->order.order = TSDB_ORDER_DESC;
//        pQueryAttr->needReverseScan = false;
//      }
//    }
//  }
//}
2213

H
Haojun Liao 已提交
2214 2215
static void getIntermediateBufInfo(STaskRuntimeEnv* pRuntimeEnv, int32_t* ps, int32_t* rowsize) {
  STaskAttr* pQueryAttr = pRuntimeEnv->pQueryAttr;
L
Liu Jicong 已提交
2216
  int32_t    MIN_ROWS_PER_PAGE = 4;
2217

L
Liu Jicong 已提交
2218 2219
  *rowsize = (int32_t)(pQueryAttr->resultRowSize *
                       getRowNumForMultioutput(pQueryAttr, pQueryAttr->topBotQuery, pQueryAttr->stableQuery));
2220 2221 2222 2223
  int32_t overhead = sizeof(SFilePage);

  // one page contains at least two rows
  *ps = DEFAULT_INTERN_BUF_PAGE_SIZE;
L
Liu Jicong 已提交
2224
  while (((*rowsize) * MIN_ROWS_PER_PAGE) > (*ps) - overhead) {
2225 2226 2227 2228 2229 2230
    *ps = ((*ps) << 1u);
  }
}

#define IS_PREFILTER_TYPE(_t) ((_t) != TSDB_DATA_TYPE_BINARY && (_t) != TSDB_DATA_TYPE_NCHAR)

L
Liu Jicong 已提交
2231 2232 2233
// static FORCE_INLINE bool doFilterByBlockStatistics(STaskRuntimeEnv* pRuntimeEnv, SDataStatis *pDataStatis,
// SqlFunctionCtx *pCtx, int32_t numOfRows) {
//   STaskAttr* pQueryAttr = pRuntimeEnv->pQueryAttr;
2234
//
L
Liu Jicong 已提交
2235 2236 2237
//   if (pDataStatis == NULL || pQueryAttr->pFilters == NULL) {
//     return true;
//   }
2238
//
L
Liu Jicong 已提交
2239 2240
//   return filterRangeExecute(pQueryAttr->pFilters, pDataStatis, pQueryAttr->numOfCols, numOfRows);
// }
2241

H
Haojun Liao 已提交
2242
static bool overlapWithTimeWindow(STaskAttr* pQueryAttr, SDataBlockInfo* pBlockInfo) {
2243 2244
  STimeWindow w = {0};

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

2248
  if (true) {
L
Liu Jicong 已提交
2249
    //    getAlignQueryTimeWindow(pQueryAttr, pBlockInfo->window.skey, sk, ek, &w);
2250 2251 2252 2253 2254 2255
    assert(w.ekey >= pBlockInfo->window.skey);

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

L
Liu Jicong 已提交
2256 2257
    while (1) {
      //      getNextTimeWindow(pQueryAttr, &w);
2258 2259 2260 2261 2262 2263 2264 2265 2266 2267
      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 已提交
2268
    //    getAlignQueryTimeWindow(pQueryAttr, pBlockInfo->window.ekey, sk, ek, &w);
2269 2270 2271 2272 2273 2274
    assert(w.skey <= pBlockInfo->window.ekey);

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

L
Liu Jicong 已提交
2275 2276
    while (1) {
      //      getNextTimeWindow(pQueryAttr, &w);
2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340
      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;
}

void doCompactSDataBlock(SSDataBlock* pBlock, int32_t numOfRows, int8_t* p) {
  int32_t len = 0;
  int32_t start = 0;
  for (int32_t j = 0; j < numOfRows; ++j) {
    if (p[j] == 1) {
      len++;
    } else {
      if (len > 0) {
        int32_t cstart = j - len;
        for (int32_t i = 0; i < pBlock->info.numOfCols; ++i) {
          SColumnInfoData* pColumnInfoData = taosArrayGet(pBlock->pDataBlock, i);

          int16_t bytes = pColumnInfoData->info.bytes;
          memmove(((char*)pColumnInfoData->pData) + start * bytes, pColumnInfoData->pData + cstart * bytes,
                  len * bytes);
        }

        start += len;
        len = 0;
      }
    }
  }

  if (len > 0) {
    int32_t cstart = numOfRows - len;
    for (int32_t i = 0; i < pBlock->info.numOfCols; ++i) {
      SColumnInfoData* pColumnInfoData = taosArrayGet(pBlock->pDataBlock, i);

      int16_t bytes = pColumnInfoData->info.bytes;
      memmove(pColumnInfoData->pData + start * bytes, pColumnInfoData->pData + cstart * bytes, len * bytes);
    }

    start += len;
    len = 0;
  }

  pBlock->info.rows = start;
  pBlock->pBlockAgg = NULL;  // clean the block statistics info

  if (start > 0) {
    SColumnInfoData* pColumnInfoData = taosArrayGet(pBlock->pDataBlock, 0);
    if (pColumnInfoData->info.type == TSDB_DATA_TYPE_TIMESTAMP &&
        pColumnInfoData->info.colId == PRIMARYKEY_TIMESTAMP_COL_ID) {
      pBlock->info.window.skey = *(int64_t*)pColumnInfoData->pData;
      pBlock->info.window.ekey = *(int64_t*)(pColumnInfoData->pData + TSDB_KEYSIZE * (start - 1));
    }
  }
}

static SColumnInfo* doGetTagColumnInfoById(SColumnInfo* pTagColList, int32_t numOfTags, int16_t colId);
L
Liu Jicong 已提交
2341
static void         doSetTagValueInParam(void* pTable, int32_t tagColId, SVariant* tag, int16_t type, int16_t bytes);
2342 2343

static uint32_t doFilterByBlockTimeWindow(STableScanInfo* pTableScanInfo, SSDataBlock* pBlock) {
H
Haojun Liao 已提交
2344
  SqlFunctionCtx* pCtx = pTableScanInfo->pCtx;
2345
  uint32_t        status = BLK_DATA_NOT_LOAD;
2346 2347 2348 2349

  int32_t numOfOutput = pTableScanInfo->numOfOutput;
  for (int32_t i = 0; i < numOfOutput; ++i) {
    int32_t functionId = pCtx[i].functionId;
H
Haojun Liao 已提交
2350
    int32_t colId = pTableScanInfo->pExpr[i].base.pParam[0].pCol->colId;
2351 2352 2353

    // group by + first/last should not apply the first/last block filter
    if (functionId < 0) {
2354
      status |= BLK_DATA_DATA_LOAD;
2355 2356
      return status;
    } else {
L
Liu Jicong 已提交
2357
      //      status |= aAggs[functionId].dataReqFunc(&pTableScanInfo->pCtx[i], &pBlock->info.window, colId);
2358
      //      if ((status & BLK_DATA_DATA_LOAD) == BLK_DATA_DATA_LOAD) {
L
Liu Jicong 已提交
2359 2360
      //        return status;
      //      }
2361 2362 2363 2364 2365 2366
    }
  }

  return status;
}

L
Liu Jicong 已提交
2367 2368
int32_t loadDataBlockOnDemand(SExecTaskInfo* pTaskInfo, STableScanInfo* pTableScanInfo, SSDataBlock* pBlock,
                              uint32_t* status) {
2369
  *status = BLK_DATA_NOT_LOAD;
2370

H
Haojun Liao 已提交
2371
  pBlock->pDataBlock = NULL;
L
Liu Jicong 已提交
2372
  pBlock->pBlockAgg = NULL;
H
Haojun Liao 已提交
2373

L
Liu Jicong 已提交
2374 2375
  //  int64_t groupId = pRuntimeEnv->current->groupIndex;
  //  bool    ascQuery = QUERY_IS_ASC_QUERY(pQueryAttr);
2376

H
Haojun Liao 已提交
2377
  STaskCostInfo* pCost = &pTaskInfo->cost;
2378 2379 2380

  pCost->totalBlocks += 1;
  pCost->totalRows += pBlock->info.rows;
H
Haojun Liao 已提交
2381
#if 0
2382 2383 2384
  // 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 已提交
2385
      (QUERY_IS_INTERVAL_QUERY(pQueryAttr) && overlapWithTimeWindow(pTaskInfo, &pBlock->info))) {
2386
    (*status) = BLK_DATA_DATA_LOAD;
2387 2388 2389
  }

  // check if this data block is required to load
2390
  if ((*status) != BLK_DATA_DATA_LOAD) {
2391 2392 2393 2394 2395 2396 2397
    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 已提交
2398
      bool  masterScan = IS_MAIN_SCAN(pRuntimeEnv);
2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421
      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,
                                    pTableScanInfo->rowCellInfoOffset);
      } else {
        if (setResultOutputBufByKey(pRuntimeEnv, pTableScanInfo->pResultRowInfo, pBlock->info.uid, &win, masterScan, &pResult, groupId,
                                    pTableScanInfo->pCtx, pTableScanInfo->numOfOutput,
                                    pTableScanInfo->rowCellInfoOffset) != TSDB_CODE_SUCCESS) {
          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,
                               pTableScanInfo->rowCellInfoOffset, pTableScanInfo->numOfOutput,
                               pRuntimeEnv->current->groupIndex);
    }

    if (needFilter) {
      (*status) = doFilterByBlockTimeWindow(pTableScanInfo, pBlock);
    } else {
2422
      (*status) = BLK_DATA_DATA_LOAD;
2423 2424 2425 2426
    }
  }

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

2429
  if ((*status) == BLK_DATA_NOT_LOAD || (*status) == BLK_DATA_FILTEROUT) {
2430 2431
    //qDebug("QInfo:0x%"PRIx64" data block discard, brange:%" PRId64 "-%" PRId64 ", rows:%d", pQInfo->qId, pBlockInfo->window.skey,
//           pBlockInfo->window.ekey, pBlockInfo->rows);
2432
    pCost->skipBlocks += 1;
2433
  } else if ((*status) == BLK_DATA_SMA_LOAD) {
2434 2435
    // this function never returns error?
    pCost->loadBlockStatis += 1;
2436
//    tsdbRetrieveDataBlockStatisInfo(pTableScanInfo->pTsdbReadHandle, &pBlock->pBlockAgg);
2437 2438

    if (pBlock->pBlockAgg == NULL) {  // data block statistics does not exist, load data block
2439
//      pBlock->pDataBlock = tsdbRetrieveDataBlock(pTableScanInfo->pTsdbReadHandle, NULL);
2440 2441 2442
      pCost->totalCheckedRows += pBlock->info.rows;
    }
  } else {
2443
    assert((*status) == BLK_DATA_DATA_LOAD);
2444 2445 2446

    // load the data block statistics to perform further filter
    pCost->loadBlockStatis += 1;
2447
//    tsdbRetrieveDataBlockStatisInfo(pTableScanInfo->pTsdbReadHandle, &pBlock->pBlockAgg);
2448 2449 2450 2451 2452 2453

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

H
Haojun Liao 已提交
2454
          bool  masterScan = IS_MAIN_SCAN(pRuntimeEnv);
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471
          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,
                                      pTableScanInfo->rowCellInfoOffset) != TSDB_CODE_SUCCESS) {
            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
2472
            pCost->skipBlocks += 1;
2473 2474
            //qDebug("QInfo:0x%"PRIx64" data block discard, brange:%" PRId64 "-%" PRId64 ", rows:%d", pQInfo->qId,
//                   pBlockInfo->window.skey, pBlockInfo->window.ekey, pBlockInfo->rows);
2475
            (*status) = BLK_DATA_FILTEROUT;
2476 2477 2478 2479 2480 2481 2482 2483
            return TSDB_CODE_SUCCESS;
          }
        }
      }
    }

    // current block has been discard due to filter applied
//    if (!doFilterByBlockStatistics(pRuntimeEnv, pBlock->pBlockAgg, pTableScanInfo->pCtx, pBlockInfo->rows)) {
2484
//      pCost->skipBlocks += 1;
2485 2486
//      qDebug("QInfo:0x%"PRIx64" data block discard, brange:%" PRId64 "-%" PRId64 ", rows:%d", pQInfo->qId, pBlockInfo->window.skey,
//             pBlockInfo->window.ekey, pBlockInfo->rows);
2487
//      (*status) = BLK_DATA_FILTEROUT;
2488 2489 2490 2491 2492
//      return TSDB_CODE_SUCCESS;
//    }

    pCost->totalCheckedRows += pBlockInfo->rows;
    pCost->loadBlocks += 1;
2493
//    pBlock->pDataBlock = tsdbRetrieveDataBlock(pTableScanInfo->pTsdbReadHandle, NULL);
2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505
//    if (pBlock->pDataBlock == NULL) {
//      return terrno;
//    }

//    if (pQueryAttr->pFilters != NULL) {
//      filterSetColFieldData(pQueryAttr->pFilters, pBlock->info.numOfCols, pBlock->pDataBlock);
//    }
    
//    if (pQueryAttr->pFilters != NULL || pRuntimeEnv->pTsBuf != NULL) {
//      filterColRowsInDataBlock(pRuntimeEnv, pBlock, ascQuery);
//    }
  }
H
Haojun Liao 已提交
2506
#endif
2507 2508 2509
  return TSDB_CODE_SUCCESS;
}

L
Liu Jicong 已提交
2510
int32_t binarySearchForKey(char* pValue, int num, TSKEY key, int order) {
2511 2512 2513 2514 2515 2516 2517 2518 2519
  int32_t midPos = -1;
  int32_t numOfRows;

  if (num <= 0) {
    return -1;
  }

  assert(order == TSDB_ORDER_ASC || order == TSDB_ORDER_DESC);

L
Liu Jicong 已提交
2520
  TSKEY*  keyList = (TSKEY*)pValue;
2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573
  int32_t firstPos = 0;
  int32_t lastPos = num - 1;

  if (order == TSDB_ORDER_DESC) {
    // find the first position which is smaller than the key
    while (1) {
      if (key >= keyList[lastPos]) return lastPos;
      if (key == keyList[firstPos]) return firstPos;
      if (key < keyList[firstPos]) return firstPos - 1;

      numOfRows = lastPos - firstPos + 1;
      midPos = (numOfRows >> 1) + firstPos;

      if (key < keyList[midPos]) {
        lastPos = midPos - 1;
      } else if (key > keyList[midPos]) {
        firstPos = midPos + 1;
      } else {
        break;
      }
    }

  } else {
    // find the first position which is bigger than the key
    while (1) {
      if (key <= keyList[firstPos]) return firstPos;
      if (key == keyList[lastPos]) return lastPos;

      if (key > keyList[lastPos]) {
        lastPos = lastPos + 1;
        if (lastPos >= num)
          return -1;
        else
          return lastPos;
      }

      numOfRows = lastPos - firstPos + 1;
      midPos = (numOfRows >> 1u) + firstPos;

      if (key < keyList[midPos]) {
        lastPos = midPos - 1;
      } else if (key > keyList[midPos]) {
        firstPos = midPos + 1;
      } else {
        break;
      }
    }
  }

  return midPos;
}

/*
H
Haojun Liao 已提交
2574
 * set tag value in SqlFunctionCtx
2575 2576
 * e.g.,tag information into input buffer
 */
L
Liu Jicong 已提交
2577
static void doSetTagValueInParam(void* pTable, int32_t tagColId, SVariant* tag, int16_t type, int16_t bytes) {
2578 2579 2580
  taosVariantDestroy(tag);

  char* val = NULL;
L
Liu Jicong 已提交
2581 2582 2583 2584 2585 2586
  //  if (tagColId == TSDB_TBNAME_COLUMN_INDEX) {
  //    val = tsdbGetTableName(pTable);
  //    assert(val != NULL);
  //  } else {
  //    val = tsdbGetTableTagVal(pTable, tagColId, type, bytes);
  //  }
2587 2588 2589 2590 2591 2592 2593 2594

  if (val == NULL || isNull(val, type)) {
    tag->nType = TSDB_DATA_TYPE_NULL;
    return;
  }

  if (type == TSDB_DATA_TYPE_BINARY || type == TSDB_DATA_TYPE_NCHAR) {
    int32_t maxLen = bytes - VARSTR_HEADER_SIZE;
L
Liu Jicong 已提交
2595
    int32_t len = (varDataLen(val) > maxLen) ? maxLen : varDataLen(val);
2596
    taosVariantCreateFromBinary(tag, varDataVal(val), len, type);
L
Liu Jicong 已提交
2597
    // taosVariantCreateFromBinary(tag, varDataVal(val), varDataLen(val), type);
2598 2599 2600 2601 2602 2603 2604 2605
  } else {
    taosVariantCreateFromBinary(tag, val, bytes, type);
  }
}

static SColumnInfo* doGetTagColumnInfoById(SColumnInfo* pTagColList, int32_t numOfTags, int16_t colId) {
  assert(pTagColList != NULL && numOfTags > 0);

L
Liu Jicong 已提交
2606
  for (int32_t i = 0; i < numOfTags; ++i) {
2607 2608 2609 2610 2611 2612 2613 2614
    if (pTagColList[i].colId == colId) {
      return &pTagColList[i];
    }
  }

  return NULL;
}

L
Liu Jicong 已提交
2615 2616
void setTagValue(SOperatorInfo* pOperatorInfo, void* pTable, SqlFunctionCtx* pCtx, int32_t numOfOutput) {
  SExprInfo* pExpr = pOperatorInfo->pExpr;
2617
  SExprInfo* pExprInfo = &pExpr[0];
L
Liu Jicong 已提交
2618
  int32_t    functionId = getExprFunctionId(pExprInfo);
2619
#if 0
2620 2621 2622
  if (pQueryAttr->numOfOutput == 1 && functionId == FUNCTION_TS_COMP && pQueryAttr->stableQuery) {
    assert(pExprInfo->base.numOfParams == 1);

L
Liu Jicong 已提交
2623
    //    int16_t      tagColId = (int16_t)pExprInfo->base.param[0].i;
H
Haojun Liao 已提交
2624
    int16_t      tagColId = -1;
2625 2626 2627
    SColumnInfo* pColInfo = doGetTagColumnInfoById(pQueryAttr->tagColList, pQueryAttr->numOfTags, tagColId);

    doSetTagValueInParam(pTable, tagColId, &pCtx[0].tag, pColInfo->type, pColInfo->bytes);
H
Haojun Liao 已提交
2628

2629 2630 2631 2632 2633 2634 2635 2636 2637
  } else {
    // set tag value, by which the results are aggregated.
    int32_t offset = 0;
    memset(pRuntimeEnv->tagVal, 0, pQueryAttr->tagLen);

    for (int32_t idx = 0; idx < numOfOutput; ++idx) {
      SExprInfo* pLocalExprInfo = &pExpr[idx];

      // ts_comp column required the tag value for join filter
H
Haojun Liao 已提交
2638
      if (!TSDB_COL_IS_TAG(pLocalExprInfo->base.pParam[0].pCol->flag)) {
2639 2640 2641 2642
        continue;
      }

      // todo use tag column index to optimize performance
L
Liu Jicong 已提交
2643 2644
      doSetTagValueInParam(pTable, pLocalExprInfo->base.pParam[0].pCol->colId, &pCtx[idx].tag,
                           pLocalExprInfo->base.resSchema.type, pLocalExprInfo->base.resSchema.bytes);
2645

L
Liu Jicong 已提交
2646 2647 2648
      if (IS_NUMERIC_TYPE(pLocalExprInfo->base.resSchema.type) ||
          pLocalExprInfo->base.resSchema.type == TSDB_DATA_TYPE_BOOL ||
          pLocalExprInfo->base.resSchema.type == TSDB_DATA_TYPE_TIMESTAMP) {
2649 2650 2651 2652
        memcpy(pRuntimeEnv->tagVal + offset, &pCtx[idx].tag.i, pLocalExprInfo->base.resSchema.bytes);
      } else {
        if (pCtx[idx].tag.pz != NULL) {
          memcpy(pRuntimeEnv->tagVal + offset, pCtx[idx].tag.pz, pCtx[idx].tag.nLen);
L
Liu Jicong 已提交
2653
        }
2654 2655 2656 2657 2658 2659 2660 2661 2662 2663
      }

      offset += pLocalExprInfo->base.resSchema.bytes;
    }
  }

  // set the tsBuf start position before check each data block
  if (pRuntimeEnv->pTsBuf != NULL) {
    setCtxTagForJoin(pRuntimeEnv, &pCtx[0], pExprInfo, pTable);
  }
2664
#endif
2665 2666
}

H
Haojun Liao 已提交
2667
void copyToSDataBlock(SSDataBlock* pBlock, int32_t* offset, SGroupResInfo* pGroupResInfo, SDiskbasedBuf* pResBuf) {
2668 2669 2670 2671 2672 2673 2674
  pBlock->info.rows = 0;

  int32_t code = TSDB_CODE_SUCCESS;
  while (pGroupResInfo->currentGroup < pGroupResInfo->totalGroup) {
    // all results in current group have been returned to client, try next group
    if ((pGroupResInfo->pRows == NULL) || taosArrayGetSize(pGroupResInfo->pRows) == 0) {
      assert(pGroupResInfo->index == 0);
L
Liu Jicong 已提交
2675 2676 2677
      //      if ((code = mergeIntoGroupResult(&pGroupResInfo, pRuntimeEnv, offset)) != TSDB_CODE_SUCCESS) {
      return;
      //      }
2678 2679
    }

L
Liu Jicong 已提交
2680
    //    doCopyToSDataBlock(pResBuf, pGroupResInfo, TSDB_ORDER_ASC, pBlock, );
2681 2682 2683 2684 2685 2686 2687 2688 2689 2690

    // current data are all dumped to result buffer, clear it
    if (!hasRemainDataInCurrentGroup(pGroupResInfo)) {
      cleanupGroupResInfo(pGroupResInfo);
      if (!incNextGroup(pGroupResInfo)) {
        break;
      }
    }

    // enough results in data buffer, return
L
Liu Jicong 已提交
2691 2692 2693
    //    if (pBlock->info.rows >= threshold) {
    //      break;
    //    }
2694 2695 2696
  }
}

L
Liu Jicong 已提交
2697
static void updateTableQueryInfoForReverseScan(STableQueryInfo* pTableQueryInfo) {
2698 2699 2700 2701
  if (pTableQueryInfo == NULL) {
    return;
  }

L
Liu Jicong 已提交
2702 2703
  //  TSWAP(pTableQueryInfo->win.skey, pTableQueryInfo->win.ekey, TSKEY);
  //  pTableQueryInfo->lastKey = pTableQueryInfo->win.skey;
2704

L
Liu Jicong 已提交
2705 2706
  //  SWITCH_ORDER(pTableQueryInfo->cur.order);
  //  pTableQueryInfo->cur.vgroupIndex = -1;
2707 2708

  // set the index to be the end slot of result rows array
dengyihao's avatar
dengyihao 已提交
2709 2710 2711 2712 2713 2714
  //  SResultRowInfo* pResultRowInfo = &pTableQueryInfo->resInfo;
  //  if (pResultRowInfo->size > 0) {
  //    pResultRowInfo->curPos = pResultRowInfo->size - 1;
  //  } else {
  //    pResultRowInfo->curPos = -1;
  //  }
2715 2716
}

H
Haojun Liao 已提交
2717
void initResultRow(SResultRow* pResultRow) {
2718 2719 2720 2721 2722 2723
  pResultRow->pEntryInfo = (struct SResultRowEntryInfo*)((char*)pResultRow + sizeof(SResultRow));
}

/*
 * 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 已提交
2724 2725 2726
 * +------------+-----------------result column 1------------+------------------result column 2-----------+
 * | SResultRow | SResultRowEntryInfo | intermediate buffer1 | SResultRowEntryInfo | intermediate buffer 2|
 * +------------+--------------------------------------------+--------------------------------------------+
2727 2728
 *           offset[0]                                  offset[1]                                   offset[2]
 */
2729
// TODO refactor: some function move away
H
Haojun Liao 已提交
2730
void setFunctionResultOutput(SOptrBasicInfo* pInfo, SAggSupporter* pSup, int32_t stage, SExecTaskInfo* pTaskInfo) {
L
Liu Jicong 已提交
2731 2732 2733
  SqlFunctionCtx* pCtx = pInfo->pCtx;
  SSDataBlock*    pDataBlock = pInfo->pRes;
  int32_t*        rowCellInfoOffset = pInfo->rowCellInfoOffset;
H
Haojun Liao 已提交
2734

H
Haojun Liao 已提交
2735
  SResultRowInfo* pResultRowInfo = &pInfo->resultRowInfo;
H
Haojun Liao 已提交
2736
  initResultRowInfo(pResultRowInfo, 16);
H
Haojun Liao 已提交
2737

L
Liu Jicong 已提交
2738 2739 2740 2741
  int64_t     tid = 0;
  int64_t     groupId = 0;
  SResultRow* pRow = doSetResultOutBufByKey_rv(pSup->pResultBuf, pResultRowInfo, tid, (char*)&tid, sizeof(tid), true,
                                               groupId, pTaskInfo, false, pSup);
H
Haojun Liao 已提交
2742 2743 2744 2745 2746

  for (int32_t i = 0; i < pDataBlock->info.numOfCols; ++i) {
    struct SResultRowEntryInfo* pEntry = getResultCell(pRow, i, rowCellInfoOffset);
    cleanupResultRowEntry(pEntry);

L
Liu Jicong 已提交
2747
    pCtx[i].resultInfo = pEntry;
H
Haojun Liao 已提交
2748 2749 2750
    pCtx[i].currentStage = stage;

    // set the timestamp output buffer for top/bottom/diff query
L
Liu Jicong 已提交
2751 2752
    //    int32_t fid = pCtx[i].functionId;
    //    if (fid == FUNCTION_TOP || fid == FUNCTION_BOTTOM || fid == FUNCTION_DIFF || fid == FUNCTION_DERIVATIVE) {
H
Haojun Liao 已提交
2753
    //      if (i > 0) pCtx[i].pTsOutput = pCtx[i-1].pOutput;
L
Liu Jicong 已提交
2754
    //    }
H
Haojun Liao 已提交
2755 2756 2757 2758 2759
  }

  initCtxOutputBuffer(pCtx, pDataBlock->info.numOfCols);
}

L
Liu Jicong 已提交
2760
void updateOutputBuf(SOptrBasicInfo* pBInfo, int32_t* bufCapacity, int32_t numOfInputRows) {
2761 2762
  SSDataBlock* pDataBlock = pBInfo->pRes;

L
Liu Jicong 已提交
2763
  int32_t newSize = pDataBlock->info.rows + numOfInputRows + 5;  // extra output buffer
2764
  if ((*bufCapacity) < newSize) {
L
Liu Jicong 已提交
2765 2766
    for (int32_t i = 0; i < pDataBlock->info.numOfCols; ++i) {
      SColumnInfoData* pColInfo = taosArrayGet(pDataBlock->pDataBlock, i);
2767

wafwerar's avatar
wafwerar 已提交
2768
      char* p = taosMemoryRealloc(pColInfo->pData, newSize * pColInfo->info.bytes);
2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781
      if (p != NULL) {
        pColInfo->pData = p;

        // it starts from the tail of the previously generated results.
        pBInfo->pCtx[i].pOutput = pColInfo->pData;
        (*bufCapacity) = newSize;
      } else {
        // longjmp
      }
    }
  }

  for (int32_t i = 0; i < pDataBlock->info.numOfCols; ++i) {
L
Liu Jicong 已提交
2782
    SColumnInfoData* pColInfo = taosArrayGet(pDataBlock->pDataBlock, i);
2783 2784 2785 2786 2787
    pBInfo->pCtx[i].pOutput = pColInfo->pData + pColInfo->info.bytes * pDataBlock->info.rows;

    // set the correct pointer after the memory buffer reallocated.
    int32_t functionId = pBInfo->pCtx[i].functionId;

L
Liu Jicong 已提交
2788 2789
    if (functionId == FUNCTION_TOP || functionId == FUNCTION_BOTTOM || functionId == FUNCTION_DIFF ||
        functionId == FUNCTION_DERIVATIVE) {
dengyihao's avatar
dengyihao 已提交
2790
      //      if (i > 0) pBInfo->pCtx[i].pTsOutput = pBInfo->pCtx[i - 1].pOutput;
2791 2792 2793 2794
    }
  }
}

H
Haojun Liao 已提交
2795
void copyTsColoum(SSDataBlock* pRes, SqlFunctionCtx* pCtx, int32_t numOfOutput) {
2796 2797
  bool    needCopyTs = false;
  int32_t tsNum = 0;
L
Liu Jicong 已提交
2798
  char*   src = NULL;
2799 2800 2801 2802
  for (int32_t i = 0; i < numOfOutput; i++) {
    int32_t functionId = pCtx[i].functionId;
    if (functionId == FUNCTION_DIFF || functionId == FUNCTION_DERIVATIVE) {
      needCopyTs = true;
L
Liu Jicong 已提交
2803 2804
      if (i > 0 && pCtx[i - 1].functionId == FUNCTION_TS_DUMMY) {
        SColumnInfoData* pColRes = taosArrayGet(pRes->pDataBlock, i - 1);  // find ts data
2805 2806
        src = pColRes->pData;
      }
L
Liu Jicong 已提交
2807
    } else if (functionId == FUNCTION_TS_DUMMY) {
2808 2809 2810 2811 2812 2813 2814 2815 2816 2817
      tsNum++;
    }
  }

  if (!needCopyTs) return;
  if (tsNum < 2) return;
  if (src == NULL) return;

  for (int32_t i = 0; i < numOfOutput; i++) {
    int32_t functionId = pCtx[i].functionId;
L
Liu Jicong 已提交
2818
    if (functionId == FUNCTION_TS_DUMMY) {
2819 2820 2821 2822 2823 2824
      SColumnInfoData* pColRes = taosArrayGet(pRes->pDataBlock, i);
      memcpy(pColRes->pData, src, pColRes->info.bytes * pRes->info.rows);
    }
  }
}

H
Haojun Liao 已提交
2825
void initCtxOutputBuffer(SqlFunctionCtx* pCtx, int32_t size) {
2826 2827
  for (int32_t j = 0; j < size; ++j) {
    struct SResultRowEntryInfo* pResInfo = GET_RES_INFO(&pCtx[j]);
dengyihao's avatar
dengyihao 已提交
2828 2829
    if (isRowEntryInitialized(pResInfo) || fmIsPseudoColumnFunc(pCtx[j].functionId) || pCtx[j].functionId == -1 ||
        fmIsScalarFunc(pCtx[j].functionId)) {
2830 2831 2832
      continue;
    }

H
Haojun Liao 已提交
2833
    pCtx[j].fpSet.init(&pCtx[j], pCtx[j].resultInfo);
2834 2835 2836
  }
}

L
Liu Jicong 已提交
2837
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
2838
  if (status == TASK_NOT_COMPLETED) {
H
Haojun Liao 已提交
2839
    pTaskInfo->status = status;
2840 2841
  } else {
    // QUERY_NOT_COMPLETED is not compatible with any other status, so clear its position first
2842
    CLEAR_QUERY_STATUS(pTaskInfo, TASK_NOT_COMPLETED);
H
Haojun Liao 已提交
2843
    pTaskInfo->status |= status;
2844 2845 2846
  }
}

L
Liu Jicong 已提交
2847 2848
void finalizeMultiTupleQueryResult(SqlFunctionCtx* pCtx, int32_t numOfOutput, SDiskbasedBuf* pBuf,
                                   SResultRowInfo* pResultRowInfo, int32_t* rowCellInfoOffset) {
2849 2850 2851
  for (int32_t i = 0; i < pResultRowInfo->size; ++i) {
    SResultRowPosition* pPos = &pResultRowInfo->pPosition[i];

L
Liu Jicong 已提交
2852
    SFilePage*  bufPage = getBufPage(pBuf, pPos->pageId);
2853
    SResultRow* pRow = (SResultRow*)((char*)bufPage + pPos->offset);
H
Haojun Liao 已提交
2854 2855

    // TODO ignore the close status anyway.
dengyihao's avatar
dengyihao 已提交
2856 2857 2858
    //    if (!isResultRowClosed(pRow)) {
    //      continue;
    //    }
2859

2860
    for (int32_t j = 0; j < numOfOutput; ++j) {
2861 2862
      pCtx[j].resultInfo = getResultCell(pRow, j, rowCellInfoOffset);

H
Haojun Liao 已提交
2863
      struct SResultRowEntryInfo* pResInfo = pCtx[j].resultInfo;
H
Haojun Liao 已提交
2864
      if (!isRowEntryInitialized(pResInfo)) {
2865 2866 2867
        continue;
      }

H
Haojun Liao 已提交
2868
      if (pCtx[j].fpSet.process) {  // TODO set the dummy function, to avoid the check for null ptr.
dengyihao's avatar
dengyihao 已提交
2869
                                    //        pCtx[j].fpSet.finalize(&pCtx[j]);
H
Haojun Liao 已提交
2870
      }
2871 2872 2873 2874

      if (pRow->numOfRows < pResInfo->numOfRes) {
        pRow->numOfRows = pResInfo->numOfRes;
      }
2875
    }
2876 2877 2878

    releaseBufPage(pBuf, bufPage);
  }
2879 2880
}

2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899
void finalizeUpdatedResult(SqlFunctionCtx* pCtx, int32_t numOfOutput, SDiskbasedBuf* pBuf, SArray* pUpdateList,
                           int32_t* rowCellInfoOffset) {
  size_t num = taosArrayGetSize(pUpdateList);

  for (int32_t i = 0; i < num; ++i) {
    SResultRowPosition* pPos = taosArrayGet(pUpdateList, i);

    SFilePage*  bufPage = getBufPage(pBuf, pPos->pageId);
    SResultRow* pRow = (SResultRow*)((char*)bufPage + pPos->offset);

    for (int32_t j = 0; j < numOfOutput; ++j) {
      pCtx[j].resultInfo = getResultCell(pRow, j, rowCellInfoOffset);

      struct SResultRowEntryInfo* pResInfo = pCtx[j].resultInfo;
      if (isRowEntryCompleted(pResInfo) && isRowEntryInitialized(pResInfo)) {
        continue;
      }

      if (pCtx[j].fpSet.process) {  // TODO set the dummy function.
dengyihao's avatar
dengyihao 已提交
2900
                                    //        pCtx[j].fpSet.finalize(&pCtx[j]);
2901
        pResInfo->initialized = true;
2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917
      }

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

    releaseBufPage(pBuf, bufPage);
    /*
     * set the number of output results for group by normal columns, the number of output rows usually is 1 except
     * the top and bottom query
     */
    //    buf->numOfRows = (uint16_t)getNumOfResult(pCtx, numOfOutput);
  }
}

L
Liu Jicong 已提交
2918 2919
STableQueryInfo* createTableQueryInfo(void* buf, bool groupbyColumn, STimeWindow win) {
  STableQueryInfo* pTableQueryInfo = buf;
2920 2921 2922
  pTableQueryInfo->lastKey = win.skey;

  // set more initial size of interval/groupby query
L
Liu Jicong 已提交
2923 2924
  //  if (/*QUERY_IS_INTERVAL_QUERY(pQueryAttr) || */groupbyColumn) {
  int32_t initialSize = 128;
dengyihao's avatar
dengyihao 已提交
2925 2926 2927 2928
  //  int32_t code = initResultRowInfo(&pTableQueryInfo->resInfo, initialSize);
  //  if (code != TSDB_CODE_SUCCESS) {
  //    return NULL;
  //  }
L
Liu Jicong 已提交
2929 2930
  //  } else { // in other aggregate query, do not initialize the windowResInfo
  //  }
2931 2932 2933 2934

  return pTableQueryInfo;
}

L
Liu Jicong 已提交
2935
void destroyTableQueryInfoImpl(STableQueryInfo* pTableQueryInfo) {
2936 2937 2938 2939
  if (pTableQueryInfo == NULL) {
    return;
  }

L
Liu Jicong 已提交
2940
  //  taosVariantDestroy(&pTableQueryInfo->tag);
dengyihao's avatar
dengyihao 已提交
2941
  //  cleanupResultRowInfo(&pTableQueryInfo->resInfo);
2942 2943
}

dengyihao's avatar
dengyihao 已提交
2944 2945
void setResultRowOutputBufInitCtx_rv(SResultRow* pResult, SqlFunctionCtx* pCtx, int32_t numOfOutput,
                                     int32_t* rowCellInfoOffset) {
2946 2947 2948 2949 2950 2951 2952
  for (int32_t i = 0; i < numOfOutput; ++i) {
    pCtx[i].resultInfo = getResultCell(pResult, i, rowCellInfoOffset);

    struct SResultRowEntryInfo* pResInfo = pCtx[i].resultInfo;
    if (isRowEntryCompleted(pResInfo) && isRowEntryInitialized(pResInfo)) {
      continue;
    }
2953 2954 2955 2956 2957

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

2958 2959 2960 2961 2962 2963
    if (!pResInfo->initialized) {
      if (pCtx[i].functionId != -1) {
        pCtx[i].fpSet.init(&pCtx[i], pResInfo);
      } else {
        pResInfo->initialized = true;
      }
2964 2965 2966 2967
    }
  }
}

2968 2969 2970 2971 2972 2973
void doFilter(const SNode* pFilterNode, SSDataBlock* pBlock) {
  if (pFilterNode == NULL) {
    return;
  }

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

H
Haojun Liao 已提交
2975
  // todo move to the initialization function
H
Haojun Liao 已提交
2976
  int32_t code = filterInitFromNode((SNode*)pFilterNode, &filter, 0);
2977 2978 2979 2980 2981 2982

  SFilterColumnParam param1 = {.numOfCols = pBlock->info.numOfCols, .pDataBlock = pBlock->pDataBlock};
  code = filterSetDataFromSlotId(filter, &param1);

  int8_t* rowRes = NULL;
  bool    keep = filterExecute(filter, pBlock, &rowRes, NULL, param1.numOfCols);
D
dapan1121 已提交
2983
  filterFreeInfo(filter);
2984

2985
  SSDataBlock* px = createOneDataBlock(pBlock, false);
2986 2987
  blockDataEnsureCapacity(px, pBlock->info.rows);

H
Haojun Liao 已提交
2988
  // todo extract method
2989 2990 2991 2992
  int32_t numOfRow = 0;
  for (int32_t i = 0; i < pBlock->info.numOfCols; ++i) {
    SColumnInfoData* pDst = taosArrayGet(px->pDataBlock, i);
    SColumnInfoData* pSrc = taosArrayGet(pBlock->pDataBlock, i);
D
dapan1121 已提交
2993 2994 2995 2996 2997 2998 2999 3000 3001
    if (keep) {
      colDataAssign(pDst, pSrc, pBlock->info.rows);
      numOfRow = pBlock->info.rows;
    } else if (NULL != rowRes) {
      numOfRow = 0;
      for (int32_t j = 0; j < pBlock->info.rows; ++j) {
        if (rowRes[j] == 0) {
          continue;
        }
3002

D
dapan1121 已提交
3003 3004 3005 3006 3007 3008
        if (colDataIsNull_s(pSrc, j)) {
          colDataAppendNULL(pDst, numOfRow);
        } else {
          colDataAppend(pDst, numOfRow, colDataGetData(pSrc, j), false);
        }
        numOfRow += 1;
H
Haojun Liao 已提交
3009
      }
D
dapan1121 已提交
3010 3011
    } else {
      numOfRow = 0;
3012 3013 3014 3015 3016 3017
    }

    *pSrc = *pDst;
  }

  pBlock->info.rows = numOfRow;
3018
  blockDataUpdateTsWindow(pBlock);
3019 3020
}

dengyihao's avatar
dengyihao 已提交
3021 3022
void doSetTableGroupOutputBuf(SAggOperatorInfo* pAggInfo, int32_t numOfOutput, uint64_t groupId,
                              SExecTaskInfo* pTaskInfo) {
3023 3024 3025
  // for simple group by query without interval, all the tables belong to one group result.
  int64_t uid = 0;

3026 3027
  SResultRowInfo* pResultRowInfo = &pAggInfo->binfo.resultRowInfo;
  SqlFunctionCtx* pCtx = pAggInfo->binfo.pCtx;
L
Liu Jicong 已提交
3028
  int32_t*        rowCellInfoOffset = pAggInfo->binfo.rowCellInfoOffset;
3029

3030
  SResultRow* pResultRow =
H
Haojun Liao 已提交
3031 3032
      doSetResultOutBufByKey_rv(pAggInfo->aggSup.pResultBuf, pResultRowInfo, uid, (char*)&groupId, sizeof(groupId),
                                true, groupId, pTaskInfo, false, &pAggInfo->aggSup);
L
Liu Jicong 已提交
3033
  assert(pResultRow != NULL);
3034 3035 3036 3037 3038 3039

  /*
   * 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 已提交
3040 3041
    int32_t ret =
        addNewWindowResultBuf(pResultRow, pAggInfo->aggSup.pResultBuf, groupId, pAggInfo->binfo.pRes->info.rowSize);
3042 3043 3044 3045 3046
    if (ret != TSDB_CODE_SUCCESS) {
      return;
    }
  }

H
Haojun Liao 已提交
3047
  setResultRowOutputBufInitCtx_rv(pResultRow, pCtx, numOfOutput, rowCellInfoOffset);
3048 3049
}

H
Haojun Liao 已提交
3050 3051
void setExecutionContext(int32_t numOfOutput, uint64_t groupId, SExecTaskInfo* pTaskInfo, SAggOperatorInfo* pAggInfo) {
  if (pAggInfo->groupId != INT32_MIN && pAggInfo->groupId == groupId) {
3052 3053 3054
    return;
  }

H
Haojun Liao 已提交
3055
  doSetTableGroupOutputBuf(pAggInfo, numOfOutput, groupId, pTaskInfo);
3056 3057

  // record the current active group id
H
Haojun Liao 已提交
3058
  pAggInfo->groupId = groupId;
3059 3060
}

H
Haojun Liao 已提交
3061
void setCtxTagForJoin(STaskRuntimeEnv* pRuntimeEnv, SqlFunctionCtx* pCtx, SExprInfo* pExprInfo, void* pTable) {
H
Haojun Liao 已提交
3062
  STaskAttr* pQueryAttr = pRuntimeEnv->pQueryAttr;
3063

H
Haojun Liao 已提交
3064
  SExprBasicInfo* pExpr = &pExprInfo->base;
L
Liu Jicong 已提交
3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087
  //  if (pQueryAttr->stableQuery && (pRuntimeEnv->pTsBuf != NULL) &&
  //      (pExpr->functionId == FUNCTION_TS || pExpr->functionId == FUNCTION_PRJ) &&
  //      (pExpr->colInfo.colIndex == PRIMARYKEY_TIMESTAMP_COL_ID)) {
  //    assert(pExpr->numOfParams == 1);
  //
  //    int16_t      tagColId = (int16_t)pExprInfo->base.param[0].i;
  //    SColumnInfo* pColInfo = doGetTagColumnInfoById(pQueryAttr->tagColList, pQueryAttr->numOfTags, tagColId);
  //
  //    doSetTagValueInParam(pTable, tagColId, &pCtx->tag, pColInfo->type, pColInfo->bytes);
  //
  //    int16_t tagType = pCtx[0].tag.nType;
  //    if (tagType == TSDB_DATA_TYPE_BINARY || tagType == TSDB_DATA_TYPE_NCHAR) {
  //      //qDebug("QInfo:0x%"PRIx64" set tag value for join comparison, colId:%" PRId64 ", val:%s",
  //      GET_TASKID(pRuntimeEnv),
  ////             pExprInfo->base.param[0].i, pCtx[0].tag.pz);
  //    } else {
  //      //qDebug("QInfo:0x%"PRIx64" set tag value for join comparison, colId:%" PRId64 ", val:%" PRId64,
  //      GET_TASKID(pRuntimeEnv),
  ////             pExprInfo->base.param[0].i, pCtx[0].tag.i);
  //    }
  //  }
}

3088 3089 3090
/*
 * There are two cases to handle:
 *
L
Liu Jicong 已提交
3091 3092
 * 1. Query range is not set yet (queryRangeSet = 0). we need to set the query range info, including
 * pQueryAttr->lastKey, pQueryAttr->window.skey, and pQueryAttr->eKey.
3093 3094 3095 3096
 * 2. Query range is set and query is in progress. There may be another result with the same query ranges to be
 *    merged during merge stage. In this case, we need the pTableQueryInfo->lastResRows to decide if there
 *    is a previous result generated or not.
 */
3097
void setIntervalQueryRange(STableQueryInfo* pTableQueryInfo, TSKEY key, STimeWindow* pQRange) {
dengyihao's avatar
dengyihao 已提交
3098 3099 3100 3101
  //  SResultRowInfo*  pResultRowInfo = &pTableQueryInfo->resInfo;
  //  if (pResultRowInfo->curPos != -1) {
  //    return;
  //  }
3102

dengyihao's avatar
dengyihao 已提交
3103 3104
  //  pTableQueryInfo->win.skey = key;
  //  STimeWindow win = {.skey = key, .ekey = pQRange->ekey};
3105 3106 3107 3108 3109 3110 3111

  /**
   * In handling the both ascending and descending order super table query, we need to find the first qualified
   * timestamp of this table, and then set the first qualified start timestamp.
   * In ascending query, the key is the first qualified timestamp. However, in the descending order query, additional
   * operations involve.
   */
dengyihao's avatar
dengyihao 已提交
3112 3113 3114 3115
  //  STimeWindow w = TSWINDOW_INITIALIZER;
  //
  //  TSKEY sk = TMIN(win.skey, win.ekey);
  //  TSKEY ek = TMAX(win.skey, win.ekey);
L
Liu Jicong 已提交
3116
  //  getAlignQueryTimeWindow(pQueryAttr, win.skey, sk, ek, &w);
3117

L
Liu Jicong 已提交
3118 3119 3120 3121 3122 3123 3124
  //  if (pResultRowInfo->prevSKey == TSKEY_INITIAL_VAL) {
  //    if (!QUERY_IS_ASC_QUERY(pQueryAttr)) {
  //      assert(win.ekey == pQueryAttr->window.ekey);
  //    }
  //
  //    pResultRowInfo->prevSKey = w.skey;
  //  }
3125

L
Liu Jicong 已提交
3126
  //  pTableQueryInfo->lastKey = pTableQueryInfo->win.skey;
3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137
}

/**
 * copyToOutputBuf support copy data in ascending/descending order
 * For interval query of both super table and table, copy the data in ascending order, since the output results are
 * ordered in SWindowResutl already. While handling the group by query for both table and super table,
 * all group result are completed already.
 *
 * @param pQInfo
 * @param result
 */
3138
int32_t doCopyToSDataBlock(SSDataBlock* pBlock, SExprInfo* pExprInfo, SDiskbasedBuf* pBuf, SGroupResInfo* pGroupResInfo,
dengyihao's avatar
dengyihao 已提交
3139
                           int32_t orderType, int32_t* rowCellOffset, SqlFunctionCtx* pCtx) {
3140
  int32_t numOfRows = getNumOfTotalRes(pGroupResInfo);
L
Liu Jicong 已提交
3141
  int32_t numOfResult = pBlock->info.rows;  // there are already exists result rows
3142 3143 3144 3145

  int32_t start = 0;
  int32_t step = -1;

L
Liu Jicong 已提交
3146
  // qDebug("QInfo:0x%"PRIx64" start to copy data from windowResInfo to output buf", GET_TASKID(pRuntimeEnv));
3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157
  assert(orderType == TSDB_ORDER_ASC || orderType == TSDB_ORDER_DESC);

  if (orderType == TSDB_ORDER_ASC) {
    start = pGroupResInfo->index;
    step = 1;
  } else {  // desc order copy all data
    start = numOfRows - pGroupResInfo->index - 1;
    step = -1;
  }

  for (int32_t i = start; (i < numOfRows) && (i >= 0); i += step) {
3158
    SResultRowPosition* pPos = taosArrayGet(pGroupResInfo->pRows, i);
L
Liu Jicong 已提交
3159
    SFilePage*          page = getBufPage(pBuf, pPos->pageId);
3160 3161

    SResultRow* pRow = (SResultRow*)((char*)page + pPos->offset);
3162 3163 3164 3165 3166
    if (pRow->numOfRows == 0) {
      pGroupResInfo->index += 1;
      continue;
    }

3167
    // TODO copy multiple rows?
3168
    int32_t numOfRowsToCopy = pRow->numOfRows;
3169
    if (numOfResult + numOfRowsToCopy >= pBlock->info.capacity) {
3170 3171 3172 3173 3174 3175
      break;
    }

    pGroupResInfo->index += 1;

    for (int32_t j = 0; j < pBlock->info.numOfCols; ++j) {
3176 3177
      int32_t slotId = pExprInfo[j].base.resSchema.slotId;

3178 3179 3180 3181 3182
      pCtx[j].resultInfo = getResultCell(pRow, j, rowCellOffset);
      if (pCtx[j].fpSet.process) {
        pCtx[j].fpSet.finalize(&pCtx[j], pBlock, slotId);
      } else {
        SColumnInfoData* pColInfoData = taosArrayGet(pBlock->pDataBlock, slotId);
3183

3184 3185 3186
        char* in = GET_ROWCELL_INTERBUF(pCtx[j].resultInfo);
        colDataAppend(pColInfoData, pBlock->info.rows, in, pCtx[j].resultInfo->isNullRes);
      }
3187 3188
    }

3189 3190
    releaseBufPage(pBuf, page);

3191 3192
    pBlock->info.rows += pRow->numOfRows;
    if (pBlock->info.rows >= pBlock->info.capacity) {  // output buffer is full
3193 3194 3195 3196
      break;
    }
  }

L
Liu Jicong 已提交
3197
  // qDebug("QInfo:0x%"PRIx64" copy data to query buf completed", GET_TASKID(pRuntimeEnv));
3198
  blockDataUpdateTsWindow(pBlock);
3199 3200 3201
  return 0;
}

dengyihao's avatar
dengyihao 已提交
3202 3203
void doBuildResultDatablock(SSDataBlock* pBlock, SGroupResInfo* pGroupResInfo, SExprInfo* pExprInfo,
                            SDiskbasedBuf* pBuf, int32_t* rowCellOffset, SqlFunctionCtx* pCtx) {
3204 3205
  assert(pGroupResInfo->currentGroup <= pGroupResInfo->totalGroup);

3206
  blockDataCleanup(pBlock);
3207 3208 3209 3210
  if (!hasRemainDataInCurrentGroup(pGroupResInfo)) {
    return;
  }

3211
  int32_t orderType = TSDB_ORDER_ASC;
3212
  doCopyToSDataBlock(pBlock, pExprInfo, pBuf, pGroupResInfo, orderType, rowCellOffset, pCtx);
3213

H
Haojun Liao 已提交
3214 3215
  // add condition (pBlock->info.rows >= 1) just to runtime happy
  blockDataUpdateTsWindow(pBlock);
3216 3217
}

L
Liu Jicong 已提交
3218 3219
static void updateNumOfRowsInResultRows(SqlFunctionCtx* pCtx, int32_t numOfOutput, SResultRowInfo* pResultRowInfo,
                                        int32_t* rowCellInfoOffset) {
3220
  // update the number of result for each, only update the number of rows for the corresponding window result.
L
Liu Jicong 已提交
3221 3222 3223
  //  if (QUERY_IS_INTERVAL_QUERY(pQueryAttr)) {
  //    return;
  //  }
H
Haojun Liao 已提交
3224
#if 0
3225
  for (int32_t i = 0; i < pResultRowInfo->size; ++i) {
L
Liu Jicong 已提交
3226
    SResultRow* pResult = pResultRowInfo->pResult[i];
3227 3228 3229 3230 3231 3232 3233

    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;
      }

3234 3235
      SResultRowEntryInfo* pCell = getResultCell(pResult, j, rowCellInfoOffset);
      pResult->numOfRows = (uint16_t)(TMAX(pResult->numOfRows, pCell->numOfRes));
3236 3237
    }
  }
H
Haojun Liao 已提交
3238
#endif
3239 3240
}

L
Liu Jicong 已提交
3241
static int32_t compressQueryColData(SColumnInfoData* pColRes, int32_t numOfRows, char* data, int8_t compressed) {
3242 3243
  int32_t colSize = pColRes->info.bytes * numOfRows;
  return (*(tDataTypes[pColRes->info.type].compFunc))(pColRes->pData, colSize, numOfRows, data,
L
Liu Jicong 已提交
3244
                                                      colSize + COMP_OVERFLOW_BYTES, compressed, NULL, 0);
3245 3246
}

L
Liu Jicong 已提交
3247 3248 3249 3250 3251
int32_t doFillTimeIntervalGapsInResults(struct SFillInfo* pFillInfo, SSDataBlock* pOutput, int32_t capacity, void** p) {
  //  for(int32_t i = 0; i < pFillInfo->numOfCols; ++i) {
  //    SColumnInfoData* pColInfoData = taosArrayGet(pOutput->pDataBlock, i);
  //    p[i] = pColInfoData->pData + (pColInfoData->info.bytes * pOutput->info.rows);
  //  }
3252 3253 3254 3255 3256 3257 3258

  int32_t numOfRows = (int32_t)taosFillResultDataBlock(pFillInfo, p, capacity - pOutput->info.rows);
  pOutput->info.rows += numOfRows;

  return pOutput->info.rows;
}

3259
void publishOperatorProfEvent(SOperatorInfo* pOperator, EQueryProfEventType eventType) {
3260 3261
  SQueryProfEvent event = {0};

L
Liu Jicong 已提交
3262 3263
  event.eventType = eventType;
  event.eventTime = taosGetTimestampUs();
3264
  event.operatorType = pOperator->operatorType;
dengyihao's avatar
dengyihao 已提交
3265 3266 3267
  //    if (pQInfo->summary.queryProfEvents) {
  //      taosArrayPush(pQInfo->summary.queryProfEvents, &event);
  //    }
3268 3269
}

L
Liu Jicong 已提交
3270
void publishQueryAbortEvent(SExecTaskInfo* pTaskInfo, int32_t code) {
3271 3272 3273 3274 3275
  SQueryProfEvent event;
  event.eventType = QUERY_PROF_QUERY_ABORT;
  event.eventTime = taosGetTimestampUs();
  event.abortCode = code;

3276 3277
  if (pTaskInfo->cost.queryProfEvents) {
    taosArrayPush(pTaskInfo->cost.queryProfEvents, &event);
3278 3279 3280
  }
}

L
Liu Jicong 已提交
3281
typedef struct {
3282 3283 3284 3285 3286 3287 3288
  uint8_t operatorType;
  int64_t beginTime;
  int64_t endTime;
  int64_t selfTime;
  int64_t descendantsTime;
} SOperatorStackItem;

L
Liu Jicong 已提交
3289 3290
static void doOperatorExecProfOnce(SOperatorStackItem* item, SQueryProfEvent* event, SArray* opStack,
                                   SHashObj* profResults) {
3291 3292 3293 3294 3295 3296 3297 3298
  item->endTime = event->eventTime;
  item->selfTime = (item->endTime - item->beginTime) - (item->descendantsTime);

  for (int32_t j = 0; j < taosArrayGetSize(opStack); ++j) {
    SOperatorStackItem* ancestor = taosArrayGet(opStack, j);
    ancestor->descendantsTime += item->selfTime;
  }

L
Liu Jicong 已提交
3299
  uint8_t              operatorType = item->operatorType;
3300 3301 3302 3303 3304 3305 3306 3307 3308
  SOperatorProfResult* result = taosHashGet(profResults, &operatorType, sizeof(operatorType));
  if (result != NULL) {
    result->sumRunTimes++;
    result->sumSelfTime += item->selfTime;
  } else {
    SOperatorProfResult opResult;
    opResult.operatorType = operatorType;
    opResult.sumSelfTime = item->selfTime;
    opResult.sumRunTimes = 1;
L
Liu Jicong 已提交
3309
    taosHashPut(profResults, &(operatorType), sizeof(operatorType), &opResult, sizeof(opResult));
3310 3311 3312
  }
}

3313
void calculateOperatorProfResults(void) {
dengyihao's avatar
dengyihao 已提交
3314 3315 3316 3317 3318 3319 3320 3321 3322
  //  if (pQInfo->summary.queryProfEvents == NULL) {
  //    // qDebug("QInfo:0x%"PRIx64" query prof events array is null", pQInfo->qId);
  //    return;
  //  }
  //
  //  if (pQInfo->summary.operatorProfResults == NULL) {
  //    // qDebug("QInfo:0x%"PRIx64" operator prof results hash is null", pQInfo->qId);
  //    return;
  //  }
3323 3324 3325 3326 3327

  SArray* opStack = taosArrayInit(32, sizeof(SOperatorStackItem));
  if (opStack == NULL) {
    return;
  }
3328
#if 0
L
Liu Jicong 已提交
3329
  size_t    size = taosArrayGetSize(pQInfo->summary.queryProfEvents);
3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350
  SHashObj* profResults = pQInfo->summary.operatorProfResults;

  for (int i = 0; i < size; ++i) {
    SQueryProfEvent* event = taosArrayGet(pQInfo->summary.queryProfEvents, i);
    if (event->eventType == QUERY_PROF_BEFORE_OPERATOR_EXEC) {
      SOperatorStackItem opItem;
      opItem.operatorType = event->operatorType;
      opItem.beginTime = event->eventTime;
      opItem.descendantsTime = 0;
      taosArrayPush(opStack, &opItem);
    } else if (event->eventType == QUERY_PROF_AFTER_OPERATOR_EXEC) {
      SOperatorStackItem* item = taosArrayPop(opStack);
      assert(item->operatorType == event->operatorType);
      doOperatorExecProfOnce(item, event, opStack, profResults);
    } else if (event->eventType == QUERY_PROF_QUERY_ABORT) {
      SOperatorStackItem* item;
      while ((item = taosArrayPop(opStack)) != NULL) {
        doOperatorExecProfOnce(item, event, opStack, profResults);
      }
    }
  }
3351
#endif
3352 3353 3354
  taosArrayDestroy(opStack);
}

L
Liu Jicong 已提交
3355 3356
void queryCostStatis(SExecTaskInfo* pTaskInfo) {
  STaskCostInfo* pSummary = &pTaskInfo->cost;
3357

L
Liu Jicong 已提交
3358 3359 3360
  //  uint64_t hashSize = taosHashGetMemSize(pQInfo->runtimeEnv.pResultRowHashTable);
  //  hashSize += taosHashGetMemSize(pRuntimeEnv->tableqinfoGroupInfo.map);
  //  pSummary->hashSize = hashSize;
3361 3362 3363 3364

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

L
Liu Jicong 已提交
3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384
  //  SResultRowPool* p = pTaskInfo->pool;
  //  if (p != NULL) {
  //    pSummary->winInfoSize = getResultRowPoolMemSize(p);
  //    pSummary->numOfTimeWindows = getNumOfAllocatedResultRows(p);
  //  } else {
  //    pSummary->winInfoSize = 0;
  //    pSummary->numOfTimeWindows = 0;
  //  }
  //
  //  calculateOperatorProfResults(pQInfo);

  qDebug("%s :cost summary: elapsed time:%" PRId64 " us, first merge:%" PRId64
         " us, total blocks:%d, "
         "load block statis:%d, load data block:%d, total rows:%" PRId64 ", check rows:%" PRId64,
         GET_TASKID(pTaskInfo), pSummary->elapsedTime, pSummary->firstStageMergeTime, pSummary->totalBlocks,
         pSummary->loadBlockStatis, pSummary->loadBlocks, pSummary->totalRows, pSummary->totalCheckedRows);
  //
  // 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);
3385 3386 3387 3388

  if (pSummary->operatorProfResults) {
    SOperatorProfResult* opRes = taosHashIterate(pSummary->operatorProfResults, NULL);
    while (opRes != NULL) {
L
Liu Jicong 已提交
3389 3390
      // qDebug("QInfo:0x%" PRIx64 " :cost summary: operator : %d, exec times: %" PRId64 ", self time: %" PRId64,
      //             pQInfo->qId, opRes->operatorType, opRes->sumRunTimes, opRes->sumSelfTime);
3391 3392 3393 3394 3395
      opRes = taosHashIterate(pSummary->operatorProfResults, opRes);
    }
  }
}

L
Liu Jicong 已提交
3396 3397 3398
// static void updateOffsetVal(STaskRuntimeEnv *pRuntimeEnv, SDataBlockInfo *pBlockInfo) {
//   STaskAttr *pQueryAttr = pRuntimeEnv->pQueryAttr;
//   STableQueryInfo* pTableQueryInfo = pRuntimeEnv->current;
3399
//
L
Liu Jicong 已提交
3400
//   int32_t step = GET_FORWARD_DIRECTION_FACTOR(pQueryAttr->order.order);
3401
//
L
Liu Jicong 已提交
3402 3403 3404 3405
//   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;
//   }
3406
//
L
Liu Jicong 已提交
3407 3408 3409 3410 3411
//   if (QUERY_IS_ASC_QUERY(pQueryAttr)) {
//     pQueryAttr->pos = (int32_t)pQueryAttr->limit.offset;
//   } else {
//     pQueryAttr->pos = pBlockInfo->rows - (int32_t)pQueryAttr->limit.offset - 1;
//   }
3412
//
L
Liu Jicong 已提交
3413
//   assert(pQueryAttr->pos >= 0 && pQueryAttr->pos <= pBlockInfo->rows - 1);
3414
//
L
Liu Jicong 已提交
3415 3416
//   SArray *         pDataBlock = tsdbRetrieveDataBlock(pRuntimeEnv->pTsdbReadHandle, NULL);
//   SColumnInfoData *pColInfoData = taosArrayGet(pDataBlock, 0);
3417
//
L
Liu Jicong 已提交
3418 3419
//   // update the pQueryAttr->limit.offset value, and pQueryAttr->pos value
//   TSKEY *keys = (TSKEY *) pColInfoData->pData;
3420
//
L
Liu Jicong 已提交
3421 3422 3423
//   // update the offset value
//   pTableQueryInfo->lastKey = keys[pQueryAttr->pos];
//   pQueryAttr->limit.offset = 0;
3424
//
L
Liu Jicong 已提交
3425
//   int32_t numOfRes = tableApplyFunctionsOnBlock(pRuntimeEnv, pBlockInfo, NULL, binarySearchForKey, pDataBlock);
3426
//
L
Liu Jicong 已提交
3427 3428 3429 3430
//   //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);
// }
3431

L
Liu Jicong 已提交
3432 3433
// void skipBlocks(STaskRuntimeEnv *pRuntimeEnv) {
//   STaskAttr *pQueryAttr = pRuntimeEnv->pQueryAttr;
3434
//
L
Liu Jicong 已提交
3435 3436 3437
//   if (pQueryAttr->limit.offset <= 0 || pQueryAttr->numOfFilterCols > 0) {
//     return;
//   }
3438
//
L
Liu Jicong 已提交
3439 3440
//   pQueryAttr->pos = 0;
//   int32_t step = GET_FORWARD_DIRECTION_FACTOR(pQueryAttr->order.order);
3441
//
L
Liu Jicong 已提交
3442 3443
//   STableQueryInfo* pTableQueryInfo = pRuntimeEnv->current;
//   TsdbQueryHandleT pTsdbReadHandle = pRuntimeEnv->pTsdbReadHandle;
3444
//
L
Liu Jicong 已提交
3445 3446 3447 3448 3449
//   SDataBlockInfo blockInfo = SDATA_BLOCK_INITIALIZER;
//   while (tsdbNextDataBlock(pTsdbReadHandle)) {
//     if (isTaskKilled(pRuntimeEnv->qinfo)) {
//       longjmp(pRuntimeEnv->env, TSDB_CODE_TSC_QUERY_CANCELLED);
//     }
3450
//
L
Liu Jicong 已提交
3451
//     tsdbRetrieveDataBlockInfo(pTsdbReadHandle, &blockInfo);
3452
//
L
Liu Jicong 已提交
3453 3454 3455 3456
//     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;
3457
//
L
Liu Jicong 已提交
3458 3459 3460 3461 3462 3463 3464
//       //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;
//     }
//   }
3465
//
L
Liu Jicong 已提交
3466 3467 3468 3469 3470 3471 3472 3473 3474
//   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;
3475
//
L
Liu Jicong 已提交
3476 3477 3478
//   assert(pQueryAttr->limit.offset == 0);
//   STimeWindow tw = *win;
//   getNextTimeWindow(pQueryAttr, &tw);
3479
//
L
Liu Jicong 已提交
3480 3481
//   if ((tw.skey <= pBlockInfo->window.ekey && QUERY_IS_ASC_QUERY(pQueryAttr)) ||
//       (tw.ekey >= pBlockInfo->window.skey && !QUERY_IS_ASC_QUERY(pQueryAttr))) {
3482
//
L
Liu Jicong 已提交
3483 3484 3485 3486
//     // 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);
3487
//
L
Liu Jicong 已提交
3488 3489 3490 3491
//     tw = *win;
//     int32_t startPos =
//         getNextQualifiedWindow(pQueryAttr, &tw, pBlockInfo, pColInfoData->pData, binarySearchForKey, -1);
//     assert(startPos >= 0);
3492
//
L
Liu Jicong 已提交
3493 3494
//     // set the abort info
//     pQueryAttr->pos = startPos;
3495
//
L
Liu Jicong 已提交
3496 3497 3498 3499
//     // reset the query start timestamp
//     pTableQueryInfo->win.skey = ((TSKEY *)pColInfoData->pData)[startPos];
//     pQueryAttr->window.skey = pTableQueryInfo->win.skey;
//     TSKEY key = pTableQueryInfo->win.skey;
3500
//
L
Liu Jicong 已提交
3501 3502
//     pWindowResInfo->prevSKey = tw.skey;
//     int32_t index = pRuntimeEnv->resultRowInfo.curIndex;
3503
//
L
Liu Jicong 已提交
3504 3505
//     int32_t numOfRes = tableApplyFunctionsOnBlock(pRuntimeEnv, pBlockInfo, NULL, binarySearchForKey, pDataBlock);
//     pRuntimeEnv->resultRowInfo.curIndex = index;  // restore the window index
3506
//
L
Liu Jicong 已提交
3507 3508 3509 3510
//     //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);
3511
//
L
Liu Jicong 已提交
3512 3513 3514 3515 3516
//     return key;
//   } else {  // do nothing
//     pQueryAttr->window.skey      = tw.skey;
//     pWindowResInfo->prevSKey = tw.skey;
//     pTableQueryInfo->lastKey = tw.skey;
3517
//
L
Liu Jicong 已提交
3518 3519
//     return tw.skey;
//   }
3520
//
L
Liu Jicong 已提交
3521 3522 3523 3524 3525 3526 3527 3528 3529 3530
//   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);
//   }
3531
//
L
Liu Jicong 已提交
3532 3533 3534 3535 3536
//   // 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;
//   }
3537
//
L
Liu Jicong 已提交
3538 3539 3540 3541 3542 3543 3544
//   /*
//    * 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);
3545
//
L
Liu Jicong 已提交
3546 3547
//   STimeWindow w = TSWINDOW_INITIALIZER;
//   bool ascQuery = QUERY_IS_ASC_QUERY(pQueryAttr);
3548
//
L
Liu Jicong 已提交
3549 3550
//   SResultRowInfo *pWindowResInfo = &pRuntimeEnv->resultRowInfo;
//   STableQueryInfo *pTableQueryInfo = pRuntimeEnv->current;
3551
//
L
Liu Jicong 已提交
3552 3553 3554
//   SDataBlockInfo blockInfo = SDATA_BLOCK_INITIALIZER;
//   while (tsdbNextDataBlock(pRuntimeEnv->pTsdbReadHandle)) {
//     tsdbRetrieveDataBlockInfo(pRuntimeEnv->pTsdbReadHandle, &blockInfo);
3555
//
L
Liu Jicong 已提交
3556 3557 3558 3559 3560 3561 3562 3563 3564
//     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;
//     }
3565
//
L
Liu Jicong 已提交
3566 3567
//     // the first time window
//     STimeWindow win = getActiveTimeWindow(pWindowResInfo, pWindowResInfo->prevSKey, pQueryAttr);
3568
//
L
Liu Jicong 已提交
3569 3570
//     while (pQueryAttr->limit.offset > 0) {
//       STimeWindow tw = win;
3571
//
L
Liu Jicong 已提交
3572 3573 3574
//       if ((win.ekey <= blockInfo.window.ekey && ascQuery) || (win.ekey >= blockInfo.window.skey && !ascQuery)) {
//         pQueryAttr->limit.offset -= 1;
//         pWindowResInfo->prevSKey = win.skey;
3575
//
L
Liu Jicong 已提交
3576 3577 3578 3579 3580 3581
//         // 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;
//         }
//       }
3582
//
L
Liu Jicong 已提交
3583 3584 3585 3586
//       if (pQueryAttr->limit.offset == 0) {
//         *start = doSkipIntervalProcess(pRuntimeEnv, &win, &blockInfo, pTableQueryInfo);
//         return true;
//       }
3587
//
L
Liu Jicong 已提交
3588 3589
//       // current window does not ended in current data block, try next data block
//       getNextTimeWindow(pQueryAttr, &tw);
3590
//
L
Liu Jicong 已提交
3591 3592 3593 3594 3595 3596 3597 3598 3599
//       /*
//        * 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)) {
3600
//
L
Liu Jicong 已提交
3601 3602
//         SArray *pDataBlock = tsdbRetrieveDataBlock(pRuntimeEnv->pTsdbReadHandle, NULL);
//         SColumnInfoData *pColInfoData = taosArrayGet(pDataBlock, 0);
3603
//
L
Liu Jicong 已提交
3604 3605 3606
//         if ((win.ekey > blockInfo.window.ekey && ascQuery) || (win.ekey < blockInfo.window.skey && !ascQuery)) {
//           pQueryAttr->limit.offset -= 1;
//         }
3607
//
L
Liu Jicong 已提交
3608 3609 3610 3611 3612 3613 3614 3615
//         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);
3616
//
L
Liu Jicong 已提交
3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627
//           // 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.
//       }
//     }
//   }
3628
//
L
Liu Jicong 已提交
3629 3630 3631 3632
//   // check for error
//   if (terrno != TSDB_CODE_SUCCESS) {
//     longjmp(pRuntimeEnv->env, terrno);
//   }
3633
//
L
Liu Jicong 已提交
3634 3635
//   return true;
// }
3636

3637
int32_t appendDownstream(SOperatorInfo* p, SOperatorInfo** pDownstream, int32_t num) {
H
Haojun Liao 已提交
3638
  if (p->pDownstream == NULL) {
H
Haojun Liao 已提交
3639
    assert(p->numOfDownstream == 0);
3640 3641
  }

wafwerar's avatar
wafwerar 已提交
3642
  p->pDownstream = taosMemoryCalloc(1, num * POINTER_BYTES);
3643 3644 3645 3646 3647 3648 3649
  if (p->pDownstream == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  memcpy(p->pDownstream, pDownstream, num * POINTER_BYTES);
  p->numOfDownstream = num;
  return TSDB_CODE_SUCCESS;
3650 3651 3652 3653
}

static void doDestroyTableQueryInfo(STableGroupInfo* pTableqinfoGroupInfo);

3654
static void doTableQueryInfoTimeWindowCheck(SExecTaskInfo* pTaskInfo, STableQueryInfo* pTableQueryInfo, int32_t order) {
H
Haojun Liao 已提交
3655 3656
#if 0
    if (order == TSDB_ORDER_ASC) {
3657 3658
    assert(
        (pTableQueryInfo->win.skey <= pTableQueryInfo->win.ekey) &&
H
Haojun Liao 已提交
3659 3660
        (pTableQueryInfo->lastKey >= pTaskInfo->window.skey) &&
        (pTableQueryInfo->win.skey >= pTaskInfo->window.skey && pTableQueryInfo->win.ekey <= pTaskInfo->window.ekey));
3661 3662 3663
  } else {
    assert(
        (pTableQueryInfo->win.skey >= pTableQueryInfo->win.ekey) &&
H
Haojun Liao 已提交
3664 3665
        (pTableQueryInfo->lastKey <= pTaskInfo->window.skey) &&
        (pTableQueryInfo->win.skey <= pTaskInfo->window.skey && pTableQueryInfo->win.ekey >= pTaskInfo->window.ekey));
3666
  }
H
Haojun Liao 已提交
3667
#endif
3668 3669
}

L
Liu Jicong 已提交
3670 3671 3672 3673 3674 3675 3676 3677
// STsdbQueryCond createTsdbQueryCond(STaskAttr* pQueryAttr, STimeWindow* win) {
//   STsdbQueryCond cond = {
//       .colList   = pQueryAttr->tableCols,
//       .order     = pQueryAttr->order.order,
//       .numOfCols = pQueryAttr->numOfCols,
//       .type      = BLOCK_LOAD_OFFSET_SEQ_ORDER,
//       .loadExternalRows = false,
//   };
3678
//
L
Liu Jicong 已提交
3679 3680 3681
//   TIME_WINDOW_COPY(cond.twindow, *win);
//   return cond;
// }
3682 3683 3684

static STableIdInfo createTableIdInfo(STableQueryInfo* pTableQueryInfo) {
  STableIdInfo tidInfo;
L
Liu Jicong 已提交
3685 3686 3687 3688 3689
  //  STableId* id = TSDB_TABLEID(pTableQueryInfo->pTable);
  //
  //  tidInfo.uid = id->uid;
  //  tidInfo.tid = id->tid;
  //  tidInfo.key = pTableQueryInfo->lastKey;
3690 3691 3692 3693

  return tidInfo;
}

L
Liu Jicong 已提交
3694 3695 3696 3697
// static void updateTableIdInfo(STableQueryInfo* pTableQueryInfo, SSDataBlock* pBlock, SHashObj* pTableIdInfo, int32_t
// order) {
//   int32_t step = GET_FORWARD_DIRECTION_FACTOR(order);
//   pTableQueryInfo->lastKey = ((order == TSDB_ORDER_ASC)? pBlock->info.window.ekey:pBlock->info.window.skey) + step;
3698
//
L
Liu Jicong 已提交
3699 3700 3701
//   if (pTableQueryInfo->pTable == NULL) {
//     return;
//   }
3702
//
L
Liu Jicong 已提交
3703 3704 3705 3706 3707 3708 3709 3710 3711
//   STableIdInfo tidInfo = createTableIdInfo(pTableQueryInfo);
//   STableIdInfo *idinfo = taosHashGet(pTableIdInfo, &tidInfo.tid, sizeof(tidInfo.tid));
//   if (idinfo != NULL) {
//     assert(idinfo->tid == tidInfo.tid && idinfo->uid == tidInfo.uid);
//     idinfo->key = tidInfo.key;
//   } else {
//     taosHashPut(pTableIdInfo, &tidInfo.tid, sizeof(tidInfo.tid), &tidInfo, sizeof(STableIdInfo));
//   }
// }
3712

3713
int32_t loadRemoteDataCallback(void* param, const SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
3714
  SSourceDataInfo* pSourceDataInfo = (SSourceDataInfo*)param;
H
Haojun Liao 已提交
3715 3716
  if (code == TSDB_CODE_SUCCESS) {
    pSourceDataInfo->pRsp = pMsg->pData;
3717

H
Haojun Liao 已提交
3718 3719
    SRetrieveTableRsp* pRsp = pSourceDataInfo->pRsp;
    pRsp->numOfRows = htonl(pRsp->numOfRows);
dengyihao's avatar
dengyihao 已提交
3720 3721
    pRsp->compLen = htonl(pRsp->compLen);
    pRsp->useconds = htobe64(pRsp->useconds);
H
Haojun Liao 已提交
3722 3723 3724
  } else {
    pSourceDataInfo->code = code;
  }
H
Haojun Liao 已提交
3725

H
Haojun Liao 已提交
3726
  pSourceDataInfo->status = EX_SOURCE_DATA_READY;
3727
  tsem_post(&pSourceDataInfo->pEx->ready);
wmmhello's avatar
wmmhello 已提交
3728
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
3729 3730 3731 3732
}

static void destroySendMsgInfo(SMsgSendInfo* pMsgBody) {
  assert(pMsgBody != NULL);
wafwerar's avatar
wafwerar 已提交
3733 3734
  taosMemoryFreeClear(pMsgBody->msgInfo.pData);
  taosMemoryFreeClear(pMsgBody);
H
Haojun Liao 已提交
3735 3736
}

S
Shengliang Guan 已提交
3737
void qProcessFetchRsp(void* parent, SRpcMsg* pMsg, SEpSet* pEpSet) {
L
Liu Jicong 已提交
3738
  SMsgSendInfo* pSendInfo = (SMsgSendInfo*)pMsg->ahandle;
H
Haojun Liao 已提交
3739 3740 3741 3742 3743
  assert(pMsg->ahandle != NULL);

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

  if (pMsg->contLen > 0) {
wafwerar's avatar
wafwerar 已提交
3744
    buf.pData = taosMemoryCalloc(1, pMsg->contLen);
H
Haojun Liao 已提交
3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755
    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);
3756 3757
}

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

wafwerar's avatar
wafwerar 已提交
3761
  SResFetchReq* pMsg = taosMemoryCalloc(1, sizeof(SResFetchReq));
3762 3763 3764 3765
  if (NULL == pMsg) {
    pTaskInfo->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
    return pTaskInfo->code;
  }
3766

L
Liu Jicong 已提交
3767 3768
  SDownstreamSourceNode* pSource = taosArrayGet(pExchangeInfo->pSources, sourceIndex);
  SSourceDataInfo*       pDataInfo = taosArrayGet(pExchangeInfo->pSourceDataInfo, sourceIndex);
3769

L
Liu Jicong 已提交
3770 3771
  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);
3772 3773 3774 3775 3776 3777 3778

  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 已提交
3779
  SMsgSendInfo* pMsgSendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
3780
  if (NULL == pMsgSendInfo) {
wafwerar's avatar
wafwerar 已提交
3781
    taosMemoryFreeClear(pMsg);
3782 3783 3784
    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 已提交
3785 3786
  }

3787 3788 3789 3790 3791
  pMsgSendInfo->param = pDataInfo;
  pMsgSendInfo->msgInfo.pData = pMsg;
  pMsgSendInfo->msgInfo.len = sizeof(SResFetchReq);
  pMsgSendInfo->msgType = TDMT_VND_FETCH;
  pMsgSendInfo->fp = loadRemoteDataCallback;
3792

3793
  int64_t transporterId = 0;
L
Liu Jicong 已提交
3794
  int32_t code = asyncSendMsgToServer(pExchangeInfo->pTransporter, &pSource->addr.epSet, &transporterId, pMsgSendInfo);
3795 3796 3797
  return TSDB_CODE_SUCCESS;
}

3798 3799
// TODO if only one or two columns required, how to extract data?
int32_t setSDataBlockFromFetchRsp(SSDataBlock* pRes, SLoadRemoteDataInfo* pLoadInfo, int32_t numOfRows, char* pData,
dengyihao's avatar
dengyihao 已提交
3800 3801
                                  int32_t compLen, int32_t numOfOutput, int64_t startTs, uint64_t* total,
                                  SArray* pColList) {
H
Haojun Liao 已提交
3802
  blockDataEnsureCapacity(pRes, numOfRows);
3803

H
Haojun Liao 已提交
3804 3805
  if (pColList == NULL) {  // data from other sources
    int32_t* colLen = (int32_t*)pData;
L
Liu Jicong 已提交
3806
    char*    pStart = pData + sizeof(int32_t) * numOfOutput;
H
Haojun Liao 已提交
3807

3808
    for (int32_t i = 0; i < numOfOutput; ++i) {
H
Haojun Liao 已提交
3809 3810 3811
      colLen[i] = htonl(colLen[i]);
      ASSERT(colLen[i] > 0);

3812
      SColumnInfoData* pColInfoData = taosArrayGet(pRes->pDataBlock, i);
H
Haojun Liao 已提交
3813 3814 3815
      if (IS_VAR_DATA_TYPE(pColInfoData->info.type)) {
        pColInfoData->varmeta.length = colLen[i];
        pColInfoData->varmeta.allocLen = colLen[i];
3816

L
Liu Jicong 已提交
3817 3818
        memcpy(pColInfoData->varmeta.offset, pStart, sizeof(int32_t) * numOfRows);
        pStart += sizeof(int32_t) * numOfRows;
H
Haojun Liao 已提交
3819

wafwerar's avatar
wafwerar 已提交
3820
        pColInfoData->pData = taosMemoryMalloc(colLen[i]);
H
Haojun Liao 已提交
3821 3822 3823
      } else {
        memcpy(pColInfoData->nullbitmap, pStart, BitmapLen(numOfRows));
        pStart += BitmapLen(numOfRows);
3824
      }
H
Haojun Liao 已提交
3825 3826 3827

      memcpy(pColInfoData->pData, pStart, colLen[i]);
      pStart += colLen[i];
3828
    }
H
Haojun Liao 已提交
3829
  } else {  // extract data according to pColList
3830
    ASSERT(numOfOutput == taosArrayGetSize(pColList));
3831 3832 3833 3834 3835 3836
    char* pStart = pData;

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

    SSysTableSchema* pSchema = (SSysTableSchema*)pStart;
dengyihao's avatar
dengyihao 已提交
3837
    for (int32_t i = 0; i < numOfCols; ++i) {
3838 3839 3840 3841 3842 3843 3844 3845
      SSysTableSchema* p = (SSysTableSchema*)pStart;

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

    SSDataBlock block = {.pDataBlock = taosArrayInit(numOfCols, sizeof(SColumnInfoData)), .info.numOfCols = numOfCols};
dengyihao's avatar
dengyihao 已提交
3846
    for (int32_t i = 0; i < numOfCols; ++i) {
3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859
      SColumnInfoData idata = {0};
      idata.info.type = pSchema[i].type;
      idata.info.bytes = pSchema[i].bytes;
      idata.info.colId = pSchema[i].colId;

      taosArrayPush(block.pDataBlock, &idata);
      if (IS_VAR_DATA_TYPE(idata.info.type)) {
        block.info.hasVarCol = true;
      }
    }

    blockDataEnsureCapacity(&block, numOfRows);

dengyihao's avatar
dengyihao 已提交
3860
    int32_t* colLen = (int32_t*)pStart;
3861 3862 3863 3864
    pStart += sizeof(int32_t) * numOfCols;

    for (int32_t i = 0; i < numOfCols; ++i) {
      colLen[i] = htonl(colLen[i]);
3865
      ASSERT(colLen[i] >= 0);
3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883

      SColumnInfoData* pColInfoData = taosArrayGet(block.pDataBlock, i);
      if (IS_VAR_DATA_TYPE(pColInfoData->info.type)) {
        pColInfoData->varmeta.length = colLen[i];
        pColInfoData->varmeta.allocLen = colLen[i];

        memcpy(pColInfoData->varmeta.offset, pStart, sizeof(int32_t) * numOfRows);
        pStart += sizeof(int32_t) * numOfRows;

        pColInfoData->pData = taosMemoryMalloc(colLen[i]);
      } else {
        memcpy(pColInfoData->nullbitmap, pStart, BitmapLen(numOfRows));
        pStart += BitmapLen(numOfRows);
      }

      memcpy(pColInfoData->pData, pStart, colLen[i]);
      pStart += colLen[i];
    }
H
Haojun Liao 已提交
3884 3885

    // data from mnode
3886 3887 3888
    for (int32_t i = 0; i < numOfCols; ++i) {
      SColumnInfoData* pSrc = taosArrayGet(block.pDataBlock, i);

L
Liu Jicong 已提交
3889 3890
      for (int32_t j = 0; j < numOfOutput; ++j) {
        int16_t colIndex = *(int16_t*)taosArrayGet(pColList, j);
3891

3892 3893
        if (colIndex - 1 == i) {
          SColumnInfoData* pColInfoData = taosArrayGet(pRes->pDataBlock, j);
3894
          colDataAssign(pColInfoData, pSrc, numOfRows);
3895 3896 3897
          break;
        }
      }
3898
    }
3899
  }
3900

H
Haojun Liao 已提交
3901
  pRes->info.rows = numOfRows;
3902

3903
  int64_t el = taosGetTimestampUs() - startTs;
3904

H
Haojun Liao 已提交
3905 3906
  pLoadInfo->totalRows += numOfRows;
  pLoadInfo->totalSize += compLen;
3907

H
Haojun Liao 已提交
3908 3909 3910
  if (total != NULL) {
    *total += numOfRows;
  }
3911

H
Haojun Liao 已提交
3912
  pLoadInfo->totalElapsed += el;
3913 3914
  return TSDB_CODE_SUCCESS;
}
3915

L
Liu Jicong 已提交
3916 3917
static void* setAllSourcesCompleted(SOperatorInfo* pOperator, int64_t startTs) {
  SExchangeInfo* pExchangeInfo = pOperator->info;
3918
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
H
Haojun Liao 已提交
3919

L
Liu Jicong 已提交
3920
  int64_t              el = taosGetTimestampUs() - startTs;
H
Haojun Liao 已提交
3921 3922
  SLoadRemoteDataInfo* pLoadInfo = &pExchangeInfo->loadInfo;
  pLoadInfo->totalElapsed += el;
H
Haojun Liao 已提交
3923

3924
  size_t totalSources = taosArrayGetSize(pExchangeInfo->pSources);
L
Liu Jicong 已提交
3925 3926 3927
  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);
3928 3929 3930 3931 3932

  doSetOperatorCompleted(pOperator);
  return NULL;
}

L
Liu Jicong 已提交
3933 3934
static SSDataBlock* concurrentlyLoadRemoteDataImpl(SOperatorInfo* pOperator, SExchangeInfo* pExchangeInfo,
                                                   SExecTaskInfo* pTaskInfo) {
3935 3936 3937 3938 3939 3940 3941 3942 3943
  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);

3944
      if (pDataInfo->status == EX_SOURCE_DATA_EXHAUSTED) {
3945
        completed += 1;
H
Haojun Liao 已提交
3946 3947
        continue;
      }
3948

3949
      if (pDataInfo->status != EX_SOURCE_DATA_READY) {
3950 3951 3952
        continue;
      }

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

L
Liu Jicong 已提交
3956
      SSDataBlock*         pRes = pExchangeInfo->pResult;
H
Haojun Liao 已提交
3957
      SLoadRemoteDataInfo* pLoadInfo = &pExchangeInfo->loadInfo;
3958
      if (pRsp->numOfRows == 0) {
L
Liu Jicong 已提交
3959 3960
        qDebug("%s vgId:%d, taskID:0x%" PRIx64 " index:%d completed, rowsOfSource:%" PRIu64 ", totalRows:%" PRIu64
               " try next",
3961
               GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, i + 1, pDataInfo->totalRows,
H
Haojun Liao 已提交
3962
               pExchangeInfo->loadInfo.totalRows);
3963
        pDataInfo->status = EX_SOURCE_DATA_EXHAUSTED;
3964 3965 3966
        completed += 1;
        continue;
      }
H
Haojun Liao 已提交
3967

H
Haojun Liao 已提交
3968
      SRetrieveTableRsp* pTableRsp = pDataInfo->pRsp;
L
Liu Jicong 已提交
3969 3970 3971
      code =
          setSDataBlockFromFetchRsp(pExchangeInfo->pResult, pLoadInfo, pTableRsp->numOfRows, pTableRsp->data,
                                    pTableRsp->compLen, pOperator->numOfOutput, startTs, &pDataInfo->totalRows, NULL);
3972
      if (code != 0) {
3973 3974 3975
        goto _error;
      }

3976 3977 3978
      if (pRsp->completed == 1) {
        qDebug("%s fetch msg rsp from vgId:%d, taskId:0x%" PRIx64 " numOfRows:%d, rowsOfSource:%" PRIu64
               ", totalRows:%" PRIu64 ", totalBytes:%" PRIu64 " try next %d/%" PRIzu,
L
Liu Jicong 已提交
3979 3980
               GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, pRes->info.rows, pDataInfo->totalRows,
               pLoadInfo->totalRows, pLoadInfo->totalSize, i + 1, totalSources);
3981
        pDataInfo->status = EX_SOURCE_DATA_EXHAUSTED;
3982
      } else {
dengyihao's avatar
dengyihao 已提交
3983 3984
        qDebug("%s fetch msg rsp from vgId:%d, taskId:0x%" PRIx64 " numOfRows:%d, totalRows:%" PRIu64
               ", totalBytes:%" PRIu64,
H
Haojun Liao 已提交
3985 3986
               GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, pRes->info.rows, pLoadInfo->totalRows,
               pLoadInfo->totalSize);
3987 3988
      }

3989 3990
      if (pDataInfo->status != EX_SOURCE_DATA_EXHAUSTED) {
        pDataInfo->status = EX_SOURCE_DATA_NOT_READY;
3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009
        code = doSendFetchDataRequest(pExchangeInfo, pTaskInfo, i);
        if (code != TSDB_CODE_SUCCESS) {
          goto _error;
        }
      }

      return pExchangeInfo->pResult;
    }

    if (completed == totalSources) {
      return setAllSourcesCompleted(pOperator, startTs);
    }
  }

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

L
Liu Jicong 已提交
4010 4011 4012
static SSDataBlock* concurrentlyLoadRemoteData(SOperatorInfo* pOperator) {
  SExchangeInfo* pExchangeInfo = pOperator->info;
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
H
Haojun Liao 已提交
4013

H
Haojun Liao 已提交
4014 4015 4016
  if (pOperator->status == OP_RES_TO_RETURN) {
    return concurrentlyLoadRemoteDataImpl(pOperator, pExchangeInfo, pTaskInfo);
  }
4017

L
Liu Jicong 已提交
4018
  size_t  totalSources = taosArrayGetSize(pExchangeInfo->pSources);
4019 4020 4021
  int64_t startTs = taosGetTimestampUs();

  // Asynchronously send all fetch requests to all sources.
L
Liu Jicong 已提交
4022
  for (int32_t i = 0; i < totalSources; ++i) {
4023 4024
    int32_t code = doSendFetchDataRequest(pExchangeInfo, pTaskInfo, i);
    if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
4025
      return NULL;
4026 4027 4028 4029
    }
  }

  int64_t endTs = taosGetTimestampUs();
L
Liu Jicong 已提交
4030 4031
  qDebug("%s send all fetch request to %" PRIzu " sources completed, elapsed:%" PRId64, GET_TASKID(pTaskInfo),
         totalSources, endTs - startTs);
4032 4033

  tsem_wait(&pExchangeInfo->ready);
H
Haojun Liao 已提交
4034 4035
  pOperator->status = OP_RES_TO_RETURN;
  return concurrentlyLoadRemoteDataImpl(pOperator, pExchangeInfo, pTaskInfo);
4036 4037
}

L
Liu Jicong 已提交
4038 4039 4040
static int32_t prepareConcurrentlyLoad(SOperatorInfo* pOperator) {
  SExchangeInfo* pExchangeInfo = pOperator->info;
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
4041

L
Liu Jicong 已提交
4042
  size_t  totalSources = taosArrayGetSize(pExchangeInfo->pSources);
4043 4044 4045
  int64_t startTs = taosGetTimestampUs();

  // Asynchronously send all fetch requests to all sources.
L
Liu Jicong 已提交
4046
  for (int32_t i = 0; i < totalSources; ++i) {
4047 4048
    int32_t code = doSendFetchDataRequest(pExchangeInfo, pTaskInfo, i);
    if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
4049 4050
      pTaskInfo->code = code;
      return code;
4051 4052 4053 4054
    }
  }

  int64_t endTs = taosGetTimestampUs();
L
Liu Jicong 已提交
4055 4056
  qDebug("%s send all fetch request to %" PRIzu " sources completed, elapsed:%" PRId64, GET_TASKID(pTaskInfo),
         totalSources, endTs - startTs);
4057 4058

  tsem_wait(&pExchangeInfo->ready);
H
Haojun Liao 已提交
4059
  pOperator->cost.openCost = taosGetTimestampUs() - startTs;
4060

H
Haojun Liao 已提交
4061
  return TSDB_CODE_SUCCESS;
4062 4063
}

L
Liu Jicong 已提交
4064 4065 4066
static SSDataBlock* seqLoadRemoteData(SOperatorInfo* pOperator) {
  SExchangeInfo* pExchangeInfo = pOperator->info;
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
4067

L
Liu Jicong 已提交
4068
  size_t  totalSources = taosArrayGetSize(pExchangeInfo->pSources);
4069
  int64_t startTs = taosGetTimestampUs();
4070

L
Liu Jicong 已提交
4071
  while (1) {
4072 4073
    if (pExchangeInfo->current >= totalSources) {
      return setAllSourcesCompleted(pOperator, startTs);
4074
    }
4075

4076 4077 4078
    doSendFetchDataRequest(pExchangeInfo, pTaskInfo, pExchangeInfo->current);
    tsem_wait(&pExchangeInfo->ready);

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

H
Haojun Liao 已提交
4082
    if (pDataInfo->code != TSDB_CODE_SUCCESS) {
dengyihao's avatar
dengyihao 已提交
4083 4084
      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 已提交
4085 4086 4087 4088
      pOperator->pTaskInfo->code = pDataInfo->code;
      return NULL;
    }

L
Liu Jicong 已提交
4089
    SRetrieveTableRsp*   pRsp = pDataInfo->pRsp;
H
Haojun Liao 已提交
4090
    SLoadRemoteDataInfo* pLoadInfo = &pExchangeInfo->loadInfo;
4091
    if (pRsp->numOfRows == 0) {
dengyihao's avatar
dengyihao 已提交
4092 4093
      qDebug("%s vgId:%d, taskID:0x%" PRIx64 " %d of total completed, rowsOfSource:%" PRIu64 ", totalRows:%" PRIu64
             " try next",
4094
             GET_TASKID(pTaskInfo), pSource->addr.nodeId, pSource->taskId, pExchangeInfo->current + 1,
H
Haojun Liao 已提交
4095
             pDataInfo->totalRows, pLoadInfo->totalRows);
H
Haojun Liao 已提交
4096

4097
      pDataInfo->status = EX_SOURCE_DATA_EXHAUSTED;
4098 4099 4100
      pExchangeInfo->current += 1;
      continue;
    }
H
Haojun Liao 已提交
4101

L
Liu Jicong 已提交
4102
    SSDataBlock*       pRes = pExchangeInfo->pResult;
H
Haojun Liao 已提交
4103
    SRetrieveTableRsp* pTableRsp = pDataInfo->pRsp;
L
Liu Jicong 已提交
4104 4105 4106
    int32_t            code =
        setSDataBlockFromFetchRsp(pExchangeInfo->pResult, pLoadInfo, pTableRsp->numOfRows, pTableRsp->data,
                                  pTableRsp->compLen, pOperator->numOfOutput, startTs, &pDataInfo->totalRows, NULL);
4107 4108

    if (pRsp->completed == 1) {
H
Haojun Liao 已提交
4109
      qDebug("%s fetch msg rsp from vgId:%d, taskId:0x%" PRIx64 " numOfRows:%d, rowsOfSource:%" PRIu64
L
Liu Jicong 已提交
4110 4111 4112
             ", 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);
4113

4114
      pDataInfo->status = EX_SOURCE_DATA_EXHAUSTED;
4115 4116
      pExchangeInfo->current += 1;
    } else {
L
Liu Jicong 已提交
4117 4118 4119 4120
      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);
4121 4122 4123 4124
    }

    return pExchangeInfo->pResult;
  }
4125 4126
}

L
Liu Jicong 已提交
4127
static int32_t prepareLoadRemoteData(SOperatorInfo* pOperator) {
4128
  if (OPTR_IS_OPENED(pOperator)) {
H
Haojun Liao 已提交
4129 4130 4131
    return TSDB_CODE_SUCCESS;
  }

L
Liu Jicong 已提交
4132
  SExchangeInfo* pExchangeInfo = pOperator->info;
H
Haojun Liao 已提交
4133 4134 4135 4136 4137 4138 4139 4140 4141
  if (pExchangeInfo->seqLoadData) {
    // do nothing for sequentially load data
  } else {
    int32_t code = prepareConcurrentlyLoad(pOperator);
    if (code != TSDB_CODE_SUCCESS) {
      return code;
    }
  }

4142
  OPTR_SET_OPENED(pOperator);
H
Haojun Liao 已提交
4143 4144 4145
  return TSDB_CODE_SUCCESS;
}

L
Liu Jicong 已提交
4146 4147 4148
static SSDataBlock* doLoadRemoteData(SOperatorInfo* pOperator, bool* newgroup) {
  SExchangeInfo* pExchangeInfo = pOperator->info;
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
4149

4150 4151
  pTaskInfo->code = pOperator->_openFn(pOperator);
  if (pTaskInfo->code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
4152 4153
    return NULL;
  }
4154

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

4158
  if (pOperator->status == OP_EXEC_DONE) {
L
Liu Jicong 已提交
4159 4160 4161
    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);
4162 4163 4164 4165
    return NULL;
  }

  *newgroup = false;
H
Haojun Liao 已提交
4166

4167 4168 4169
  if (pExchangeInfo->seqLoadData) {
    return seqLoadRemoteData(pOperator);
  } else {
H
Haojun Liao 已提交
4170
    return concurrentlyLoadRemoteData(pOperator);
4171
  }
H
Haojun Liao 已提交
4172

4173
#if 0
H
Haojun Liao 已提交
4174
  _error:
wafwerar's avatar
wafwerar 已提交
4175 4176
  taosMemoryFreeClear(pMsg);
  taosMemoryFreeClear(pMsgSendInfo);
H
Haojun Liao 已提交
4177 4178 4179

  terrno = pTaskInfo->code;
  return NULL;
4180
#endif
H
Haojun Liao 已提交
4181
}
4182

H
Haojun Liao 已提交
4183
static int32_t initDataSource(int32_t numOfSources, SExchangeInfo* pInfo) {
4184
  pInfo->pSourceDataInfo = taosArrayInit(numOfSources, sizeof(SSourceDataInfo));
H
Haojun Liao 已提交
4185 4186
  if (pInfo->pSourceDataInfo == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
4187 4188
  }

L
Liu Jicong 已提交
4189
  for (int32_t i = 0; i < numOfSources; ++i) {
4190
    SSourceDataInfo dataInfo = {0};
H
Haojun Liao 已提交
4191
    dataInfo.status = EX_SOURCE_DATA_NOT_READY;
L
Liu Jicong 已提交
4192 4193
    dataInfo.pEx = pInfo;
    dataInfo.index = i;
4194

H
Haojun Liao 已提交
4195 4196 4197 4198 4199 4200 4201 4202 4203 4204
    void* ret = taosArrayPush(pInfo->pSourceDataInfo, &dataInfo);
    if (ret == NULL) {
      taosArrayDestroy(pInfo->pSourceDataInfo);
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }

  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
4205
SOperatorInfo* createExchangeOperatorInfo(const SNodeList* pSources, SSDataBlock* pBlock, SExecTaskInfo* pTaskInfo) {
L
Liu Jicong 已提交
4206
  SExchangeInfo* pInfo = taosMemoryCalloc(1, sizeof(SExchangeInfo));
wafwerar's avatar
wafwerar 已提交
4207
  SOperatorInfo* pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
H
Haojun Liao 已提交
4208 4209

  if (pInfo == NULL || pOperator == NULL) {
wafwerar's avatar
wafwerar 已提交
4210 4211
    taosMemoryFreeClear(pInfo);
    taosMemoryFreeClear(pOperator);
H
Haojun Liao 已提交
4212 4213
    terrno = TSDB_CODE_QRY_OUT_OF_MEMORY;
    return NULL;
H
Haojun Liao 已提交
4214 4215
  }

H
Haojun Liao 已提交
4216
  size_t numOfSources = LIST_LENGTH(pSources);
H
Haojun Liao 已提交
4217
  pInfo->pSources = taosArrayInit(numOfSources, sizeof(SDownstreamSourceNode));
H
Haojun Liao 已提交
4218 4219 4220
  pInfo->pSourceDataInfo = taosArrayInit(numOfSources, sizeof(SSourceDataInfo));
  if (pInfo->pSourceDataInfo == NULL || pInfo->pSources == NULL) {
    goto _error;
H
Haojun Liao 已提交
4221 4222
  }

L
Liu Jicong 已提交
4223 4224
  for (int32_t i = 0; i < numOfSources; ++i) {
    SNodeListNode* pNode = nodesListGetNode((SNodeList*)pSources, i);
H
Haojun Liao 已提交
4225 4226
    taosArrayPush(pInfo->pSources, pNode);
  }
4227

H
Haojun Liao 已提交
4228 4229 4230
  int32_t code = initDataSource(numOfSources, pInfo);
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
4231
  }
H
Haojun Liao 已提交
4232

dengyihao's avatar
dengyihao 已提交
4233
  pInfo->pResult = pBlock;
4234 4235 4236
  pInfo->seqLoadData = true;

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

dengyihao's avatar
dengyihao 已提交
4238
  pOperator->name = "ExchangeOperator";
X
Xiaoyu Wang 已提交
4239
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_EXCHANGE;
4240
  pOperator->blockingOptr = false;
dengyihao's avatar
dengyihao 已提交
4241 4242 4243 4244 4245 4246 4247
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
  pOperator->numOfOutput = pBlock->info.numOfCols;
  pOperator->pTaskInfo = pTaskInfo;
  pOperator->_openFn = prepareLoadRemoteData;  // assign a dummy function.
  pOperator->getNextFn = doLoadRemoteData;
  pOperator->closeFn = destroyExchangeOperatorInfo;
4248

S
Shengliang Guan 已提交
4249
#if 1
L
Liu Jicong 已提交
4250
  {  // todo refactor
H
Haojun Liao 已提交
4251 4252 4253
    SRpcInit rpcInit;
    memset(&rpcInit, 0, sizeof(rpcInit));
    rpcInit.localPort = 0;
H
Haojun Liao 已提交
4254
    rpcInit.label = "EX";
H
Haojun Liao 已提交
4255
    rpcInit.numOfThreads = 1;
S
Shengliang Guan 已提交
4256
    rpcInit.cfp = qProcessFetchRsp;
S
Shengliang Guan 已提交
4257
    rpcInit.sessions = tsMaxConnections;
H
Haojun Liao 已提交
4258
    rpcInit.connType = TAOS_CONN_CLIENT;
L
Liu Jicong 已提交
4259
    rpcInit.user = (char*)"root";
S
Shengliang Guan 已提交
4260
    rpcInit.idleTime = tsShellActivityTimer * 1000;
H
Haojun Liao 已提交
4261
    rpcInit.ckey = "key";
S
Shengliang Guan 已提交
4262
    rpcInit.spi = 1;
L
Liu Jicong 已提交
4263
    rpcInit.secret = (char*)"dcc5bed04851fec854c035b2e40263b6";
H
Haojun Liao 已提交
4264 4265 4266

    pInfo->pTransporter = rpcOpen(&rpcInit);
    if (pInfo->pTransporter == NULL) {
L
Liu Jicong 已提交
4267
      return NULL;  // todo
H
Haojun Liao 已提交
4268 4269
    }
  }
S
Shengliang 已提交
4270
#endif
4271

4272
  return pOperator;
H
Haojun Liao 已提交
4273

L
Liu Jicong 已提交
4274
_error:
H
Haojun Liao 已提交
4275
  if (pInfo != NULL) {
H
Haojun Liao 已提交
4276
    destroyExchangeOperatorInfo(pInfo, numOfSources);
H
Haojun Liao 已提交
4277 4278
  }

wafwerar's avatar
wafwerar 已提交
4279 4280
  taosMemoryFreeClear(pInfo);
  taosMemoryFreeClear(pOperator);
H
Haojun Liao 已提交
4281
  pTaskInfo->code = TSDB_CODE_OUT_OF_MEMORY;
H
Haojun Liao 已提交
4282
  return NULL;
4283 4284
}

dengyihao's avatar
dengyihao 已提交
4285 4286
static int32_t doInitAggInfoSup(SAggSupporter* pAggSup, SqlFunctionCtx* pCtx, int32_t numOfOutput, size_t keyBufSize,
                                const char* pKey);
H
Haojun Liao 已提交
4287
static void    cleanupAggSup(SAggSupporter* pAggSup);
4288

4289
static void destroySortedMergeOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
4290
  SSortedMergeOperatorInfo* pInfo = (SSortedMergeOperatorInfo*)param;
H
Haojun Liao 已提交
4291
  taosArrayDestroy(pInfo->pSortInfo);
4292 4293 4294
  taosArrayDestroy(pInfo->groupInfo);

  if (pInfo->pSortHandle != NULL) {
H
Haojun Liao 已提交
4295
    tsortDestroySortHandle(pInfo->pSortHandle);
4296 4297
  }

H
Haojun Liao 已提交
4298
  blockDataDestroy(pInfo->binfo.pRes);
H
Haojun Liao 已提交
4299
  cleanupAggSup(&pInfo->aggSup);
4300
}
H
Haojun Liao 已提交
4301

X
Xiaoyu Wang 已提交
4302 4303
static void assignExprInfo(SExprInfo* dst, const SExprInfo* src) {
  assert(dst != NULL && src != NULL);
4304

X
Xiaoyu Wang 已提交
4305
  *dst = *src;
4306

X
Xiaoyu Wang 已提交
4307
  dst->pExpr = exprdup(src->pExpr);
wafwerar's avatar
wafwerar 已提交
4308
  dst->base.pParam = taosMemoryCalloc(src->base.numOfParams, sizeof(SColumn));
H
Haojun Liao 已提交
4309
  memcpy(dst->base.pParam, src->base.pParam, sizeof(SColumn) * src->base.numOfParams);
4310

L
Liu Jicong 已提交
4311 4312 4313 4314
  //  memset(dst->base.param, 0, sizeof(SVariant) * tListLen(dst->base.param));
  //  for (int32_t j = 0; j < src->base.numOfParams; ++j) {
  //    taosVariantAssign(&dst->base.param[j], &src->base.param[j]);
  //  }
X
Xiaoyu Wang 已提交
4315
}
4316

4317 4318
static SExprInfo* exprArrayDup(SArray* pExprList) {
  size_t numOfOutput = taosArrayGetSize(pExprList);
4319

wafwerar's avatar
wafwerar 已提交
4320
  SExprInfo* p = taosMemoryCalloc(numOfOutput, sizeof(SExprInfo));
4321 4322
  for (int32_t i = 0; i < numOfOutput; ++i) {
    SExprInfo* pExpr = taosArrayGetP(pExprList, i);
H
Haojun Liao 已提交
4323
    assignExprInfo(&p[i], pExpr);
4324 4325
  }

H
Haojun Liao 已提交
4326 4327
  return p;
}
4328

H
Haojun Liao 已提交
4329
// TODO merge aggregate super table
L
Liu Jicong 已提交
4330
static void appendOneRowToDataBlock(SSDataBlock* pBlock, STupleHandle* pTupleHandle) {
4331 4332
  for (int32_t i = 0; i < pBlock->info.numOfCols; ++i) {
    SColumnInfoData* pColInfo = taosArrayGet(pBlock->pDataBlock, i);
4333

H
Haojun Liao 已提交
4334
    bool isNull = tsortIsNullVal(pTupleHandle, i);
H
Haojun Liao 已提交
4335 4336 4337
    if (isNull) {
      colDataAppend(pColInfo, pBlock->info.rows, NULL, true);
    } else {
H
Haojun Liao 已提交
4338
      char* pData = tsortGetValue(pTupleHandle, i);
H
Haojun Liao 已提交
4339 4340
      colDataAppend(pColInfo, pBlock->info.rows, pData, false);
    }
4341 4342
  }

4343 4344
  pBlock->info.rows += 1;
}
4345

H
Haojun Liao 已提交
4346
SSDataBlock* getSortedBlockData(SSortHandle* pHandle, SSDataBlock* pDataBlock, int32_t capacity) {
4347
  blockDataCleanup(pDataBlock);
D
dapan1121 已提交
4348
  blockDataEnsureCapacity(pDataBlock, capacity);
4349

wmmhello's avatar
wmmhello 已提交
4350 4351
  blockDataEnsureCapacity(pDataBlock, capacity);

L
Liu Jicong 已提交
4352
  while (1) {
H
Haojun Liao 已提交
4353
    STupleHandle* pTupleHandle = tsortNextTuple(pHandle);
4354 4355 4356
    if (pTupleHandle == NULL) {
      break;
    }
4357

4358 4359 4360
    appendOneRowToDataBlock(pDataBlock, pTupleHandle);
    if (pDataBlock->info.rows >= capacity) {
      return pDataBlock;
H
Haojun Liao 已提交
4361 4362
    }
  }
4363

L
Liu Jicong 已提交
4364
  return (pDataBlock->info.rows > 0) ? pDataBlock : NULL;
4365
}
4366

4367
SSDataBlock* loadNextDataBlock(void* param) {
L
Liu Jicong 已提交
4368 4369
  SOperatorInfo* pOperator = (SOperatorInfo*)param;
  bool           newgroup = false;
H
Haojun Liao 已提交
4370
  return pOperator->getNextFn(pOperator, &newgroup);
4371 4372
}

L
Liu Jicong 已提交
4373
static bool needToMerge(SSDataBlock* pBlock, SArray* groupInfo, char** buf, int32_t rowIndex) {
4374 4375 4376 4377
  size_t size = taosArrayGetSize(groupInfo);
  if (size == 0) {
    return true;
  }
4378

4379 4380
  for (int32_t i = 0; i < size; ++i) {
    int32_t* index = taosArrayGet(groupInfo, i);
4381

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

4385 4386 4387
    if ((isNull && buf[i] != NULL) || (!isNull && buf[i] == NULL)) {
      return false;
    }
4388

4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401
    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;
      }
4402 4403 4404
    }
  }

4405
  return 0;
4406 4407
}

L
Liu Jicong 已提交
4408 4409 4410
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
4411
    pCtx[j].startRow = rowIndex;
4412 4413
  }

4414 4415
  for (int32_t j = 0; j < numOfExpr; ++j) {
    int32_t functionId = pCtx[j].functionId;
L
Liu Jicong 已提交
4416 4417 4418 4419 4420 4421 4422 4423 4424
    //    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]);
    //    }
4425
  }
4426
}
4427

L
Liu Jicong 已提交
4428 4429
static void doFinalizeResultImpl(SqlFunctionCtx* pCtx, int32_t numOfExpr) {
  for (int32_t j = 0; j < numOfExpr; ++j) {
4430 4431 4432 4433
    int32_t functionId = pCtx[j].functionId;
    //    if (functionId == FUNC_TAG_DUMMY || functionId == FUNC_TS_DUMMY) {
    //      continue;
    //    }
4434

4435 4436 4437 4438
    //    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 已提交
4439
    //    pCtx[j].fpSet.finalize(&pCtx[j]);
4440 4441
  }
}
4442

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

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

4450 4451 4452
    char* data = colDataGetData(pColInfo, rowIndex);
    memcpy(rowColData[i], data, colDataGetLength(pColInfo, rowIndex));
  }
4453

4454 4455
  return true;
}
4456

4457 4458
static void doMergeImpl(SOperatorInfo* pOperator, int32_t numOfExpr, SSDataBlock* pBlock) {
  SSortedMergeOperatorInfo* pInfo = pOperator->info;
4459

4460
  SqlFunctionCtx* pCtx = pInfo->binfo.pCtx;
L
Liu Jicong 已提交
4461
  for (int32_t i = 0; i < pBlock->info.numOfCols; ++i) {
4462 4463
    pCtx[i].size = 1;
  }
4464

L
Liu Jicong 已提交
4465
  for (int32_t i = 0; i < pBlock->info.rows; ++i) {
4466 4467 4468 4469 4470 4471 4472 4473 4474
    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);
H
Haojun Liao 已提交
4475
        int32_t numOfRows = getNumOfResult(pInfo->binfo.pCtx, pOperator->numOfOutput, NULL);
4476
        //        setTagValueForMultipleRows(pCtx, pOperator->numOfOutput, numOfRows);
4477

4478
        // TODO check for available buffer;
H
Haojun Liao 已提交
4479

4480 4481 4482 4483 4484
        // next group info data
        pInfo->binfo.pRes->info.rows += numOfRows;
        for (int32_t j = 0; j < numOfExpr; ++j) {
          if (pCtx[j].functionId < 0) {
            continue;
4485
          }
4486

H
Haojun Liao 已提交
4487
          pCtx[j].fpSet.process(&pCtx[j]);
4488
        }
4489 4490 4491

        doMergeResultImpl(pInfo, pCtx, numOfExpr, i);
        pInfo->hasGroupVal = saveCurrentTuple(pInfo->groupVal, pInfo->groupInfo, pBlock, i);
H
Haojun Liao 已提交
4492
      }
4493 4494 4495 4496
    }
  }
}

4497 4498
static SSDataBlock* doMerge(SOperatorInfo* pOperator) {
  SSortedMergeOperatorInfo* pInfo = pOperator->info;
L
Liu Jicong 已提交
4499
  SSortHandle*              pHandle = pInfo->pSortHandle;
4500

4501
  SSDataBlock* pDataBlock = createOneDataBlock(pInfo->binfo.pRes, false);
4502
  blockDataEnsureCapacity(pDataBlock, pOperator->resultInfo.capacity);
4503

L
Liu Jicong 已提交
4504
  while (1) {
4505
    blockDataCleanup(pDataBlock);
4506
    while (1) {
H
Haojun Liao 已提交
4507
      STupleHandle* pTupleHandle = tsortNextTuple(pHandle);
4508 4509
      if (pTupleHandle == NULL) {
        break;
4510
      }
4511

4512 4513
      // build datablock for merge for one group
      appendOneRowToDataBlock(pDataBlock, pTupleHandle);
4514
      if (pDataBlock->info.rows >= pOperator->resultInfo.capacity) {
4515 4516
        break;
      }
4517
    }
4518

4519 4520 4521
    if (pDataBlock->info.rows == 0) {
      break;
    }
4522

4523
    setInputDataBlock(pOperator, pInfo->binfo.pCtx, pDataBlock, TSDB_ORDER_ASC, true);
L
Liu Jicong 已提交
4524 4525
    //  updateOutputBuf(&pInfo->binfo, &pAggInfo->bufCapacity, pBlock->info.rows * pAggInfo->resultRowFactor,
    //  pOperator->pRuntimeEnv, true);
4526 4527 4528
    doMergeImpl(pOperator, pOperator->numOfOutput, pDataBlock);
    // flush to tuple store, and after all data have been handled, return to upstream node or sink node
  }
4529

4530
  doFinalizeResultImpl(pInfo->binfo.pCtx, pOperator->numOfOutput);
H
Haojun Liao 已提交
4531
  int32_t numOfRows = getNumOfResult(pInfo->binfo.pCtx, pOperator->numOfOutput, NULL);
4532
  //        setTagValueForMultipleRows(pCtx, pOperator->numOfOutput, numOfRows);
4533

4534
  // TODO check for available buffer;
4535

4536 4537
  // next group info data
  pInfo->binfo.pRes->info.rows += numOfRows;
L
Liu Jicong 已提交
4538
  return (pInfo->binfo.pRes->info.rows > 0) ? pInfo->binfo.pRes : NULL;
4539
}
4540

L
Liu Jicong 已提交
4541
static SSDataBlock* doSortedMerge(SOperatorInfo* pOperator, bool* newgroup) {
4542 4543
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
4544 4545
  }

L
Liu Jicong 已提交
4546
  SExecTaskInfo*            pTaskInfo = pOperator->pTaskInfo;
4547
  SSortedMergeOperatorInfo* pInfo = pOperator->info;
H
Haojun Liao 已提交
4548
  if (pOperator->status == OP_RES_TO_RETURN) {
4549
    return getSortedBlockData(pInfo->pSortHandle, pInfo->binfo.pRes, pOperator->resultInfo.capacity);
4550 4551
  }

4552
  int32_t numOfBufPage = pInfo->sortBufSize / pInfo->bufPageSize;
dengyihao's avatar
dengyihao 已提交
4553 4554
  pInfo->pSortHandle = tsortCreateSortHandle(pInfo->pSortInfo, NULL, SORT_MULTISOURCE_MERGE, pInfo->bufPageSize,
                                             numOfBufPage, pInfo->binfo.pRes, "GET_TASKID(pTaskInfo)");
H
Haojun Liao 已提交
4555

H
Haojun Liao 已提交
4556
  tsortSetFetchRawDataFp(pInfo->pSortHandle, loadNextDataBlock);
4557

L
Liu Jicong 已提交
4558
  for (int32_t i = 0; i < pOperator->numOfDownstream; ++i) {
wmmhello's avatar
wmmhello 已提交
4559
    SSortSource* ps = taosMemoryCalloc(1, sizeof(SSortSource));
H
Haojun Liao 已提交
4560
    ps->param = pOperator->pDownstream[i];
H
Haojun Liao 已提交
4561
    tsortAddSource(pInfo->pSortHandle, ps);
4562 4563
  }

H
Haojun Liao 已提交
4564
  int32_t code = tsortOpen(pInfo->pSortHandle);
4565
  if (code != TSDB_CODE_SUCCESS) {
4566
    longjmp(pTaskInfo->env, terrno);
4567 4568
  }

H
Haojun Liao 已提交
4569
  pOperator->status = OP_RES_TO_RETURN;
4570
  return doMerge(pOperator);
4571
}
4572

L
Liu Jicong 已提交
4573 4574
static int32_t initGroupCol(SExprInfo* pExprInfo, int32_t numOfCols, SArray* pGroupInfo,
                            SSortedMergeOperatorInfo* pInfo) {
4575 4576
  if (pGroupInfo == NULL || taosArrayGetSize(pGroupInfo) == 0) {
    return 0;
H
Haojun Liao 已提交
4577 4578
  }

4579 4580 4581 4582 4583 4584 4585 4586
  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 已提交
4587 4588
  size_t numOfGroupCol = taosArrayGetSize(pInfo->groupInfo);
  for (int32_t i = 0; i < numOfGroupCol; ++i) {
4589
    SColumn* pCol = taosArrayGet(pGroupInfo, i);
L
Liu Jicong 已提交
4590
    for (int32_t j = 0; j < numOfCols; ++j) {
H
Haojun Liao 已提交
4591
      SExprInfo* pe = &pExprInfo[j];
4592
      if (pe->base.resSchema.slotId == pCol->colId) {
4593 4594
        taosArrayPush(plist, pCol);
        taosArrayPush(pInfo->groupInfo, &j);
H
Haojun Liao 已提交
4595
        len += pCol->bytes;
4596 4597
        break;
      }
H
Haojun Liao 已提交
4598 4599 4600
    }
  }

4601
  ASSERT(taosArrayGetSize(pGroupInfo) == taosArrayGetSize(plist));
H
Haojun Liao 已提交
4602

wafwerar's avatar
wafwerar 已提交
4603
  pInfo->groupVal = taosMemoryCalloc(1, (POINTER_BYTES * numOfGroupCol + len));
4604 4605 4606 4607
  if (pInfo->groupVal == NULL) {
    taosArrayDestroy(plist);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
H
Haojun Liao 已提交
4608

4609
  int32_t offset = 0;
L
Liu Jicong 已提交
4610 4611
  char*   start = (char*)(pInfo->groupVal + (POINTER_BYTES * numOfGroupCol));
  for (int32_t i = 0; i < numOfGroupCol; ++i) {
4612 4613
    pInfo->groupVal[i] = start + offset;
    SColumn* pCol = taosArrayGet(plist, i);
H
Haojun Liao 已提交
4614
    offset += pCol->bytes;
4615
  }
H
Haojun Liao 已提交
4616

4617
  taosArrayDestroy(plist);
H
Haojun Liao 已提交
4618

4619 4620
  return TSDB_CODE_SUCCESS;
}
H
Haojun Liao 已提交
4621

L
Liu Jicong 已提交
4622 4623 4624
SOperatorInfo* createSortedMergeOperatorInfo(SOperatorInfo** downstream, int32_t numOfDownstream, SExprInfo* pExprInfo,
                                             int32_t num, SArray* pSortInfo, SArray* pGroupInfo,
                                             SExecTaskInfo* pTaskInfo) {
wafwerar's avatar
wafwerar 已提交
4625
  SSortedMergeOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SSortedMergeOperatorInfo));
L
Liu Jicong 已提交
4626
  SOperatorInfo*            pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
4627
  if (pInfo == NULL || pOperator == NULL) {
4628
    goto _error;
4629
  }
H
Haojun Liao 已提交
4630

4631
  pInfo->binfo.pCtx = createSqlFunctionCtx(pExprInfo, num, &pInfo->binfo.rowCellInfoOffset);
4632
  initResultRowInfo(&pInfo->binfo.resultRowInfo, (int32_t)1);
H
Haojun Liao 已提交
4633

4634 4635 4636
  if (pInfo->binfo.pCtx == NULL || pInfo->binfo.pRes == NULL) {
    goto _error;
  }
H
Haojun Liao 已提交
4637

dengyihao's avatar
dengyihao 已提交
4638
  size_t  keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
4639
  int32_t code = doInitAggInfoSup(&pInfo->aggSup, pInfo->binfo.pCtx, num, keyBufSize, pTaskInfo->id.str);
4640 4641 4642
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
H
Haojun Liao 已提交
4643

H
Haojun Liao 已提交
4644
  setFunctionResultOutput(&pInfo->binfo, &pInfo->aggSup, MAIN_SCAN, pTaskInfo);
H
Haojun Liao 已提交
4645
  code = initGroupCol(pExprInfo, num, pGroupInfo, pInfo);
4646 4647 4648
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
H
Haojun Liao 已提交
4649

L
Liu Jicong 已提交
4650 4651 4652 4653 4654
  //  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 已提交
4655

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

L
Liu Jicong 已提交
4658
  pOperator->name = "SortedMerge";
X
Xiaoyu Wang 已提交
4659
  // pOperator->operatorType = OP_SortedMerge;
4660
  pOperator->blockingOptr = true;
L
Liu Jicong 已提交
4661 4662 4663 4664
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
  pOperator->numOfOutput = num;
  pOperator->pExpr = pExprInfo;
H
Haojun Liao 已提交
4665

L
Liu Jicong 已提交
4666 4667 4668
  pOperator->pTaskInfo = pTaskInfo;
  pOperator->getNextFn = doSortedMerge;
  pOperator->closeFn = destroySortedMergeOperatorInfo;
H
Haojun Liao 已提交
4669

4670 4671 4672
  code = appendDownstream(pOperator, downstream, numOfDownstream);
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
4673
  }
H
Haojun Liao 已提交
4674

4675
  return pOperator;
H
Haojun Liao 已提交
4676

L
Liu Jicong 已提交
4677
_error:
4678
  if (pInfo != NULL) {
H
Haojun Liao 已提交
4679
    destroySortedMergeOperatorInfo(pInfo, num);
H
Haojun Liao 已提交
4680 4681
  }

wafwerar's avatar
wafwerar 已提交
4682 4683
  taosMemoryFreeClear(pInfo);
  taosMemoryFreeClear(pOperator);
4684 4685
  terrno = TSDB_CODE_QRY_OUT_OF_MEMORY;
  return NULL;
H
Haojun Liao 已提交
4686 4687
}

L
Liu Jicong 已提交
4688
static SSDataBlock* doSort(SOperatorInfo* pOperator, bool* newgroup) {
4689 4690 4691 4692
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

L
Liu Jicong 已提交
4693
  SExecTaskInfo*     pTaskInfo = pOperator->pTaskInfo;
H
Haojun Liao 已提交
4694 4695
  SSortOperatorInfo* pInfo = pOperator->info;

H
Haojun Liao 已提交
4696
  if (pOperator->status == OP_RES_TO_RETURN) {
H
Haojun Liao 已提交
4697
    return getSortedBlockData(pInfo->pSortHandle, pInfo->pDataBlock, pInfo->numOfRowsInRes);
H
Haojun Liao 已提交
4698 4699
  }

4700
  int32_t numOfBufPage = pInfo->sortBufSize / pInfo->bufPageSize;
dengyihao's avatar
dengyihao 已提交
4701 4702
  pInfo->pSortHandle = tsortCreateSortHandle(pInfo->pSortInfo, pInfo->inputSlotMap, SORT_SINGLESOURCE_SORT,
                                             pInfo->bufPageSize, numOfBufPage, pInfo->pDataBlock, pTaskInfo->id.str);
4703

H
Haojun Liao 已提交
4704
  tsortSetFetchRawDataFp(pInfo->pSortHandle, loadNextDataBlock);
H
Haojun Liao 已提交
4705

wmmhello's avatar
wmmhello 已提交
4706
  SSortSource* ps = taosMemoryCalloc(1, sizeof(SSortSource));
H
Haojun Liao 已提交
4707
  ps->param = pOperator->pDownstream[0];
H
Haojun Liao 已提交
4708
  tsortAddSource(pInfo->pSortHandle, ps);
4709

H
Haojun Liao 已提交
4710
  int32_t code = tsortOpen(pInfo->pSortHandle);
4711
  taosMemoryFreeClear(ps);
4712
  if (code != TSDB_CODE_SUCCESS) {
4713
    longjmp(pTaskInfo->env, terrno);
4714
  }
4715

H
Haojun Liao 已提交
4716
  pOperator->status = OP_RES_TO_RETURN;
H
Haojun Liao 已提交
4717
  return getSortedBlockData(pInfo->pSortHandle, pInfo->pDataBlock, pInfo->numOfRowsInRes);
4718 4719
}

dengyihao's avatar
dengyihao 已提交
4720 4721
SOperatorInfo* createSortOperatorInfo(SOperatorInfo* downstream, SSDataBlock* pResBlock, SArray* pSortInfo,
                                      SArray* pIndexMap, SExecTaskInfo* pTaskInfo) {
H
Haojun Liao 已提交
4722
  SSortOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SSortOperatorInfo));
L
Liu Jicong 已提交
4723
  SOperatorInfo*     pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
dengyihao's avatar
dengyihao 已提交
4724
  int32_t            rowSize = pResBlock->info.rowSize;
4725 4726

  if (pInfo == NULL || pOperator == NULL || rowSize > 100 * 1024 * 1024) {
wafwerar's avatar
wafwerar 已提交
4727 4728
    taosMemoryFreeClear(pInfo);
    taosMemoryFreeClear(pOperator);
H
Haojun Liao 已提交
4729 4730 4731
    terrno = TSDB_CODE_QRY_OUT_OF_MEMORY;
    return NULL;
  }
4732

dengyihao's avatar
dengyihao 已提交
4733
  pInfo->bufPageSize = rowSize < 1024 ? 1024 * 2 : rowSize * 2;  // there are headers, so pageSize = rowSize + header
4734

wmmhello's avatar
wmmhello 已提交
4735
  pInfo->sortBufSize = pInfo->bufPageSize * 16;  // TODO dynamic set the available sort buffer
L
Liu Jicong 已提交
4736 4737 4738
  pInfo->numOfRowsInRes = 1024;
  pInfo->pDataBlock = pResBlock;
  pInfo->pSortInfo = pSortInfo;
4739
  pInfo->inputSlotMap = pIndexMap;
H
Haojun Liao 已提交
4740

dengyihao's avatar
dengyihao 已提交
4741
  pOperator->name = "SortOperator";
L
Liu Jicong 已提交
4742 4743
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_SORT;
  pOperator->blockingOptr = true;
dengyihao's avatar
dengyihao 已提交
4744 4745
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
4746

dengyihao's avatar
dengyihao 已提交
4747 4748 4749
  pOperator->pTaskInfo = pTaskInfo;
  pOperator->getNextFn = doSort;
  pOperator->closeFn = destroyOrderOperatorInfo;
4750

4751
  int32_t code = appendDownstream(pOperator, &downstream, 1);
4752
  return pOperator;
H
Haojun Liao 已提交
4753

dengyihao's avatar
dengyihao 已提交
4754
_error:
H
Haojun Liao 已提交
4755 4756 4757 4758
  pTaskInfo->code = TSDB_CODE_OUT_OF_MEMORY;
  taosMemoryFree(pInfo);
  taosMemoryFree(pOperator);
  return NULL;
4759 4760
}

L
Liu Jicong 已提交
4761
static int32_t getTableScanOrder(STableScanInfo* pTableScanInfo) { return pTableScanInfo->order; }
4762 4763

// this is a blocking operator
L
Liu Jicong 已提交
4764
static int32_t doOpenAggregateOptr(SOperatorInfo* pOperator) {
H
Haojun Liao 已提交
4765 4766
  if (OPTR_IS_OPENED(pOperator)) {
    return TSDB_CODE_SUCCESS;
4767 4768
  }

H
Haojun Liao 已提交
4769
  SExecTaskInfo*    pTaskInfo = pOperator->pTaskInfo;
4770
  SAggOperatorInfo* pAggInfo = pOperator->info;
H
Haojun Liao 已提交
4771

dengyihao's avatar
dengyihao 已提交
4772
  SOptrBasicInfo* pInfo = &pAggInfo->binfo;
4773

H
Haojun Liao 已提交
4774
  int32_t        order = TSDB_ORDER_ASC;
H
Haojun Liao 已提交
4775
  SOperatorInfo* downstream = pOperator->pDownstream[0];
4776

H
Haojun Liao 已提交
4777 4778
  bool newgroup = true;
  while (1) {
H
Haojun Liao 已提交
4779
    publishOperatorProfEvent(downstream, QUERY_PROF_BEFORE_OPERATOR_EXEC);
H
Haojun Liao 已提交
4780
    SSDataBlock* pBlock = downstream->getNextFn(downstream, &newgroup);
H
Haojun Liao 已提交
4781
    publishOperatorProfEvent(downstream, QUERY_PROF_AFTER_OPERATOR_EXEC);
4782 4783 4784 4785

    if (pBlock == NULL) {
      break;
    }
H
Haojun Liao 已提交
4786 4787 4788
    //    if (pAggInfo->current != NULL) {
    //      setTagValue(pOperator, pAggInfo->current->pTable, pInfo->pCtx, pOperator->numOfOutput);
    //    }
4789

4790 4791
    // there is an scalar expression that needs to be calculated before apply the group aggregation.
    if (pAggInfo->pScalarExprInfo != NULL) {
dengyihao's avatar
dengyihao 已提交
4792 4793
      projectApplyFunctions(pAggInfo->pScalarExprInfo, pBlock, pBlock, pAggInfo->pScalarCtx, pAggInfo->numOfScalarExpr,
                            NULL);
4794 4795
    }

4796
    // the pDataBlock are always the same one, no need to call this again
H
Haojun Liao 已提交
4797
    setExecutionContext(pOperator->numOfOutput, pBlock->info.groupId, pTaskInfo, pAggInfo);
4798
    setInputDataBlock(pOperator, pInfo->pCtx, pBlock, order, true);
H
Haojun Liao 已提交
4799
    doAggregateImpl(pOperator, 0, pInfo->pCtx);
4800

dengyihao's avatar
dengyihao 已提交
4801
#if 0  // test for encode/decode result info
4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812
    if(pOperator->encodeResultRow){
      char *result = NULL;
      int32_t length = 0;
      SAggSupporter   *pSup = &pAggInfo->aggSup;
      pOperator->encodeResultRow(pOperator, pSup, pInfo, &result, &length);
      taosHashClear(pSup->pResultRowHashTable);
      pInfo->resultRowInfo.size = 0;
      pOperator->decodeResultRow(pOperator, pSup, pInfo, result, length);
      if(result){
        taosMemoryFree(result);
      }
4813
    }
4814
#endif
4815 4816
  }

H
Haojun Liao 已提交
4817 4818 4819
  closeAllResultRows(&pAggInfo->binfo.resultRowInfo);
  finalizeMultiTupleQueryResult(pAggInfo->binfo.pCtx, pOperator->numOfOutput, pAggInfo->aggSup.pResultBuf,
                                &pAggInfo->binfo.resultRowInfo, pAggInfo->binfo.rowCellInfoOffset);
H
Haojun Liao 已提交
4820

H
Haojun Liao 已提交
4821
  initGroupResInfo(&pAggInfo->groupResInfo, &pAggInfo->binfo.resultRowInfo);
H
Haojun Liao 已提交
4822 4823 4824 4825
  OPTR_SET_OPENED(pOperator);
  return TSDB_CODE_SUCCESS;
}

L
Liu Jicong 已提交
4826 4827
static SSDataBlock* getAggregateResult(SOperatorInfo* pOperator, bool* newgroup) {
  SAggOperatorInfo* pAggInfo = pOperator->info;
H
Haojun Liao 已提交
4828 4829 4830 4831 4832 4833
  SOptrBasicInfo*   pInfo = &pAggInfo->binfo;

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

L
Liu Jicong 已提交
4834
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
H
Haojun Liao 已提交
4835 4836 4837 4838 4839
  pTaskInfo->code = pOperator->_openFn(pOperator);
  if (pTaskInfo->code != TSDB_CODE_SUCCESS) {
    return NULL;
  }

H
Haojun Liao 已提交
4840
  blockDataEnsureCapacity(pInfo->pRes, pOperator->resultInfo.capacity);
dengyihao's avatar
dengyihao 已提交
4841 4842
  doBuildResultDatablock(pInfo->pRes, &pAggInfo->groupResInfo, pOperator->pExpr, pAggInfo->aggSup.pResultBuf,
                         pInfo->rowCellInfoOffset, pInfo->pCtx);
H
Haojun Liao 已提交
4843 4844 4845
  if (pInfo->pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pAggInfo->groupResInfo)) {
    doSetOperatorCompleted(pOperator);
  }
4846

H
Haojun Liao 已提交
4847
  doSetOperatorCompleted(pOperator);
L
Liu Jicong 已提交
4848
  return (blockDataGetNumOfRows(pInfo->pRes) != 0) ? pInfo->pRes : NULL;
4849 4850
}

dengyihao's avatar
dengyihao 已提交
4851 4852
void aggEncodeResultRow(SOperatorInfo* pOperator, SAggSupporter* pSup, SOptrBasicInfo* pInfo, char** result,
                        int32_t* length) {
wmmhello's avatar
wmmhello 已提交
4853
  int32_t size = taosHashGetSize(pSup->pResultRowHashTable);
4854
  size_t  keyLen = sizeof(uint64_t) * 2;  // estimate the key length
wmmhello's avatar
wmmhello 已提交
4855
  int32_t totalSize = sizeof(int32_t) + size * (sizeof(int32_t) + keyLen + sizeof(int32_t) + pSup->resultRowSize);
wafwerar's avatar
wafwerar 已提交
4856
  *result = taosMemoryCalloc(1, totalSize);
L
Liu Jicong 已提交
4857
  if (*result == NULL) {
4858
    longjmp(pOperator->pTaskInfo->env, TSDB_CODE_OUT_OF_MEMORY);
wmmhello's avatar
wmmhello 已提交
4859 4860 4861
  }
  *(int32_t*)(*result) = size;
  int32_t offset = sizeof(int32_t);
4862 4863

  // prepare memory
4864
  SResultRowPosition* pos = &pInfo->resultRowInfo.cur;
dengyihao's avatar
dengyihao 已提交
4865 4866
  void*               pPage = getBufPage(pSup->pResultBuf, pos->pageId);
  SResultRow*         pRow = (SResultRow*)((char*)pPage + pos->offset);
4867 4868 4869
  setBufPageDirty(pPage, true);
  releaseBufPage(pSup->pResultBuf, pPage);

dengyihao's avatar
dengyihao 已提交
4870
  void* pIter = taosHashIterate(pSup->pResultRowHashTable, NULL);
wmmhello's avatar
wmmhello 已提交
4871
  while (pIter) {
dengyihao's avatar
dengyihao 已提交
4872
    void*               key = taosHashGetKey(pIter, &keyLen);
4873
    SResultRowPosition* p1 = (SResultRowPosition*)pIter;
4874

dengyihao's avatar
dengyihao 已提交
4875
    pPage = (SFilePage*)getBufPage(pSup->pResultBuf, p1->pageId);
4876
    pRow = (SResultRow*)((char*)pPage + p1->offset);
4877 4878
    setBufPageDirty(pPage, true);
    releaseBufPage(pSup->pResultBuf, pPage);
wmmhello's avatar
wmmhello 已提交
4879 4880 4881

    // recalculate the result size
    int32_t realTotalSize = offset + sizeof(int32_t) + keyLen + sizeof(int32_t) + pSup->resultRowSize;
L
Liu Jicong 已提交
4882 4883 4884
    if (realTotalSize > totalSize) {
      char* tmp = taosMemoryRealloc(*result, realTotalSize);
      if (tmp == NULL) {
wmmhello's avatar
wmmhello 已提交
4885
        terrno = TSDB_CODE_OUT_OF_MEMORY;
wafwerar's avatar
wafwerar 已提交
4886
        taosMemoryFree(*result);
wmmhello's avatar
wmmhello 已提交
4887
        *result = NULL;
4888
        longjmp(pOperator->pTaskInfo->env, TSDB_CODE_OUT_OF_MEMORY);
L
Liu Jicong 已提交
4889
      } else {
wmmhello's avatar
wmmhello 已提交
4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901
        *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);
4902
    memcpy(*result + offset, pRow, pSup->resultRowSize);
wmmhello's avatar
wmmhello 已提交
4903 4904 4905 4906 4907
    offset += pSup->resultRowSize;

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

L
Liu Jicong 已提交
4908
  if (length) {
wmmhello's avatar
wmmhello 已提交
4909 4910 4911 4912 4913
    *length = offset;
  }
  return;
}

dengyihao's avatar
dengyihao 已提交
4914 4915
bool aggDecodeResultRow(SOperatorInfo* pOperator, SAggSupporter* pSup, SOptrBasicInfo* pInfo, char* result,
                        int32_t length) {
L
Liu Jicong 已提交
4916
  if (!result || length <= 0) {
wmmhello's avatar
wmmhello 已提交
4917 4918 4919 4920 4921 4922 4923
    return false;
  }

  //  int32_t size = taosHashGetSize(pSup->pResultRowHashTable);
  int32_t count = *(int32_t*)(result);

  int32_t offset = sizeof(int32_t);
L
Liu Jicong 已提交
4924
  while (count-- > 0 && length > offset) {
wmmhello's avatar
wmmhello 已提交
4925 4926 4927
    int32_t keyLen = *(int32_t*)(result + offset);
    offset += sizeof(int32_t);

L
Liu Jicong 已提交
4928 4929 4930
    uint64_t    tableGroupId = *(uint64_t*)(result + offset);
    SResultRow* resultRow = getNewResultRow_rv(pSup->pResultBuf, tableGroupId, pSup->resultRowSize);
    if (!resultRow) {
4931
      longjmp(pOperator->pTaskInfo->env, TSDB_CODE_TSC_INVALID_INPUT);
wmmhello's avatar
wmmhello 已提交
4932
    }
4933

wmmhello's avatar
wmmhello 已提交
4934
    // add a new result set for a new group
4935 4936
    SResultRowPosition pos = {.pageId = resultRow->pageId, .offset = resultRow->offset};
    taosHashPut(pSup->pResultRowHashTable, result + offset, keyLen, &pos, sizeof(SResultRowPosition));
wmmhello's avatar
wmmhello 已提交
4937 4938 4939

    offset += keyLen;
    int32_t valueLen = *(int32_t*)(result + offset);
L
Liu Jicong 已提交
4940
    if (valueLen != pSup->resultRowSize) {
4941
      longjmp(pOperator->pTaskInfo->env, TSDB_CODE_TSC_INVALID_INPUT);
wmmhello's avatar
wmmhello 已提交
4942 4943 4944 4945 4946 4947 4948 4949 4950 4951
    }
    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);
4952
    prepareResultListBuffer(&pInfo->resultRowInfo, pOperator->pTaskInfo->env);
dengyihao's avatar
dengyihao 已提交
4953 4954 4955 4956
    //    pInfo->resultRowInfo.cur = pInfo->resultRowInfo.size;
    pInfo->resultRowInfo.pPosition[pInfo->resultRowInfo.size++] =
        (SResultRowPosition){.pageId = resultRow->pageId, .offset = resultRow->offset};
    pInfo->resultRowInfo.cur = (SResultRowPosition){.pageId = resultRow->pageId, .offset = resultRow->offset};
wmmhello's avatar
wmmhello 已提交
4957 4958
  }

L
Liu Jicong 已提交
4959
  if (offset != length) {
4960
    longjmp(pOperator->pTaskInfo->env, TSDB_CODE_TSC_INVALID_INPUT);
wmmhello's avatar
wmmhello 已提交
4961 4962 4963 4964
  }
  return true;
}

L
Liu Jicong 已提交
4965
static SSDataBlock* doProjectOperation(SOperatorInfo* pOperator, bool* newgroup) {
4966
  SProjectOperatorInfo* pProjectInfo = pOperator->info;
L
Liu Jicong 已提交
4967
  SOptrBasicInfo*       pInfo = &pProjectInfo->binfo;
4968 4969

  SSDataBlock* pRes = pInfo->pRes;
4970
  blockDataCleanup(pRes);
4971 4972 4973 4974

  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
4975

H
Haojun Liao 已提交
4976
#if 0
4977 4978 4979 4980 4981 4982
  if (pProjectInfo->existDataBlock) {  // TODO refactor
    SSDataBlock* pBlock = pProjectInfo->existDataBlock;
    pProjectInfo->existDataBlock = NULL;
    *newgroup = true;

    // todo dynamic set tags
L
Liu Jicong 已提交
4983 4984 4985
    //    if (pTableQueryInfo != NULL) {
    //      setTagValue(pOperator, pTableQueryInfo->pTable, pInfo->pCtx, pOperator->numOfOutput);
    //    }
4986 4987

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

H
Haojun Liao 已提交
4990
    blockDataEnsureCapacity(pInfo->pRes, pBlock->info.rows);
4991
    projectApplyFunctions(pOperator->pExpr, pInfo->pRes, pBlock, pInfo->pCtx, pOperator->numOfOutput);
L
Liu Jicong 已提交
4992
    if (pRes->info.rows >= pProjectInfo->binfo.capacity * 0.8) {
4993 4994 4995 4996 4997
      copyTsColoum(pRes, pInfo->pCtx, pOperator->numOfOutput);
      resetResultRowEntryResult(pInfo->pCtx, pOperator->numOfOutput);
      return pRes;
    }
  }
H
Haojun Liao 已提交
4998
#endif
4999

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

L
Liu Jicong 已提交
5002
  while (1) {
5003 5004
    bool prevVal = *newgroup;

H
Haojun Liao 已提交
5005
    // The downstream exec may change the value of the newgroup, so use a local variable instead.
H
Haojun Liao 已提交
5006 5007 5008
    publishOperatorProfEvent(downstream, QUERY_PROF_BEFORE_OPERATOR_EXEC);
    SSDataBlock* pBlock = downstream->getNextFn(downstream, newgroup);
    publishOperatorProfEvent(downstream, QUERY_PROF_AFTER_OPERATOR_EXEC);
5009 5010 5011

    if (pBlock == NULL) {
      *newgroup = prevVal;
5012
      setTaskStatus(pOperator->pTaskInfo, TASK_COMPLETED);
5013 5014 5015 5016 5017 5018 5019 5020
      break;
    }

    // Return result of the previous group in the firstly.
    if (*newgroup) {
      if (pRes->info.rows > 0) {
        pProjectInfo->existDataBlock = pBlock;
        break;
L
Liu Jicong 已提交
5021
      } else {  // init output buffer for a new group data
5022 5023 5024 5025 5026
        initCtxOutputBuffer(pInfo->pCtx, pOperator->numOfOutput);
      }
    }

    // todo dynamic set tags
H
Haojun Liao 已提交
5027 5028 5029 5030
    //    STableQueryInfo* pTableQueryInfo = pRuntimeEnv->current;
    //    if (pTableQueryInfo != NULL) {
    //      setTagValue(pOperator, pTableQueryInfo->pTable, pInfo->pCtx, pOperator->numOfOutput);
    //    }
5031 5032

    // the pDataBlock are always the same one, no need to call this again
5033
    setInputDataBlock(pOperator, pInfo->pCtx, pBlock, TSDB_ORDER_ASC, false);
5034 5035
    blockDataEnsureCapacity(pInfo->pRes, pInfo->pRes->info.rows + pBlock->info.rows);

dengyihao's avatar
dengyihao 已提交
5036 5037
    projectApplyFunctions(pOperator->pExpr, pInfo->pRes, pBlock, pInfo->pCtx, pOperator->numOfOutput,
                          pProjectInfo->pPseudoColInfo);
H
Haojun Liao 已提交
5038

H
Haojun Liao 已提交
5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070
    if (pProjectInfo->curSOffset > 0) {
      if (pProjectInfo->groupId == 0) {  // it is the first group
        pProjectInfo->groupId = pBlock->info.groupId;
        blockDataCleanup(pInfo->pRes);
        continue;
      } else if (pProjectInfo->groupId != pBlock->info.groupId) {
        pProjectInfo->curSOffset -= 1;

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

      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;
        return NULL;
      }

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

    pProjectInfo->groupId = pBlock->info.groupId;

H
Haojun Liao 已提交
5071
    // todo extract method
H
Haojun Liao 已提交
5072 5073 5074 5075 5076 5077 5078 5079 5080
    if (pProjectInfo->curOffset < pInfo->pRes->info.rows && pProjectInfo->curOffset > 0) {
      blockDataTrimFirstNRows(pInfo->pRes, pProjectInfo->curOffset);
      pProjectInfo->curOffset = 0;
    } else if (pProjectInfo->curOffset >= pInfo->pRes->info.rows) {
      pProjectInfo->curOffset -= pInfo->pRes->info.rows;
      blockDataCleanup(pInfo->pRes);
      continue;
    }

5081
    if (pRes->info.rows >= pOperator->resultInfo.threshold) {
5082 5083 5084
      break;
    }
  }
dengyihao's avatar
dengyihao 已提交
5085

H
Haojun Liao 已提交
5086
  if (pProjectInfo->limit.limit > 0 && pProjectInfo->curOutput + pInfo->pRes->info.rows >= pProjectInfo->limit.limit) {
H
Haojun Liao 已提交
5087 5088 5089 5090
    pInfo->pRes->info.rows = (int32_t)(pProjectInfo->limit.limit - pProjectInfo->curOutput);
  }

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

L
Liu Jicong 已提交
5092 5093
  //  copyTsColoum(pRes, pInfo->pCtx, pOperator->numOfOutput);
  return (pInfo->pRes->info.rows > 0) ? pInfo->pRes : NULL;
5094 5095
}

L
Liu Jicong 已提交
5096
static int32_t doOpenIntervalAgg(SOperatorInfo* pOperator) {
5097 5098
  if (OPTR_IS_OPENED(pOperator)) {
    return TSDB_CODE_SUCCESS;
5099 5100
  }

dengyihao's avatar
dengyihao 已提交
5101
  SExecTaskInfo*              pTaskInfo = pOperator->pTaskInfo;
H
Haojun Liao 已提交
5102
  STableIntervalOperatorInfo* pInfo = pOperator->info;
5103

5104
  int32_t order = TSDB_ORDER_ASC;
5105
  //  STimeWindow win = {0};
dengyihao's avatar
dengyihao 已提交
5106
  bool           newgroup = false;
H
Haojun Liao 已提交
5107
  SOperatorInfo* downstream = pOperator->pDownstream[0];
5108

5109
  while (1) {
H
Haojun Liao 已提交
5110
    publishOperatorProfEvent(downstream, QUERY_PROF_BEFORE_OPERATOR_EXEC);
5111
    SSDataBlock* pBlock = downstream->getNextFn(downstream, &newgroup);
H
Haojun Liao 已提交
5112
    publishOperatorProfEvent(downstream, QUERY_PROF_AFTER_OPERATOR_EXEC);
5113 5114 5115 5116 5117

    if (pBlock == NULL) {
      break;
    }

5118
    //    setTagValue(pOperator, pRuntimeEnv->current->pTable, pInfo->pCtx, pOperator->numOfOutput);
5119
    // the pDataBlock are always the same one, no need to call this again
5120
    setInputDataBlock(pOperator, pInfo->binfo.pCtx, pBlock, order, true);
5121 5122 5123
    STableQueryInfo* pTableQueryInfo = pInfo->pCurrent;

    setIntervalQueryRange(pTableQueryInfo, pBlock->info.window.skey, &pTaskInfo->window);
H
Haojun Liao 已提交
5124
    hashIntervalAgg(pOperator, &pInfo->binfo.resultRowInfo, pBlock, 0);
5125

dengyihao's avatar
dengyihao 已提交
5126
#if 0  // test for encode/decode result info
5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137
    if(pOperator->encodeResultRow){
      char *result = NULL;
      int32_t length = 0;
      SAggSupporter   *pSup = &pInfo->aggSup;
      pOperator->encodeResultRow(pOperator, pSup, &pInfo->binfo, &result, &length);
      taosHashClear(pSup->pResultRowHashTable);
      pInfo->binfo.resultRowInfo.size = 0;
      pOperator->decodeResultRow(pOperator, pSup, &pInfo->binfo, result, length);
      if(result){
        taosMemoryFree(result);
      }
5138
    }
5139
#endif
5140 5141
  }

H
Haojun Liao 已提交
5142
  closeAllResultRows(&pInfo->binfo.resultRowInfo);
L
Liu Jicong 已提交
5143 5144
  finalizeMultiTupleQueryResult(pInfo->binfo.pCtx, pOperator->numOfOutput, pInfo->aggSup.pResultBuf,
                                &pInfo->binfo.resultRowInfo, pInfo->binfo.rowCellInfoOffset);
5145

H
Haojun Liao 已提交
5146
  initGroupResInfo(&pInfo->groupResInfo, &pInfo->binfo.resultRowInfo);
5147 5148 5149 5150
  OPTR_SET_OPENED(pOperator);
  return TSDB_CODE_SUCCESS;
}

L
Liu Jicong 已提交
5151
static SSDataBlock* doBuildIntervalResult(SOperatorInfo* pOperator, bool* newgroup) {
5152
  STableIntervalOperatorInfo* pInfo = pOperator->info;
L
Liu Jicong 已提交
5153
  SExecTaskInfo*              pTaskInfo = pOperator->pTaskInfo;
5154 5155 5156 5157 5158

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

5159 5160
  SSDataBlock* pBlock = pInfo->binfo.pRes;

5161 5162
  if (pInfo->execModel == OPTR_EXEC_MODEL_STREAM) {
    return pOperator->getStreamResFn(pOperator, newgroup);
5163 5164 5165 5166 5167
  } else {
    pTaskInfo->code = pOperator->_openFn(pOperator);
    if (pTaskInfo->code != TSDB_CODE_SUCCESS) {
      return NULL;
    }
5168

5169
    blockDataEnsureCapacity(pBlock, pOperator->resultInfo.capacity);
dengyihao's avatar
dengyihao 已提交
5170 5171
    doBuildResultDatablock(pBlock, &pInfo->groupResInfo, pOperator->pExpr, pInfo->aggSup.pResultBuf,
                           pInfo->binfo.rowCellInfoOffset, pInfo->binfo.pCtx);
5172

5173
    if (pBlock->info.rows == 0 || !hasRemainDataInCurrentGroup(&pInfo->groupResInfo)) {
5174 5175
      doSetOperatorCompleted(pOperator);
    }
5176

5177
    return pBlock->info.rows == 0 ? NULL : pBlock;
5178 5179 5180
  }
}

dengyihao's avatar
dengyihao 已提交
5181
static SSDataBlock* doStreamIntervalAgg(SOperatorInfo* pOperator, bool* newgroup) {
5182
  STableIntervalOperatorInfo* pInfo = pOperator->info;
dengyihao's avatar
dengyihao 已提交
5183
  int32_t                     order = TSDB_ORDER_ASC;
5184 5185 5186 5187 5188 5189

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

  if (pOperator->status == OP_RES_TO_RETURN) {
dengyihao's avatar
dengyihao 已提交
5190 5191
    doBuildResultDatablock(pInfo->binfo.pRes, &pInfo->groupResInfo, pOperator->pExpr, pInfo->aggSup.pResultBuf,
                           pInfo->binfo.rowCellInfoOffset, pInfo->binfo.pCtx);
5192 5193 5194
    if (pInfo->binfo.pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pInfo->groupResInfo)) {
      pOperator->status = OP_EXEC_DONE;
    }
5195
    return pInfo->binfo.pRes->info.rows == 0 ? NULL : pInfo->binfo.pRes;
5196 5197 5198
  }

  //  STimeWindow win = {0};
5199
  *newgroup = false;
5200 5201 5202 5203 5204 5205
  SOperatorInfo* downstream = pOperator->pDownstream[0];

  SArray* pUpdated = NULL;

  while (1) {
    publishOperatorProfEvent(downstream, QUERY_PROF_BEFORE_OPERATOR_EXEC);
5206
    SSDataBlock* pBlock = downstream->getNextFn(downstream, newgroup);
5207 5208 5209 5210 5211 5212
    publishOperatorProfEvent(downstream, QUERY_PROF_AFTER_OPERATOR_EXEC);

    if (pBlock == NULL) {
      break;
    }

dengyihao's avatar
dengyihao 已提交
5213 5214
    // The timewindows that overlaps the timestamps of the input pBlock need to be recalculated and return to the
    // caller. Note that all the time window are not close till now.
5215 5216 5217

    //    setTagValue(pOperator, pRuntimeEnv->current->pTable, pInfo->pCtx, pOperator->numOfOutput);
    // the pDataBlock are always the same one, no need to call this again
5218
    setInputDataBlock(pOperator, pInfo->binfo.pCtx, pBlock, order, true);
5219 5220 5221
    pUpdated = hashIntervalAgg(pOperator, &pInfo->binfo.resultRowInfo, pBlock, 0);
  }

dengyihao's avatar
dengyihao 已提交
5222 5223
  finalizeUpdatedResult(pInfo->binfo.pCtx, pOperator->numOfOutput, pInfo->aggSup.pResultBuf, pUpdated,
                        pInfo->binfo.rowCellInfoOffset);
5224

H
Haojun Liao 已提交
5225
  initMultiResInfoFromArrayList(&pInfo->groupResInfo, pUpdated);
5226
  blockDataEnsureCapacity(pInfo->binfo.pRes, pOperator->resultInfo.capacity);
dengyihao's avatar
dengyihao 已提交
5227 5228
  doBuildResultDatablock(pInfo->binfo.pRes, &pInfo->groupResInfo, pOperator->pExpr, pInfo->aggSup.pResultBuf,
                         pInfo->binfo.rowCellInfoOffset, pInfo->binfo.pCtx);
5229 5230 5231 5232 5233 5234 5235

  ASSERT(pInfo->binfo.pRes->info.rows > 0);
  pOperator->status = OP_RES_TO_RETURN;

  return pInfo->binfo.pRes->info.rows == 0 ? NULL : pInfo->binfo.pRes;
}

dengyihao's avatar
dengyihao 已提交
5236
static SSDataBlock* doAllIntervalAgg(SOperatorInfo* pOperator, bool* newgroup) {
5237 5238 5239 5240
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

5241
  STimeSliceOperatorInfo* pSliceInfo = pOperator->info;
5242
  if (pOperator->status == OP_RES_TO_RETURN) {
5243
    //    doBuildResultDatablock(&pRuntimeEnv->groupResInfo, pRuntimeEnv, pIntervalInfo->pRes);
5244
    if (pSliceInfo->binfo.pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pSliceInfo->groupResInfo)) {
5245 5246 5247
      doSetOperatorCompleted(pOperator);
    }

5248
    return pSliceInfo->binfo.pRes;
5249 5250
  }

dengyihao's avatar
dengyihao 已提交
5251 5252
  int32_t order = TSDB_ORDER_ASC;
  //  STimeWindow win = pQueryAttr->window;
H
Haojun Liao 已提交
5253
  SOperatorInfo* downstream = pOperator->pDownstream[0];
5254

L
Liu Jicong 已提交
5255
  while (1) {
H
Haojun Liao 已提交
5256
    publishOperatorProfEvent(downstream, QUERY_PROF_BEFORE_OPERATOR_EXEC);
H
Haojun Liao 已提交
5257
    SSDataBlock* pBlock = downstream->getNextFn(downstream, newgroup);
H
Haojun Liao 已提交
5258
    publishOperatorProfEvent(downstream, QUERY_PROF_AFTER_OPERATOR_EXEC);
5259 5260 5261 5262
    if (pBlock == NULL) {
      break;
    }

L
Liu Jicong 已提交
5263
    //    setTagValue(pOperator, pRuntimeEnv->current->pTable, pIntervalInfo->pCtx, pOperator->numOfOutput);
5264
    // the pDataBlock are always the same one, no need to call this again
5265
    setInputDataBlock(pOperator, pSliceInfo->binfo.pCtx, pBlock, order, true);
dengyihao's avatar
dengyihao 已提交
5266
    //    hashAllIntervalAgg(pOperator, &pSliceInfo->binfo.resultRowInfo, pBlock, 0);
5267 5268 5269 5270
  }

  // restore the value
  pOperator->status = OP_RES_TO_RETURN;
5271
  closeAllResultRows(&pSliceInfo->binfo.resultRowInfo);
5272
  setTaskStatus(pOperator->pTaskInfo, TASK_COMPLETED);
dengyihao's avatar
dengyihao 已提交
5273
  //  finalizeQueryResult(pSliceInfo->binfo.pCtx, pOperator->numOfOutput);
5274

5275
  initGroupResInfo(&pSliceInfo->groupResInfo, &pSliceInfo->binfo.resultRowInfo);
5276
  //  doBuildResultDatablock(&pRuntimeEnv->groupResInfo, pRuntimeEnv, pSliceInfo->pRes);
5277

5278
  if (pSliceInfo->binfo.pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pSliceInfo->groupResInfo)) {
5279 5280 5281
    pOperator->status = OP_EXEC_DONE;
  }

5282
  return pSliceInfo->binfo.pRes->info.rows == 0 ? NULL : pSliceInfo->binfo.pRes;
5283 5284
}

L
Liu Jicong 已提交
5285
static SSDataBlock* doSTableIntervalAgg(SOperatorInfo* pOperator, bool* newgroup) {
5286 5287 5288 5289
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

5290
  SExecTaskInfo* pTaskInfo = pOperator->pTaskInfo;
5291

5292
  STableIntervalOperatorInfo* pInfo = pOperator->info;
5293 5294
  if (pOperator->status == OP_RES_TO_RETURN) {
    int64_t st = taosGetTimestampUs();
5295
    if (pInfo->binfo.pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pInfo->groupResInfo)) {
5296 5297
      doSetOperatorCompleted(pOperator);
    }
5298 5299

    return pInfo->binfo.pRes->info.rows == 0 ? NULL : pInfo->binfo.pRes;
5300 5301
  }

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

L
Liu Jicong 已提交
5304
  while (1) {
H
Haojun Liao 已提交
5305
    publishOperatorProfEvent(downstream, QUERY_PROF_BEFORE_OPERATOR_EXEC);
H
Haojun Liao 已提交
5306
    SSDataBlock* pBlock = downstream->getNextFn(downstream, newgroup);
H
Haojun Liao 已提交
5307
    publishOperatorProfEvent(downstream, QUERY_PROF_AFTER_OPERATOR_EXEC);
5308 5309 5310 5311 5312 5313

    if (pBlock == NULL) {
      break;
    }

    // the pDataBlock are always the same one, no need to call this again
L
Liu Jicong 已提交
5314
    //    setTagValue(pOperator, pTableQueryInfo->pTable, pIntervalInfo->pCtx, pOperator->numOfOutput);
5315
    setInputDataBlock(pOperator, pInfo->binfo.pCtx, pBlock, TSDB_ORDER_ASC, true);
5316
    STableQueryInfo* pTableQueryInfo = pInfo->pCurrent;
5317

5318
    setIntervalQueryRange(pTableQueryInfo, pBlock->info.window.skey, &pTaskInfo->window);
dengyihao's avatar
dengyihao 已提交
5319
    //    hashIntervalAgg(pOperator, &pTableQueryInfo->resInfo, pBlock, pBlock->info.groupId);
5320 5321
  }

5322 5323 5324
  closeAllResultRows(&pInfo->binfo.resultRowInfo);
  finalizeMultiTupleQueryResult(pInfo->binfo.pCtx, pOperator->numOfOutput, pInfo->aggSup.pResultBuf,
                                &pInfo->binfo.resultRowInfo, pInfo->binfo.rowCellInfoOffset);
5325

5326 5327 5328
  initGroupResInfo(&pInfo->groupResInfo, &pInfo->binfo.resultRowInfo);
  OPTR_SET_OPENED(pOperator);

5329
  blockDataEnsureCapacity(pInfo->binfo.pRes, pOperator->resultInfo.capacity);
dengyihao's avatar
dengyihao 已提交
5330 5331
  doBuildResultDatablock(pInfo->binfo.pRes, &pInfo->groupResInfo, pOperator->pExpr, pInfo->aggSup.pResultBuf,
                         pInfo->binfo.rowCellInfoOffset, pInfo->binfo.pCtx);
5332 5333 5334

  if (pInfo->binfo.pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pInfo->groupResInfo)) {
    doSetOperatorCompleted(pOperator);
5335 5336
  }

5337
  return pInfo->binfo.pRes->info.rows == 0 ? NULL : pInfo->binfo.pRes;
5338 5339
}

5340
static void doStateWindowAggImpl(SOperatorInfo* pOperator, SStateWindowOperatorInfo* pInfo, SSDataBlock* pBlock) {
dengyihao's avatar
dengyihao 已提交
5341
  SExecTaskInfo*  pTaskInfo = pOperator->pTaskInfo;
5342 5343
  SOptrBasicInfo* pBInfo = &pInfo->binfo;

5344
  SColumnInfoData* pStateColInfoData = taosArrayGet(pBlock->pDataBlock, pInfo->colIndex);
dengyihao's avatar
dengyihao 已提交
5345
  int64_t          gid = pBlock->info.groupId;
5346

5347 5348 5349 5350 5351 5352 5353 5354
  bool    masterScan = true;
  int32_t numOfOutput = pOperator->numOfOutput;

  int16_t bytes = pStateColInfoData->info.bytes;
  int16_t type = pStateColInfoData->info.type;

  SColumnInfoData* pColInfoData = taosArrayGet(pBlock->pDataBlock, 0);
  TSKEY*           tsList = (TSKEY*)pColInfoData->pData;
5355

5356 5357
  SWindowRowsSup* pRowSup = &pInfo->winSup;
  pRowSup->numOfRows = 0;
dengyihao's avatar
dengyihao 已提交
5358

5359 5360
  for (int32_t j = 0; j < pBlock->info.rows; ++j) {
    if (colDataIsNull(pStateColInfoData, pBlock->info.rows, j, pBlock->pBlockAgg)) {
5361 5362
      continue;
    }
5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375

    char* val = colDataGetData(pStateColInfoData, j);

    if (!pInfo->hasKey) {
      memcpy(pInfo->stateKey.pData, val, bytes);
      pInfo->hasKey = true;

      doKeepNewWindowStartInfo(pRowSup, tsList, j);
      doKeepTuple(pRowSup, tsList[j]);
    } else if (memcmp(pInfo->stateKey.pData, val, bytes) == 0) {
      doKeepTuple(pRowSup, tsList[j]);
      if (j == 0 && pRowSup->startRowIndex != 0) {
        pRowSup->startRowIndex = 0;
5376
      }
5377
    } else {  // a new state window started
5378
      SResultRow* pResult = NULL;
5379 5380 5381 5382 5383 5384

      // keep the time window for the closed time window.
      STimeWindow window = pRowSup->win;

      pRowSup->win.ekey = pRowSup->win.skey;
      int32_t ret = setResultOutputBufByKey_rv(&pInfo->binfo.resultRowInfo, pBlock->info.uid, &window, masterScan,
dengyihao's avatar
dengyihao 已提交
5385 5386
                                               &pResult, gid, pInfo->binfo.pCtx, numOfOutput,
                                               pInfo->binfo.rowCellInfoOffset, &pInfo->aggSup, pTaskInfo);
5387
      if (ret != TSDB_CODE_SUCCESS) {  // null data, too many state code
5388
        longjmp(pTaskInfo->env, TSDB_CODE_QRY_APP_ERROR);
5389 5390
      }

5391
      updateTimeWindowInfo(&pInfo->twAggSup.timeWindowData, &window, false);
dengyihao's avatar
dengyihao 已提交
5392 5393
      doApplyFunctions(pInfo->binfo.pCtx, &window, &pInfo->twAggSup.timeWindowData, pRowSup->startRowIndex,
                       pRowSup->numOfRows, NULL, pBlock->info.rows, numOfOutput, TSDB_ORDER_ASC);
5394 5395 5396 5397

      // here we start a new session window
      doKeepNewWindowStartInfo(pRowSup, tsList, j);
      doKeepTuple(pRowSup, tsList[j]);
5398 5399 5400 5401
    }
  }

  SResultRow* pResult = NULL;
5402
  pRowSup->win.ekey = tsList[pBlock->info.rows - 1];
dengyihao's avatar
dengyihao 已提交
5403 5404 5405
  int32_t ret = setResultOutputBufByKey_rv(&pInfo->binfo.resultRowInfo, pBlock->info.uid, &pRowSup->win, masterScan,
                                           &pResult, gid, pInfo->binfo.pCtx, numOfOutput,
                                           pInfo->binfo.rowCellInfoOffset, &pInfo->aggSup, pTaskInfo);
5406
  if (ret != TSDB_CODE_SUCCESS) {  // null data, too many state code
5407
    longjmp(pTaskInfo->env, TSDB_CODE_QRY_APP_ERROR);
5408 5409
  }

5410
  updateTimeWindowInfo(&pInfo->twAggSup.timeWindowData, &pRowSup->win, false);
dengyihao's avatar
dengyihao 已提交
5411 5412
  doApplyFunctions(pInfo->binfo.pCtx, &pRowSup->win, &pInfo->twAggSup.timeWindowData, pRowSup->startRowIndex,
                   pRowSup->numOfRows, NULL, pBlock->info.rows, numOfOutput, TSDB_ORDER_ASC);
5413 5414
}

L
Liu Jicong 已提交
5415
static SSDataBlock* doStateWindowAgg(SOperatorInfo* pOperator, bool* newgroup) {
5416 5417 5418 5419
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

5420
  SStateWindowOperatorInfo* pInfo = pOperator->info;
dengyihao's avatar
dengyihao 已提交
5421 5422
  SExecTaskInfo*            pTaskInfo = pOperator->pTaskInfo;
  SOptrBasicInfo*           pBInfo = &pInfo->binfo;
5423 5424

  if (pOperator->status == OP_RES_TO_RETURN) {
dengyihao's avatar
dengyihao 已提交
5425 5426
    doBuildResultDatablock(pBInfo->pRes, &pInfo->groupResInfo, pOperator->pExpr, pInfo->aggSup.pResultBuf,
                           pBInfo->rowCellInfoOffset, pInfo->binfo.pCtx);
5427 5428 5429 5430
    if (pBInfo->pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pInfo->groupResInfo)) {
      doSetOperatorCompleted(pOperator);
      return NULL;
    }
5431 5432 5433 5434

    return pBInfo->pRes;
  }

dengyihao's avatar
dengyihao 已提交
5435 5436
  int32_t     order = TSDB_ORDER_ASC;
  STimeWindow win = pTaskInfo->window;
H
Haojun Liao 已提交
5437

H
Haojun Liao 已提交
5438
  SOperatorInfo* downstream = pOperator->pDownstream[0];
5439
  while (1) {
H
Haojun Liao 已提交
5440
    publishOperatorProfEvent(downstream, QUERY_PROF_BEFORE_OPERATOR_EXEC);
H
Haojun Liao 已提交
5441
    SSDataBlock* pBlock = downstream->getNextFn(downstream, newgroup);
H
Haojun Liao 已提交
5442
    publishOperatorProfEvent(downstream, QUERY_PROF_AFTER_OPERATOR_EXEC);
5443 5444 5445 5446

    if (pBlock == NULL) {
      break;
    }
H
Haojun Liao 已提交
5447

5448
    setInputDataBlock(pOperator, pBInfo->pCtx, pBlock, order, true);
5449
    doStateWindowAggImpl(pOperator, pInfo, pBlock);
5450 5451 5452 5453
  }

  pOperator->status = OP_RES_TO_RETURN;
  closeAllResultRows(&pBInfo->resultRowInfo);
dengyihao's avatar
dengyihao 已提交
5454 5455
  finalizeMultiTupleQueryResult(pBInfo->pCtx, pOperator->numOfOutput, pInfo->aggSup.pResultBuf, &pBInfo->resultRowInfo,
                                pBInfo->rowCellInfoOffset);
5456

5457
  initGroupResInfo(&pInfo->groupResInfo, &pBInfo->resultRowInfo);
5458
  blockDataEnsureCapacity(pBInfo->pRes, pOperator->resultInfo.capacity);
dengyihao's avatar
dengyihao 已提交
5459 5460
  doBuildResultDatablock(pBInfo->pRes, &pInfo->groupResInfo, pOperator->pExpr, pInfo->aggSup.pResultBuf,
                         pBInfo->rowCellInfoOffset, pInfo->binfo.pCtx);
5461 5462 5463
  if (pBInfo->pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pInfo->groupResInfo)) {
    doSetOperatorCompleted(pOperator);
  }
5464

L
Liu Jicong 已提交
5465
  return pBInfo->pRes->info.rows == 0 ? NULL : pBInfo->pRes;
5466 5467
}

L
Liu Jicong 已提交
5468
static SSDataBlock* doSessionWindowAgg(SOperatorInfo* pOperator, bool* newgroup) {
5469 5470 5471 5472
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

5473
  SSessionAggOperatorInfo* pInfo = pOperator->info;
L
Liu Jicong 已提交
5474
  SOptrBasicInfo*          pBInfo = &pInfo->binfo;
5475 5476

  if (pOperator->status == OP_RES_TO_RETURN) {
dengyihao's avatar
dengyihao 已提交
5477 5478
    doBuildResultDatablock(pBInfo->pRes, &pInfo->groupResInfo, pOperator->pExpr, pInfo->aggSup.pResultBuf,
                           pBInfo->rowCellInfoOffset, pInfo->binfo.pCtx);
5479 5480 5481
    if (pBInfo->pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pInfo->groupResInfo)) {
      doSetOperatorCompleted(pOperator);
      return NULL;
5482 5483 5484 5485 5486
    }

    return pBInfo->pRes;
  }

L
Liu Jicong 已提交
5487
  int32_t        order = TSDB_ORDER_ASC;
H
Haojun Liao 已提交
5488
  SOperatorInfo* downstream = pOperator->pDownstream[0];
5489

L
Liu Jicong 已提交
5490
  while (1) {
H
Haojun Liao 已提交
5491
    publishOperatorProfEvent(downstream, QUERY_PROF_BEFORE_OPERATOR_EXEC);
H
Haojun Liao 已提交
5492
    SSDataBlock* pBlock = downstream->getNextFn(downstream, newgroup);
H
Haojun Liao 已提交
5493
    publishOperatorProfEvent(downstream, QUERY_PROF_AFTER_OPERATOR_EXEC);
5494 5495 5496 5497 5498
    if (pBlock == NULL) {
      break;
    }

    // the pDataBlock are always the same one, no need to call this again
5499
    setInputDataBlock(pOperator, pBInfo->pCtx, pBlock, order, true);
5500
    doSessionWindowAggImpl(pOperator, pInfo, pBlock);
5501 5502 5503 5504 5505
  }

  // restore the value
  pOperator->status = OP_RES_TO_RETURN;
  closeAllResultRows(&pBInfo->resultRowInfo);
dengyihao's avatar
dengyihao 已提交
5506 5507
  finalizeMultiTupleQueryResult(pBInfo->pCtx, pOperator->numOfOutput, pInfo->aggSup.pResultBuf, &pBInfo->resultRowInfo,
                                pBInfo->rowCellInfoOffset);
5508

5509
  initGroupResInfo(&pInfo->groupResInfo, &pBInfo->resultRowInfo);
5510
  blockDataEnsureCapacity(pBInfo->pRes, pOperator->resultInfo.capacity);
dengyihao's avatar
dengyihao 已提交
5511 5512
  doBuildResultDatablock(pBInfo->pRes, &pInfo->groupResInfo, pOperator->pExpr, pInfo->aggSup.pResultBuf,
                         pBInfo->rowCellInfoOffset, pInfo->binfo.pCtx);
5513 5514
  if (pBInfo->pRes->info.rows == 0 || !hasRemainDataInCurrentGroup(&pInfo->groupResInfo)) {
    doSetOperatorCompleted(pOperator);
5515 5516
  }

L
Liu Jicong 已提交
5517
  return pBInfo->pRes->info.rows == 0 ? NULL : pBInfo->pRes;
5518 5519
}

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

L
Liu Jicong 已提交
5524 5525
  int64_t ekey = Q_STATUS_EQUAL(pTaskInfo->status, TASK_COMPLETED) ? pTaskInfo->window.ekey
                                                                   : pInfo->existNewGroupBlock->info.window.ekey;
5526 5527
  taosResetFillInfo(pInfo->pFillInfo, getFillInfoStart(pInfo->pFillInfo));

5528
  taosFillSetStartInfo(pInfo->pFillInfo, pInfo->existNewGroupBlock->info.rows, ekey);
5529 5530
  taosFillSetInputDataBlock(pInfo->pFillInfo, pInfo->existNewGroupBlock);

H
Haojun Liao 已提交
5531
  doFillTimeIntervalGapsInResults(pInfo->pFillInfo, pInfo->pRes, pResultInfo->capacity, pInfo->p);
5532 5533 5534 5535
  pInfo->existNewGroupBlock = NULL;
  *newgroup = true;
}

L
Liu Jicong 已提交
5536 5537
static void doHandleRemainBlockFromNewGroup(SFillOperatorInfo* pInfo, SResultInfo* pResultInfo, bool* newgroup,
                                            SExecTaskInfo* pTaskInfo) {
5538 5539
  if (taosFillHasMoreResults(pInfo->pFillInfo)) {
    *newgroup = false;
H
Haojun Liao 已提交
5540 5541
    doFillTimeIntervalGapsInResults(pInfo->pFillInfo, pInfo->pRes, (int32_t)pResultInfo->capacity, pInfo->p);
    if (pInfo->pRes->info.rows > pResultInfo->threshold || (!pInfo->multigroupResult)) {
5542 5543 5544 5545 5546 5547
      return;
    }
  }

  // handle the cached new group data block
  if (pInfo->existNewGroupBlock) {
5548
    doHandleRemainBlockForNewGroupImpl(pInfo, pResultInfo, newgroup, pTaskInfo);
5549 5550 5551
  }
}

L
Liu Jicong 已提交
5552 5553 5554
static SSDataBlock* doFill(SOperatorInfo* pOperator, bool* newgroup) {
  SFillOperatorInfo* pInfo = pOperator->info;
  SExecTaskInfo*     pTaskInfo = pOperator->pTaskInfo;
5555

H
Haojun Liao 已提交
5556
  SResultInfo* pResultInfo = &pOperator->resultInfo;
5557 5558 5559
  SSDataBlock* pResBlock = pInfo->pRes;

  blockDataCleanup(pResBlock);
5560 5561 5562 5563
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

5564
  doHandleRemainBlockFromNewGroup(pInfo, pResultInfo, newgroup, pTaskInfo);
5565 5566
  if (pResBlock->info.rows > pResultInfo->threshold || (!pInfo->multigroupResult && pResBlock->info.rows > 0)) {
    return pResBlock;
H
Haojun Liao 已提交
5567
  }
5568

H
Haojun Liao 已提交
5569
  SOperatorInfo* pDownstream = pOperator->pDownstream[0];
L
Liu Jicong 已提交
5570
  while (1) {
H
Haojun Liao 已提交
5571 5572 5573
    publishOperatorProfEvent(pDownstream, QUERY_PROF_BEFORE_OPERATOR_EXEC);
    SSDataBlock* pBlock = pDownstream->getNextFn(pDownstream, newgroup);
    publishOperatorProfEvent(pDownstream, QUERY_PROF_AFTER_OPERATOR_EXEC);
5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584

    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
5585
      taosFillSetStartInfo(pInfo->pFillInfo, 0, pTaskInfo->window.ekey);
5586 5587 5588 5589 5590 5591 5592
    } else {
      if (pBlock == NULL) {
        if (pInfo->totalInputRows == 0) {
          pOperator->status = OP_EXEC_DONE;
          return NULL;
        }

5593
        taosFillSetStartInfo(pInfo->pFillInfo, 0, pTaskInfo->window.ekey);
5594 5595 5596 5597 5598 5599 5600
      } else {
        pInfo->totalInputRows += pBlock->info.rows;
        taosFillSetStartInfo(pInfo->pFillInfo, pBlock->info.rows, pBlock->info.window.ekey);
        taosFillSetInputDataBlock(pInfo->pFillInfo, pBlock);
      }
    }

5601
    doFillTimeIntervalGapsInResults(pInfo->pFillInfo, pResBlock, pOperator->resultInfo.capacity, pInfo->p);
5602 5603

    // current group has no more result to return
5604
    if (pResBlock->info.rows > 0) {
5605 5606
      // 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
5607 5608
      if (pResBlock->info.rows > pResultInfo->threshold || pBlock == NULL || (!pInfo->multigroupResult)) {
        return pResBlock;
5609 5610
      }

5611
      doHandleRemainBlockFromNewGroup(pInfo, pResultInfo, newgroup, pTaskInfo);
5612 5613
      if (pResBlock->info.rows > pOperator->resultInfo.threshold || pBlock == NULL) {
        return pResBlock;
5614 5615 5616
      }
    } else if (pInfo->existNewGroupBlock) {  // try next group
      assert(pBlock != NULL);
5617
      doHandleRemainBlockForNewGroupImpl(pInfo, pResultInfo, newgroup, pTaskInfo);
5618 5619
      if (pResBlock->info.rows > pResultInfo->threshold) {
        return pResBlock;
5620 5621 5622 5623 5624 5625 5626 5627
      }
    } else {
      return NULL;
    }
  }
}

// todo set the attribute of query scan count
H
Haojun Liao 已提交
5628
static int32_t getNumOfScanTimes(STaskAttr* pQueryAttr) {
L
Liu Jicong 已提交
5629
  for (int32_t i = 0; i < pQueryAttr->numOfOutput; ++i) {
5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643
    int32_t functionId = getExprFunctionId(&pQueryAttr->pExpr1[i]);
    if (functionId == FUNCTION_STDDEV || functionId == FUNCTION_PERCT) {
      return 2;
    }
  }

  return 1;
}

static void destroyOperatorInfo(SOperatorInfo* pOperator) {
  if (pOperator == NULL) {
    return;
  }

H
Haojun Liao 已提交
5644 5645
  if (pOperator->closeFn != NULL) {
    pOperator->closeFn(pOperator->info, pOperator->numOfOutput);
5646 5647
  }

H
Haojun Liao 已提交
5648
  if (pOperator->pDownstream != NULL) {
L
Liu Jicong 已提交
5649
    for (int32_t i = 0; i < pOperator->numOfDownstream; ++i) {
H
Haojun Liao 已提交
5650
      destroyOperatorInfo(pOperator->pDownstream[i]);
5651 5652
    }

wafwerar's avatar
wafwerar 已提交
5653
    taosMemoryFreeClear(pOperator->pDownstream);
H
Haojun Liao 已提交
5654
    pOperator->numOfDownstream = 0;
5655 5656
  }

wafwerar's avatar
wafwerar 已提交
5657 5658
  taosMemoryFreeClear(pOperator->info);
  taosMemoryFreeClear(pOperator);
5659 5660
}

dengyihao's avatar
dengyihao 已提交
5661 5662
int32_t doInitAggInfoSup(SAggSupporter* pAggSup, SqlFunctionCtx* pCtx, int32_t numOfOutput, size_t keyBufSize,
                         const char* pKey) {
5663 5664
  _hash_fn_t hashFn = taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY);

dengyihao's avatar
dengyihao 已提交
5665 5666
  pAggSup->resultRowSize = getResultRowSize(pCtx, numOfOutput);
  pAggSup->keyBuf = taosMemoryCalloc(1, keyBufSize + POINTER_BYTES + sizeof(int64_t));
5667
  pAggSup->pResultRowHashTable = taosHashInit(10, hashFn, true, HASH_NO_LOCK);
dengyihao's avatar
dengyihao 已提交
5668
  pAggSup->pResultRowListSet = taosHashInit(100, hashFn, false, HASH_NO_LOCK);
5669 5670 5671
  pAggSup->pResultRowArrayList = taosArrayInit(10, sizeof(SResultRowCell));

  if (pAggSup->keyBuf == NULL || pAggSup->pResultRowArrayList == NULL || pAggSup->pResultRowListSet == NULL ||
5672
      pAggSup->pResultRowHashTable == NULL) {
5673 5674 5675
    return TSDB_CODE_OUT_OF_MEMORY;
  }

H
Haojun Liao 已提交
5676 5677 5678 5679 5680
  int32_t code = createDiskbasedBuf(&pAggSup->pResultBuf, 4096, 4096 * 256, pKey, "/tmp/");
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

5681 5682 5683
  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
5684
static void cleanupAggSup(SAggSupporter* pAggSup) {
wafwerar's avatar
wafwerar 已提交
5685
  taosMemoryFreeClear(pAggSup->keyBuf);
5686 5687 5688
  taosHashCleanup(pAggSup->pResultRowHashTable);
  taosHashCleanup(pAggSup->pResultRowListSet);
  taosArrayDestroy(pAggSup->pResultRowArrayList);
H
Haojun Liao 已提交
5689
  destroyDiskbasedBuf(pAggSup->pResultBuf);
5690 5691
}

H
Haojun Liao 已提交
5692
int32_t initAggInfo(SOptrBasicInfo* pBasicInfo, SAggSupporter* pAggSup, SExprInfo* pExprInfo, int32_t numOfCols,
5693
                    SSDataBlock* pResultBlock, size_t keyBufSize, const char* pkey) {
5694
  pBasicInfo->pCtx = createSqlFunctionCtx(pExprInfo, numOfCols, &pBasicInfo->rowCellInfoOffset);
H
Haojun Liao 已提交
5695 5696
  pBasicInfo->pRes = pResultBlock;

5697
  doInitAggInfoSup(pAggSup, pBasicInfo->pCtx, numOfCols, keyBufSize, pkey);
5698
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
5699 5700
}

5701 5702 5703 5704 5705 5706 5707 5708 5709
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;
  }
}

H
Haojun Liao 已提交
5710
static STableQueryInfo* initTableQueryInfo(const STableGroupInfo* pTableGroupInfo) {
wafwerar's avatar
wafwerar 已提交
5711
  STableQueryInfo* pTableQueryInfo = taosMemoryCalloc(pTableGroupInfo->numOfTables, sizeof(STableQueryInfo));
H
Haojun Liao 已提交
5712 5713
  if (pTableQueryInfo == NULL) {
    return NULL;
H
Haojun Liao 已提交
5714
  }
H
Haojun Liao 已提交
5715 5716

  int32_t index = 0;
L
Liu Jicong 已提交
5717
  for (int32_t i = 0; i < taosArrayGetSize(pTableGroupInfo->pGroupList); ++i) {
H
Haojun Liao 已提交
5718
    SArray* pa = taosArrayGetP(pTableGroupInfo->pGroupList, i);
L
Liu Jicong 已提交
5719
    for (int32_t j = 0; j < taosArrayGetSize(pa); ++j) {
H
Haojun Liao 已提交
5720 5721
      STableKeyInfo* pk = taosArrayGet(pa, j);

H
Haojun Liao 已提交
5722
      STableQueryInfo* pTQueryInfo = &pTableQueryInfo[index++];
dengyihao's avatar
dengyihao 已提交
5723
      //      pTQueryInfo->uid = pk->uid;
L
Liu Jicong 已提交
5724
      pTQueryInfo->lastKey = pk->lastKey;
dengyihao's avatar
dengyihao 已提交
5725
      //      pTQueryInfo->groupIndex = i;
H
Haojun Liao 已提交
5726 5727
    }
  }
H
Haojun Liao 已提交
5728 5729

  STimeWindow win = {0, INT64_MAX};
H
Haojun Liao 已提交
5730 5731
  createTableQueryInfo(pTableQueryInfo, false, win);
  return pTableQueryInfo;
H
Haojun Liao 已提交
5732 5733
}

L
Liu Jicong 已提交
5734
SOperatorInfo* createAggregateOperatorInfo(SOperatorInfo* downstream, SExprInfo* pExprInfo, int32_t numOfCols,
5735
                                           SSDataBlock* pResultBlock, SExprInfo* pScalarExprInfo,
dengyihao's avatar
dengyihao 已提交
5736 5737
                                           int32_t numOfScalarExpr, SExecTaskInfo* pTaskInfo,
                                           const STableGroupInfo* pTableGroupInfo) {
wafwerar's avatar
wafwerar 已提交
5738
  SAggOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SAggOperatorInfo));
L
Liu Jicong 已提交
5739
  SOperatorInfo*    pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
H
Haojun Liao 已提交
5740 5741 5742
  if (pInfo == NULL || pOperator == NULL) {
    goto _error;
  }
H
Haojun Liao 已提交
5743

H
Haojun Liao 已提交
5744
  int32_t numOfRows = 1;
dengyihao's avatar
dengyihao 已提交
5745
  size_t  keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
5746 5747

  initResultSizeInfo(pOperator, numOfRows);
dengyihao's avatar
dengyihao 已提交
5748 5749
  int32_t code =
      initAggInfo(&pInfo->binfo, &pInfo->aggSup, pExprInfo, numOfCols, pResultBlock, keyBufSize, pTaskInfo->id.str);
H
Haojun Liao 已提交
5750 5751
  pInfo->pTableQueryInfo = initTableQueryInfo(pTableGroupInfo);
  if (code != TSDB_CODE_SUCCESS || pInfo->pTableQueryInfo == NULL) {
H
Haojun Liao 已提交
5752 5753
    goto _error;
  }
H
Haojun Liao 已提交
5754

H
Haojun Liao 已提交
5755 5756 5757 5758 5759 5760 5761
  pOperator->resultInfo.capacity = 4096;
  pOperator->resultInfo.threshold = 4096 * 0.75;

  int32_t numOfGroup = 10;  // todo replaced with true value
  pInfo->groupId = INT32_MIN;
  initResultRowInfo(&pInfo->binfo.resultRowInfo, numOfGroup);

5762 5763
  pInfo->pScalarExprInfo = pScalarExprInfo;
  pInfo->numOfScalarExpr = numOfScalarExpr;
5764 5765 5766
  if (pInfo->pScalarExprInfo != NULL) {
    pInfo->pScalarCtx = createSqlFunctionCtx(pScalarExprInfo, numOfCols, &pInfo->rowCellInfoOffset);
  }
5767

dengyihao's avatar
dengyihao 已提交
5768
  pOperator->name = "TableAggregate";
X
Xiaoyu Wang 已提交
5769
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_AGG;
5770
  pOperator->blockingOptr = true;
dengyihao's avatar
dengyihao 已提交
5771 5772 5773 5774 5775 5776 5777 5778
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
  pOperator->pExpr = pExprInfo;
  pOperator->numOfOutput = numOfCols;
  pOperator->pTaskInfo = pTaskInfo;
  pOperator->_openFn = doOpenAggregateOptr;
  pOperator->getNextFn = getAggregateResult;
  pOperator->closeFn = destroyAggOperatorInfo;
H
Haojun Liao 已提交
5779

wmmhello's avatar
wmmhello 已提交
5780 5781
  pOperator->encodeResultRow = aggEncodeResultRow;
  pOperator->decodeResultRow = aggDecodeResultRow;
H
Haojun Liao 已提交
5782 5783 5784 5785 5786

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

  return pOperator;
L
Liu Jicong 已提交
5789
_error:
H
Haojun Liao 已提交
5790
  destroyAggOperatorInfo(pInfo, numOfCols);
wafwerar's avatar
wafwerar 已提交
5791 5792
  taosMemoryFreeClear(pInfo);
  taosMemoryFreeClear(pOperator);
H
Haojun Liao 已提交
5793 5794
  pTaskInfo->code = TSDB_CODE_OUT_OF_MEMORY;
  return NULL;
5795 5796
}

H
Haojun Liao 已提交
5797
void doDestroyBasicInfo(SOptrBasicInfo* pInfo, int32_t numOfOutput) {
5798 5799
  assert(pInfo != NULL);

5800
  destroySqlFunctionCtx(pInfo->pCtx, numOfOutput);
wafwerar's avatar
wafwerar 已提交
5801
  taosMemoryFreeClear(pInfo->rowCellInfoOffset);
5802 5803

  cleanupResultRowInfo(&pInfo->resultRowInfo);
H
Haojun Liao 已提交
5804
  pInfo->pRes = blockDataDestroy(pInfo->pRes);
5805 5806
}

H
Haojun Liao 已提交
5807
void destroyBasicOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5808
  SOptrBasicInfo* pInfo = (SOptrBasicInfo*)param;
5809 5810
  doDestroyBasicInfo(pInfo, numOfOutput);
}
H
Haojun Liao 已提交
5811 5812

void destroyStateWindowOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5813
  SStateWindowOperatorInfo* pInfo = (SStateWindowOperatorInfo*)param;
5814
  doDestroyBasicInfo(&pInfo->binfo, numOfOutput);
5815
  taosMemoryFreeClear(pInfo->stateKey.pData);
5816
}
H
Haojun Liao 已提交
5817 5818

void destroyAggOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5819
  SAggOperatorInfo* pInfo = (SAggOperatorInfo*)param;
5820 5821
  doDestroyBasicInfo(&pInfo->binfo, numOfOutput);
}
5822

H
Haojun Liao 已提交
5823
void destroyIntervalOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5824
  STableIntervalOperatorInfo* pInfo = (STableIntervalOperatorInfo*)param;
H
Haojun Liao 已提交
5825 5826 5827 5828 5829
  doDestroyBasicInfo(&pInfo->binfo, numOfOutput);
  cleanupAggSup(&pInfo->aggSup);
}

void destroySWindowOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5830
  SSessionAggOperatorInfo* pInfo = (SSessionAggOperatorInfo*)param;
5831 5832 5833
  doDestroyBasicInfo(&pInfo->binfo, numOfOutput);
}

H
Haojun Liao 已提交
5834
void destroySFillOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5835
  SFillOperatorInfo* pInfo = (SFillOperatorInfo*)param;
5836
  pInfo->pFillInfo = taosDestroyFillInfo(pInfo->pFillInfo);
H
Haojun Liao 已提交
5837
  pInfo->pRes = blockDataDestroy(pInfo->pRes);
wafwerar's avatar
wafwerar 已提交
5838
  taosMemoryFreeClear(pInfo->p);
5839 5840
}

H
Haojun Liao 已提交
5841
static void destroyProjectOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5842
  SProjectOperatorInfo* pInfo = (SProjectOperatorInfo*)param;
5843 5844 5845
  doDestroyBasicInfo(&pInfo->binfo, numOfOutput);
}

H
Haojun Liao 已提交
5846
static void destroyTagScanOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5847
  STagScanInfo* pInfo = (STagScanInfo*)param;
H
Haojun Liao 已提交
5848
  pInfo->pRes = blockDataDestroy(pInfo->pRes);
5849 5850
}

H
Haojun Liao 已提交
5851
static void destroyOrderOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5852
  SSortOperatorInfo* pInfo = (SSortOperatorInfo*)param;
H
Haojun Liao 已提交
5853 5854
  pInfo->pDataBlock = blockDataDestroy(pInfo->pDataBlock);

H
Haojun Liao 已提交
5855
  taosArrayDestroy(pInfo->pSortInfo);
5856
  taosArrayDestroy(pInfo->inputSlotMap);
5857 5858
}

H
Haojun Liao 已提交
5859
void destroyExchangeOperatorInfo(void* param, int32_t numOfOutput) {
L
Liu Jicong 已提交
5860
  SExchangeInfo* pExInfo = (SExchangeInfo*)param;
H
Haojun Liao 已提交
5861 5862 5863 5864 5865 5866 5867 5868 5869
  taosArrayDestroy(pExInfo->pSources);
  taosArrayDestroy(pExInfo->pSourceDataInfo);
  if (pExInfo->pResult != NULL) {
    blockDataDestroy(pExInfo->pResult);
  }

  tsem_destroy(&pExInfo->ready);
}

H
Haojun Liao 已提交
5870 5871
static SArray* setRowTsColumnOutputInfo(SqlFunctionCtx* pCtx, int32_t numOfCols) {
  SArray* pList = taosArrayInit(4, sizeof(int32_t));
dengyihao's avatar
dengyihao 已提交
5872
  for (int32_t i = 0; i < numOfCols; ++i) {
H
Haojun Liao 已提交
5873 5874 5875 5876 5877 5878 5879 5880
    if (fmIsPseudoColumnFunc(pCtx[i].functionId)) {
      taosArrayPush(pList, &i);
    }
  }

  return pList;
}

L
Liu Jicong 已提交
5881
SOperatorInfo* createProjectOperatorInfo(SOperatorInfo* downstream, SExprInfo* pExprInfo, int32_t num,
dengyihao's avatar
dengyihao 已提交
5882 5883
                                         SSDataBlock* pResBlock, SLimit* pLimit, SLimit* pSlimit,
                                         SExecTaskInfo* pTaskInfo) {
wafwerar's avatar
wafwerar 已提交
5884
  SProjectOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SProjectOperatorInfo));
L
Liu Jicong 已提交
5885
  SOperatorInfo*        pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
H
Haojun Liao 已提交
5886 5887 5888
  if (pInfo == NULL || pOperator == NULL) {
    goto _error;
  }
5889

dengyihao's avatar
dengyihao 已提交
5890 5891 5892
  pInfo->limit = *pLimit;
  pInfo->slimit = *pSlimit;
  pInfo->curOffset = pLimit->offset;
H
Haojun Liao 已提交
5893 5894
  pInfo->curSOffset = pSlimit->offset;

H
Haojun Liao 已提交
5895
  pInfo->binfo.pRes = pResBlock;
H
Haojun Liao 已提交
5896 5897 5898

  int32_t numOfCols = num;
  int32_t numOfRows = 4096;
dengyihao's avatar
dengyihao 已提交
5899
  size_t  keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
5900 5901 5902

  initResultSizeInfo(pOperator, numOfRows);
  initAggInfo(&pInfo->binfo, &pInfo->aggSup, pExprInfo, numOfCols, pResBlock, keyBufSize, pTaskInfo->id.str);
H
Haojun Liao 已提交
5903
  setFunctionResultOutput(&pInfo->binfo, &pInfo->aggSup, MAIN_SCAN, pTaskInfo);
H
Haojun Liao 已提交
5904
  pInfo->pPseudoColInfo = setRowTsColumnOutputInfo(pInfo->binfo.pCtx, numOfCols);
5905

dengyihao's avatar
dengyihao 已提交
5906
  pOperator->name = "ProjectOperator";
H
Haojun Liao 已提交
5907
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_PROJECT;
5908
  pOperator->blockingOptr = false;
dengyihao's avatar
dengyihao 已提交
5909 5910 5911 5912 5913 5914 5915
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
  pOperator->pExpr = pExprInfo;
  pOperator->numOfOutput = num;
  pOperator->_openFn = operatorDummyOpenFn;
  pOperator->getNextFn = doProjectOperation;
  pOperator->closeFn = destroyProjectOperatorInfo;
L
Liu Jicong 已提交
5916 5917

  pOperator->pTaskInfo = pTaskInfo;
5918
  int32_t code = appendDownstream(pOperator, &downstream, 1);
H
Haojun Liao 已提交
5919
  if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
5920 5921
    goto _error;
  }
5922 5923

  return pOperator;
H
Haojun Liao 已提交
5924

L
Liu Jicong 已提交
5925
_error:
H
Haojun Liao 已提交
5926 5927
  pTaskInfo->code = TSDB_CODE_OUT_OF_MEMORY;
  return NULL;
5928 5929
}

L
Liu Jicong 已提交
5930
SOperatorInfo* createIntervalOperatorInfo(SOperatorInfo* downstream, SExprInfo* pExprInfo, int32_t numOfCols,
5931
                                          SSDataBlock* pResBlock, SInterval* pInterval, int32_t primaryTsSlotId,
dengyihao's avatar
dengyihao 已提交
5932 5933
                                          STimeWindowAggSupp* pTwAggSupp, const STableGroupInfo* pTableGroupInfo,
                                          SExecTaskInfo* pTaskInfo) {
wafwerar's avatar
wafwerar 已提交
5934
  STableIntervalOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(STableIntervalOperatorInfo));
L
Liu Jicong 已提交
5935
  SOperatorInfo*              pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
H
Haojun Liao 已提交
5936 5937 5938
  if (pInfo == NULL || pOperator == NULL) {
    goto _error;
  }
H
Haojun Liao 已提交
5939

dengyihao's avatar
dengyihao 已提交
5940 5941 5942 5943 5944
  pInfo->order = TSDB_ORDER_ASC;
  pInfo->interval = *pInterval;
  pInfo->execModel = pTaskInfo->execModel;
  pInfo->win = pTaskInfo->window;
  pInfo->twAggSup = *pTwAggSupp;
5945
  pInfo->primaryTsIndex = primaryTsSlotId;
5946

5947
  int32_t numOfRows = 4096;
dengyihao's avatar
dengyihao 已提交
5948
  size_t  keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
5949 5950

  initResultSizeInfo(pOperator, numOfRows);
dengyihao's avatar
dengyihao 已提交
5951 5952
  int32_t code =
      initAggInfo(&pInfo->binfo, &pInfo->aggSup, pExprInfo, numOfCols, pResBlock, keyBufSize, pTaskInfo->id.str);
5953
  initExecTimeWindowInfo(&pInfo->twAggSup.timeWindowData, &pInfo->win);
5954

L
Liu Jicong 已提交
5955 5956
  //  pInfo->pTableQueryInfo = initTableQueryInfo(pTableGroupInfo);
  if (code != TSDB_CODE_SUCCESS /* || pInfo->pTableQueryInfo == NULL*/) {
H
Haojun Liao 已提交
5957 5958
    goto _error;
  }
H
Haojun Liao 已提交
5959 5960

  initResultRowInfo(&pInfo->binfo.resultRowInfo, (int32_t)1);
5961

dengyihao's avatar
dengyihao 已提交
5962
  pOperator->name = "TimeIntervalAggOperator";
H
Haojun Liao 已提交
5963
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_INTERVAL;
5964
  pOperator->blockingOptr = true;
dengyihao's avatar
dengyihao 已提交
5965 5966 5967 5968 5969 5970 5971 5972 5973
  pOperator->status = OP_NOT_OPENED;
  pOperator->pExpr = pExprInfo;
  pOperator->pTaskInfo = pTaskInfo;
  pOperator->numOfOutput = numOfCols;
  pOperator->info = pInfo;
  pOperator->_openFn = doOpenIntervalAgg;
  pOperator->getNextFn = doBuildIntervalResult;
  pOperator->getStreamResFn = doStreamIntervalAgg;
  pOperator->closeFn = destroyIntervalOperatorInfo;
5974 5975
  pOperator->encodeResultRow = aggEncodeResultRow;
  pOperator->decodeResultRow = aggDecodeResultRow;
5976

H
Haojun Liao 已提交
5977
  code = appendDownstream(pOperator, &downstream, 1);
H
Haojun Liao 已提交
5978 5979 5980 5981
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }

5982
  return pOperator;
H
Haojun Liao 已提交
5983

L
Liu Jicong 已提交
5984
_error:
H
Haojun Liao 已提交
5985
  destroyIntervalOperatorInfo(pInfo, numOfCols);
wafwerar's avatar
wafwerar 已提交
5986 5987
  taosMemoryFreeClear(pInfo);
  taosMemoryFreeClear(pOperator);
H
Haojun Liao 已提交
5988 5989
  pTaskInfo->code = code;
  return NULL;
5990 5991
}

dengyihao's avatar
dengyihao 已提交
5992 5993
SOperatorInfo* createTimeSliceOperatorInfo(SOperatorInfo* downstream, SExprInfo* pExprInfo, int32_t numOfCols,
                                           SSDataBlock* pResultBlock, SExecTaskInfo* pTaskInfo) {
5994
  STimeSliceOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(STimeSliceOperatorInfo));
dengyihao's avatar
dengyihao 已提交
5995
  SOperatorInfo*          pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
5996 5997 5998
  if (pOperator == NULL || pInfo == NULL) {
    goto _error;
  }
5999

H
Haojun Liao 已提交
6000
  initResultRowInfo(&pInfo->binfo.resultRowInfo, 8);
6001

dengyihao's avatar
dengyihao 已提交
6002
  pOperator->name = "TimeSliceOperator";
L
Liu Jicong 已提交
6003
  //  pOperator->operatorType = OP_AllTimeWindow;
6004
  pOperator->blockingOptr = true;
dengyihao's avatar
dengyihao 已提交
6005 6006 6007 6008 6009 6010 6011
  pOperator->status = OP_NOT_OPENED;
  pOperator->pExpr = pExprInfo;
  pOperator->numOfOutput = numOfCols;
  pOperator->info = pInfo;
  pOperator->pTaskInfo = pTaskInfo;
  pOperator->getNextFn = doAllIntervalAgg;
  pOperator->closeFn = destroyBasicOperatorInfo;
6012

L
Liu Jicong 已提交
6013
  int32_t code = appendDownstream(pOperator, &downstream, 1);
6014
  return pOperator;
6015

dengyihao's avatar
dengyihao 已提交
6016
_error:
6017 6018 6019 6020
  taosMemoryFree(pInfo);
  taosMemoryFree(pOperator);
  pTaskInfo->code = TSDB_CODE_OUT_OF_MEMORY;
  return NULL;
6021 6022
}

dengyihao's avatar
dengyihao 已提交
6023 6024 6025
SOperatorInfo* createStatewindowOperatorInfo(SOperatorInfo* downstream, SExprInfo* pExpr, int32_t numOfCols,
                                             SSDataBlock* pResBlock, STimeWindowAggSupp* pTwAggSup,
                                             SExecTaskInfo* pTaskInfo) {
wafwerar's avatar
wafwerar 已提交
6026
  SStateWindowOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SStateWindowOperatorInfo));
dengyihao's avatar
dengyihao 已提交
6027
  SOperatorInfo*            pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
6028 6029 6030
  if (pInfo == NULL || pOperator == NULL) {
    goto _error;
  }
H
Haojun Liao 已提交
6031

L
Liu Jicong 已提交
6032
  pInfo->colIndex = -1;
6033
  size_t keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
6034 6035 6036

  initResultSizeInfo(pOperator, 4096);
  initAggInfo(&pInfo->binfo, &pInfo->aggSup, pExpr, numOfCols, pResBlock, keyBufSize, pTaskInfo->id.str);
6037
  initResultRowInfo(&pInfo->binfo.resultRowInfo, 8);
6038

6039 6040 6041
  pInfo->twAggSup = *pTwAggSup;
  initExecTimeWindowInfo(&pInfo->twAggSup.timeWindowData, &pTaskInfo->window);

dengyihao's avatar
dengyihao 已提交
6042
  pOperator->name = "StateWindowOperator";
6043
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_STATE_WINDOW;
6044
  pOperator->blockingOptr = true;
dengyihao's avatar
dengyihao 已提交
6045 6046 6047 6048 6049 6050 6051 6052
  pOperator->status = OP_NOT_OPENED;
  pOperator->pExpr = pExpr;
  pOperator->numOfOutput = numOfCols;

  pOperator->pTaskInfo = pTaskInfo;
  pOperator->info = pInfo;
  pOperator->getNextFn = doStateWindowAgg;
  pOperator->closeFn = destroyStateWindowOperatorInfo;
6053 6054
  pOperator->encodeResultRow = aggEncodeResultRow;
  pOperator->decodeResultRow = aggDecodeResultRow;
6055

H
Haojun Liao 已提交
6056
  int32_t code = appendDownstream(pOperator, &downstream, 1);
6057
  return pOperator;
6058

dengyihao's avatar
dengyihao 已提交
6059
_error:
6060 6061
  pTaskInfo->code = TSDB_CODE_SUCCESS;
  return NULL;
6062 6063
}

L
Liu Jicong 已提交
6064
SOperatorInfo* createSessionAggOperatorInfo(SOperatorInfo* downstream, SExprInfo* pExprInfo, int32_t numOfCols,
dengyihao's avatar
dengyihao 已提交
6065 6066
                                            SSDataBlock* pResBlock, int64_t gap, STimeWindowAggSupp* pTwAggSupp,
                                            SExecTaskInfo* pTaskInfo) {
wafwerar's avatar
wafwerar 已提交
6067
  SSessionAggOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SSessionAggOperatorInfo));
L
Liu Jicong 已提交
6068
  SOperatorInfo*           pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
H
Haojun Liao 已提交
6069 6070 6071
  if (pInfo == NULL || pOperator == NULL) {
    goto _error;
  }
H
Haojun Liao 已提交
6072

H
Haojun Liao 已提交
6073
  int32_t numOfRows = 4096;
dengyihao's avatar
dengyihao 已提交
6074
  size_t  keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
6075 6076

  initResultSizeInfo(pOperator, numOfRows);
dengyihao's avatar
dengyihao 已提交
6077 6078
  int32_t code =
      initAggInfo(&pInfo->binfo, &pInfo->aggSup, pExprInfo, numOfCols, pResBlock, keyBufSize, pTaskInfo->id.str);
H
Haojun Liao 已提交
6079 6080 6081
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
6082

6083
  pInfo->twAggSup = *pTwAggSupp;
H
Haojun Liao 已提交
6084
  initResultRowInfo(&pInfo->binfo.resultRowInfo, 8);
6085
  initExecTimeWindowInfo(&pInfo->twAggSup.timeWindowData, &pTaskInfo->window);
6086

dengyihao's avatar
dengyihao 已提交
6087 6088 6089 6090 6091
  pInfo->gap = gap;
  pInfo->binfo.pRes = pResBlock;
  pInfo->winSup.prevTs = INT64_MIN;
  pInfo->reptScan = false;
  pOperator->name = "SessionWindowAggOperator";
H
Haojun Liao 已提交
6092
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_SESSION_WINDOW;
6093
  pOperator->blockingOptr = true;
dengyihao's avatar
dengyihao 已提交
6094 6095 6096 6097 6098 6099
  pOperator->status = OP_NOT_OPENED;
  pOperator->pExpr = pExprInfo;
  pOperator->numOfOutput = numOfCols;
  pOperator->info = pInfo;
  pOperator->getNextFn = doSessionWindowAgg;
  pOperator->closeFn = destroySWindowOperatorInfo;
6100 6101
  pOperator->encodeResultRow = aggEncodeResultRow;
  pOperator->decodeResultRow = aggDecodeResultRow;
dengyihao's avatar
dengyihao 已提交
6102
  pOperator->pTaskInfo = pTaskInfo;
6103

H
Haojun Liao 已提交
6104
  code = appendDownstream(pOperator, &downstream, 1);
6105
  return pOperator;
H
Haojun Liao 已提交
6106

L
Liu Jicong 已提交
6107
_error:
H
Haojun Liao 已提交
6108 6109 6110 6111
  if (pInfo != NULL) {
    destroySWindowOperatorInfo(pInfo, numOfCols);
  }

wafwerar's avatar
wafwerar 已提交
6112 6113
  taosMemoryFreeClear(pInfo);
  taosMemoryFreeClear(pOperator);
H
Haojun Liao 已提交
6114 6115
  pTaskInfo->code = code;
  return NULL;
6116 6117
}

H
Haojun Liao 已提交
6118
static int32_t initFillInfo(SFillOperatorInfo* pInfo, SExprInfo* pExpr, int32_t numOfCols, int64_t* fillVal,
L
Liu Jicong 已提交
6119
                            STimeWindow win, int32_t capacity, const char* id, SInterval* pInterval, int32_t fillType) {
6120
  SFillColInfo* pColInfo = createFillColInfo(pExpr, numOfCols, NULL);
H
Haojun Liao 已提交
6121 6122 6123

  // TODO set correct time precision
  STimeWindow w = TSWINDOW_INITIALIZER;
6124
  getAlignQueryTimeWindow(pInterval, TSDB_TIME_PRECISION_MILLI, win.skey, &w);
H
Haojun Liao 已提交
6125 6126

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

wafwerar's avatar
wafwerar 已提交
6129
  pInfo->p = taosMemoryCalloc(numOfCols, POINTER_BYTES);
H
Haojun Liao 已提交
6130 6131 6132 6133 6134 6135 6136 6137

  if (pInfo->pFillInfo == NULL || pInfo->p == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  } else {
    return TSDB_CODE_SUCCESS;
  }
}

L
Liu Jicong 已提交
6138 6139 6140
SOperatorInfo* createFillOperatorInfo(SOperatorInfo* downstream, SExprInfo* pExpr, int32_t numOfCols,
                                      SInterval* pInterval, SSDataBlock* pResBlock, int32_t fillType, char* fillVal,
                                      bool multigroupResult, SExecTaskInfo* pTaskInfo) {
wafwerar's avatar
wafwerar 已提交
6141
  SFillOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SFillOperatorInfo));
L
Liu Jicong 已提交
6142
  SOperatorInfo*     pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
H
Haojun Liao 已提交
6143

L
Liu Jicong 已提交
6144
  pInfo->pRes = pResBlock;
6145
  pInfo->multigroupResult = multigroupResult;
L
Liu Jicong 已提交
6146
  pInfo->intervalInfo = *pInterval;
6147

6148 6149
  int32_t type = TSDB_FILL_NONE;
  switch (fillType) {
dengyihao's avatar
dengyihao 已提交
6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167
    case FILL_MODE_PREV:
      type = TSDB_FILL_PREV;
      break;
    case FILL_MODE_NONE:
      type = TSDB_FILL_NONE;
      break;
    case FILL_MODE_NULL:
      type = TSDB_FILL_NULL;
      break;
    case FILL_MODE_NEXT:
      type = TSDB_FILL_NEXT;
      break;
    case FILL_MODE_VALUE:
      type = TSDB_FILL_SET_VALUE;
      break;
    case FILL_MODE_LINEAR:
      type = TSDB_FILL_LINEAR;
      break;
6168 6169 6170 6171
    default:
      type = TSDB_FILL_NONE;
  }

H
Haojun Liao 已提交
6172
  SResultInfo* pResultInfo = &pOperator->resultInfo;
6173 6174 6175 6176
  initResultSizeInfo(pOperator, 4096);

  int32_t code = initFillInfo(pInfo, pExpr, numOfCols, (int64_t*)fillVal, pTaskInfo->window, pResultInfo->capacity,
                              pTaskInfo->id.str, pInterval, type);
6177 6178 6179
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
  }
6180

dengyihao's avatar
dengyihao 已提交
6181
  pOperator->name = "FillOperator";
6182
  pOperator->blockingOptr = false;
dengyihao's avatar
dengyihao 已提交
6183
  pOperator->status = OP_NOT_OPENED;
L
Liu Jicong 已提交
6184
  //  pOperator->operatorType = OP_Fill;
dengyihao's avatar
dengyihao 已提交
6185 6186 6187 6188 6189 6190
  pOperator->pExpr = pExpr;
  pOperator->numOfOutput = numOfCols;
  pOperator->info = pInfo;
  pOperator->_openFn = operatorDummyOpenFn;
  pOperator->getNextFn = doFill;
  pOperator->pTaskInfo = pTaskInfo;
6191

L
Liu Jicong 已提交
6192
  pOperator->closeFn = destroySFillOperatorInfo;
H
Haojun Liao 已提交
6193

6194
  code = appendDownstream(pOperator, &downstream, 1);
6195
  return pOperator;
H
Haojun Liao 已提交
6196

L
Liu Jicong 已提交
6197
_error:
wafwerar's avatar
wafwerar 已提交
6198 6199
  taosMemoryFreeClear(pOperator);
  taosMemoryFreeClear(pInfo);
H
Haojun Liao 已提交
6200
  return NULL;
6201 6202
}

L
Liu Jicong 已提交
6203
static SSDataBlock* doTagScan(SOperatorInfo* pOperator, bool* newgroup) {
6204 6205 6206 6207 6208 6209
#if 0
  SOperatorInfo* pOperator = (SOperatorInfo*) param;
  if (pOperator->status == OP_EXEC_DONE) {
    return NULL;
  }

H
Haojun Liao 已提交
6210
  int32_t maxNumOfTables = (int32_t)pResultInfo->capacity;
6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231

  STagScanInfo *pInfo = pOperator->info;
  SSDataBlock  *pRes = pInfo->pRes;
  *newgroup = false;

  int32_t count = 0;
  SArray* pa = GET_TABLEGROUP(pRuntimeEnv, 0);

  int32_t functionId = getExprFunctionId(&pOperator->pExpr[0]);
  if (functionId == FUNCTION_TID_TAG) { // return the tags & table Id
    assert(pQueryAttr->numOfOutput == 1);

    SExprInfo* pExprInfo = &pOperator->pExpr[0];
    int32_t rsize = pExprInfo->base.resSchema.bytes;

    count = 0;

    int16_t bytes = pExprInfo->base.resSchema.bytes;
    int16_t type  = pExprInfo->base.resSchema.type;

    for(int32_t i = 0; i < pQueryAttr->numOfTags; ++i) {
6232
      if (pQueryAttr->tagColList[i].colId == pExprInfo->base.pColumns->info.colId) {
6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263
        bytes = pQueryAttr->tagColList[i].bytes;
        type = pQueryAttr->tagColList[i].type;
        break;
      }
    }

    SColumnInfoData* pColInfo = taosArrayGet(pRes->pDataBlock, 0);

    while(pInfo->curPos < pInfo->totalTables && count < maxNumOfTables) {
      int32_t i = pInfo->curPos++;
      STableQueryInfo *item = taosArrayGetP(pa, i);

      char *output = pColInfo->pData + count * rsize;
      varDataSetLen(output, rsize - VARSTR_HEADER_SIZE);

      output = varDataVal(output);
      STableId* id = TSDB_TABLEID(item->pTable);

      *(int16_t *)output = 0;
      output += sizeof(int16_t);

      *(int64_t *)output = id->uid;  // memory align problem, todo serialize
      output += sizeof(id->uid);

      *(int32_t *)output = id->tid;
      output += sizeof(id->tid);

      *(int32_t *)output = pQueryAttr->vgId;
      output += sizeof(pQueryAttr->vgId);

      char* data = NULL;
6264
      if (pExprInfo->base.pColumns->info.colId == TSDB_TBNAME_COLUMN_INDEX) {
6265 6266
        data = tsdbGetTableName(item->pTable);
      } else {
6267
        data = tsdbGetTableTagVal(item->pTable, pExprInfo->base.pColumns->info.colId, type, bytes);
6268 6269 6270 6271 6272 6273
      }

      doSetTagValueToResultBuf(output, data, type, bytes);
      count += 1;
    }

6274
    //qDebug("QInfo:0x%"PRIx64" create (tableId, tag) info completed, rows:%d", GET_TASKID(pRuntimeEnv), count);
6275 6276 6277 6278 6279 6280
  } else if (functionId == FUNCTION_COUNT) {// handle the "count(tbname)" query
    SColumnInfoData* pColInfo = taosArrayGet(pRes->pDataBlock, 0);
    *(int64_t*)pColInfo->pData = pInfo->totalTables;
    count = 1;

    pOperator->status = OP_EXEC_DONE;
6281
    //qDebug("QInfo:0x%"PRIx64" create count(tbname) query, res:%d rows:1", GET_TASKID(pRuntimeEnv), count);
6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294
  } else {  // return only the tags|table name etc.
    SExprInfo* pExprInfo = &pOperator->pExpr[0];  // todo use the column list instead of exprinfo

    count = 0;
    while(pInfo->curPos < pInfo->totalTables && count < maxNumOfTables) {
      int32_t i = pInfo->curPos++;

      STableQueryInfo* item = taosArrayGetP(pa, i);

      char *data = NULL, *dst = NULL;
      int16_t type = 0, bytes = 0;
      for(int32_t j = 0; j < pOperator->numOfOutput; ++j) {
        // not assign value in case of user defined constant output column
6295
        if (TSDB_COL_IS_UD_COL(pExprInfo[j].base.pColumns->flag)) {
6296 6297 6298 6299 6300 6301 6302
          continue;
        }

        SColumnInfoData* pColInfo = taosArrayGet(pRes->pDataBlock, j);
        type  = pExprInfo[j].base.resSchema.type;
        bytes = pExprInfo[j].base.resSchema.bytes;

6303
        if (pExprInfo[j].base.pColumns->info.colId == TSDB_TBNAME_COLUMN_INDEX) {
6304 6305
          data = tsdbGetTableName(item->pTable);
        } else {
6306
          data = tsdbGetTableTagVal(item->pTable, pExprInfo[j].base.pColumns->info.colId, type, bytes);
6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319
        }

        dst  = pColInfo->pData + count * pExprInfo[j].base.resSchema.bytes;
        doSetTagValueToResultBuf(dst, data, type, bytes);
      }

      count += 1;
    }

    if (pInfo->curPos >= pInfo->totalTables) {
      pOperator->status = OP_EXEC_DONE;
    }

6320
    //qDebug("QInfo:0x%"PRIx64" create tag values results completed, rows:%d", GET_TASKID(pRuntimeEnv), count);
6321 6322 6323
  }

  if (pOperator->status == OP_EXEC_DONE) {
6324
    setTaskStatus(pOperator->pRuntimeEnv, TASK_COMPLETED);
6325 6326 6327 6328 6329 6330
  }

  pRes->info.rows = count;
  return (pRes->info.rows == 0)? NULL:pInfo->pRes;

#endif
6331
  return TSDB_CODE_SUCCESS;
6332 6333
}

H
Haojun Liao 已提交
6334
SOperatorInfo* createTagScanOperatorInfo(STaskRuntimeEnv* pRuntimeEnv, SExprInfo* pExpr, int32_t numOfOutput) {
wafwerar's avatar
wafwerar 已提交
6335
  STagScanInfo* pInfo = taosMemoryCalloc(1, sizeof(STagScanInfo));
dengyihao's avatar
dengyihao 已提交
6336
  size_t        numOfGroup = GET_NUM_OF_TABLEGROUP(pRuntimeEnv);
6337 6338 6339 6340
  assert(numOfGroup == 0 || numOfGroup == 1);

  pInfo->curPos = 0;

wafwerar's avatar
wafwerar 已提交
6341
  SOperatorInfo* pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
L
Liu Jicong 已提交
6342
  pOperator->name = "SeqTableTagScan";
X
Xiaoyu Wang 已提交
6343
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_TAG_SCAN;
6344
  pOperator->blockingOptr = false;
L
Liu Jicong 已提交
6345 6346
  pOperator->status = OP_NOT_OPENED;
  pOperator->info = pInfo;
H
Haojun Liao 已提交
6347
  pOperator->getNextFn = doTagScan;
L
Liu Jicong 已提交
6348 6349
  pOperator->pExpr = pExpr;
  pOperator->numOfOutput = numOfOutput;
H
Haojun Liao 已提交
6350
  pOperator->closeFn = destroyTagScanOperatorInfo;
6351 6352 6353

  return pOperator;
}
H
Haojun Liao 已提交
6354

L
Liu Jicong 已提交
6355
static int32_t getColumnIndexInSource(SQueriedTableInfo* pTableInfo, SExprBasicInfo* pExpr, SColumnInfo* pTagCols) {
6356 6357
  int32_t j = 0;

H
Haojun Liao 已提交
6358 6359
  if (TSDB_COL_IS_TAG(pExpr->pParam[0].pCol->type)) {
    if (pExpr->pParam[0].pCol->colId == TSDB_TBNAME_COLUMN_INDEX) {
6360 6361 6362
      return TSDB_TBNAME_COLUMN_INDEX;
    }

L
Liu Jicong 已提交
6363
    while (j < pTableInfo->numOfTags) {
H
Haojun Liao 已提交
6364
      if (pExpr->pParam[0].pCol->colId == pTagCols[j].colId) {
6365 6366 6367 6368 6369 6370
        return j;
      }

      j += 1;
    }

6371
  } /*else if (TSDB_COL_IS_UD_COL(pExpr->colInfo.flag)) {  // user specified column data
6372 6373 6374 6375 6376 6377 6378 6379 6380
    return TSDB_UD_COLUMN_INDEX;
  } else {
    while (j < pTableInfo->numOfCols) {
      if (pExpr->colInfo.colId == pTableInfo->colList[j].colId) {
        return j;
      }

      j += 1;
    }
6381
  }*/
6382 6383 6384 6385

  return INT32_MIN;  // return a less than TSDB_TBNAME_COLUMN_INDEX value
}

L
Liu Jicong 已提交
6386
bool validateExprColumnInfo(SQueriedTableInfo* pTableInfo, SExprBasicInfo* pExpr, SColumnInfo* pTagCols) {
6387 6388 6389 6390
  int32_t j = getColumnIndexInSource(pTableInfo, pExpr, pTagCols);
  return j != INT32_MIN;
}

L
Liu Jicong 已提交
6391 6392
static SResSchema createResSchema(int32_t type, int32_t bytes, int32_t slotId, int32_t scale, int32_t precision,
                                  const char* name) {
H
Haojun Liao 已提交
6393
  SResSchema s = {0};
dengyihao's avatar
dengyihao 已提交
6394 6395 6396 6397
  s.scale = scale;
  s.type = type;
  s.bytes = bytes;
  s.slotId = slotId;
H
Haojun Liao 已提交
6398
  s.precision = precision;
H
Haojun Liao 已提交
6399 6400 6401 6402
  strncpy(s.name, name, tListLen(s.name));

  return s;
}
H
Haojun Liao 已提交
6403

H
Haojun Liao 已提交
6404 6405 6406 6407 6408 6409 6410
static SColumn* createColumn(int32_t blockId, int32_t slotId, SDataType* pType) {
  SColumn* pCol = taosMemoryCalloc(1, sizeof(SColumn));
  if (pCol == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

dengyihao's avatar
dengyihao 已提交
6411 6412 6413 6414 6415
  pCol->slotId = slotId;
  pCol->bytes = pType->bytes;
  pCol->type = pType->type;
  pCol->scale = pType->scale;
  pCol->precision = pType->precision;
H
Haojun Liao 已提交
6416 6417 6418 6419 6420
  pCol->dataBlockId = blockId;

  return pCol;
}

H
Haojun Liao 已提交
6421
SExprInfo* createExprInfo(SNodeList* pNodeList, SNodeList* pGroupKeys, int32_t* numOfExprs) {
H
Haojun Liao 已提交
6422
  int32_t numOfFuncs = LIST_LENGTH(pNodeList);
H
Haojun Liao 已提交
6423 6424 6425 6426
  int32_t numOfGroupKeys = 0;
  if (pGroupKeys != NULL) {
    numOfGroupKeys = LIST_LENGTH(pGroupKeys);
  }
H
Haojun Liao 已提交
6427

H
Haojun Liao 已提交
6428
  *numOfExprs = numOfFuncs + numOfGroupKeys;
wafwerar's avatar
wafwerar 已提交
6429
  SExprInfo* pExprs = taosMemoryCalloc(*numOfExprs, sizeof(SExprInfo));
H
Haojun Liao 已提交
6430

L
Liu Jicong 已提交
6431
  for (int32_t i = 0; i < (*numOfExprs); ++i) {
H
Haojun Liao 已提交
6432 6433 6434 6435 6436 6437
    STargetNode* pTargetNode = NULL;
    if (i < numOfFuncs) {
      pTargetNode = (STargetNode*)nodesListGetNode(pNodeList, i);
    } else {
      pTargetNode = (STargetNode*)nodesListGetNode(pGroupKeys, i - numOfFuncs);
    }
H
Haojun Liao 已提交
6438

6439
    SExprInfo* pExp = &pExprs[i];
H
Haojun Liao 已提交
6440

wafwerar's avatar
wafwerar 已提交
6441
    pExp->pExpr = taosMemoryCalloc(1, sizeof(tExprNode));
H
Haojun Liao 已提交
6442
    pExp->pExpr->_function.num = 1;
H
Haojun Liao 已提交
6443
    pExp->pExpr->_function.functionId = -1;
H
Haojun Liao 已提交
6444

6445
    int32_t type = nodeType(pTargetNode->pExpr);
H
Haojun Liao 已提交
6446
    // it is a project query, or group by column
6447
    if (type == QUERY_NODE_COLUMN) {
H
Haojun Liao 已提交
6448
      pExp->pExpr->nodeType = QUERY_NODE_COLUMN;
L
Liu Jicong 已提交
6449
      SColumnNode* pColNode = (SColumnNode*)pTargetNode->pExpr;
H
Haojun Liao 已提交
6450

G
Ganlin Zhao 已提交
6451 6452 6453
      pExp->base.pParam = taosMemoryCalloc(1, sizeof(SFunctParam));
      pExp->base.numOfParams = 1;

H
Haojun Liao 已提交
6454
      SDataType* pType = &pColNode->node.resType;
dengyihao's avatar
dengyihao 已提交
6455 6456
      pExp->base.resSchema = createResSchema(pType->type, pType->bytes, pTargetNode->slotId, pType->scale,
                                             pType->precision, pColNode->colName);
H
Haojun Liao 已提交
6457 6458
      pExp->base.pParam[0].pCol = createColumn(pColNode->dataBlockId, pColNode->slotId, pType);
      pExp->base.pParam[0].type = FUNC_PARAM_TYPE_COLUMN;
6459
    } else if (type == QUERY_NODE_VALUE) {
6460 6461 6462 6463 6464 6465 6466
      pExp->pExpr->nodeType = QUERY_NODE_VALUE;
      SValueNode* pValNode = (SValueNode*)pTargetNode->pExpr;

      pExp->base.pParam = taosMemoryCalloc(1, sizeof(SFunctParam));
      pExp->base.numOfParams = 1;

      SDataType* pType = &pValNode->node.resType;
dengyihao's avatar
dengyihao 已提交
6467 6468
      pExp->base.resSchema = createResSchema(pType->type, pType->bytes, pTargetNode->slotId, pType->scale,
                                             pType->precision, pValNode->node.aliasName);
6469 6470
      pExp->base.pParam[0].type = FUNC_PARAM_TYPE_VALUE;
      valueNodeToVariant(pValNode, &pExp->base.pParam[0].param);
6471
    } else if (type == QUERY_NODE_FUNCTION) {
H
Haojun Liao 已提交
6472
      pExp->pExpr->nodeType = QUERY_NODE_FUNCTION;
H
Haojun Liao 已提交
6473 6474 6475
      SFunctionNode* pFuncNode = (SFunctionNode*)pTargetNode->pExpr;

      SDataType* pType = &pFuncNode->node.resType;
dengyihao's avatar
dengyihao 已提交
6476 6477
      pExp->base.resSchema = createResSchema(pType->type, pType->bytes, pTargetNode->slotId, pType->scale,
                                             pType->precision, pFuncNode->node.aliasName);
H
Haojun Liao 已提交
6478

H
Haojun Liao 已提交
6479
      pExp->pExpr->_function.functionId = pFuncNode->funcId;
H
Haojun Liao 已提交
6480
      pExp->pExpr->_function.pFunctNode = pFuncNode;
dengyihao's avatar
dengyihao 已提交
6481 6482
      strncpy(pExp->pExpr->_function.functionName, pFuncNode->functionName,
              tListLen(pExp->pExpr->_function.functionName));
H
Haojun Liao 已提交
6483 6484

      int32_t numOfParam = LIST_LENGTH(pFuncNode->pParameterList);
G
Ganlin Zhao 已提交
6485 6486 6487 6488

      pExp->base.pParam = taosMemoryCalloc(numOfParam, sizeof(SFunctParam));
      pExp->base.numOfParams = numOfParam;

H
Haojun Liao 已提交
6489
      for (int32_t j = 0; j < numOfParam; ++j) {
6490
        SNode* p1 = nodesListGetNode(pFuncNode->pParameterList, j);
G
Ganlin Zhao 已提交
6491
        if (p1->type == QUERY_NODE_COLUMN) {
dengyihao's avatar
dengyihao 已提交
6492
          SColumnNode* pcn = (SColumnNode*)p1;
G
Ganlin Zhao 已提交
6493 6494

          pExp->base.pParam[j].type = FUNC_PARAM_TYPE_COLUMN;
H
Haojun Liao 已提交
6495
          pExp->base.pParam[j].pCol = createColumn(pcn->dataBlockId, pcn->slotId, &pcn->node.resType);
G
Ganlin Zhao 已提交
6496 6497 6498
        } else if (p1->type == QUERY_NODE_VALUE) {
          SValueNode* pvn = (SValueNode*)p1;
          pExp->base.pParam[j].type = FUNC_PARAM_TYPE_VALUE;
6499
          valueNodeToVariant(pvn, &pExp->base.pParam[j].param);
G
Ganlin Zhao 已提交
6500
        }
H
Haojun Liao 已提交
6501
      }
6502
    } else if (type == QUERY_NODE_OPERATOR) {
H
Haojun Liao 已提交
6503
      pExp->pExpr->nodeType = QUERY_NODE_OPERATOR;
L
Liu Jicong 已提交
6504
      SOperatorNode* pNode = (SOperatorNode*)pTargetNode->pExpr;
6505

G
Ganlin Zhao 已提交
6506 6507 6508
      pExp->base.pParam = taosMemoryCalloc(1, sizeof(SFunctParam));
      pExp->base.numOfParams = 1;

6509
      SDataType* pType = &pNode->node.resType;
dengyihao's avatar
dengyihao 已提交
6510 6511
      pExp->base.resSchema = createResSchema(pType->type, pType->bytes, pTargetNode->slotId, pType->scale,
                                             pType->precision, pNode->node.aliasName);
6512 6513 6514
      pExp->pExpr->_optrRoot.pRootNode = pTargetNode->pExpr;
    } else {
      ASSERT(0);
H
Haojun Liao 已提交
6515 6516 6517
    }
  }

H
Haojun Liao 已提交
6518
  return pExprs;
H
Haojun Liao 已提交
6519 6520
}

6521
static SExecTaskInfo* createExecTaskInfo(uint64_t queryId, uint64_t taskId, EOPTR_EXEC_MODEL model) {
wafwerar's avatar
wafwerar 已提交
6522
  SExecTaskInfo* pTaskInfo = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
6523
  setTaskStatus(pTaskInfo, TASK_NOT_COMPLETED);
H
Haojun Liao 已提交
6524

6525
  pTaskInfo->cost.created = taosGetTimestampMs();
H
Haojun Liao 已提交
6526
  pTaskInfo->id.queryId = queryId;
dengyihao's avatar
dengyihao 已提交
6527
  pTaskInfo->execModel = model;
H
Haojun Liao 已提交
6528

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

6533 6534
  return pTaskInfo;
}
H
Haojun Liao 已提交
6535

L
Liu Jicong 已提交
6536 6537
static tsdbReaderT doCreateDataReader(STableScanPhysiNode* pTableScanNode, SReadHandle* pHandle,
                                      STableGroupInfo* pTableGroupInfo, uint64_t queryId, uint64_t taskId);
H
Haojun Liao 已提交
6538

L
Liu Jicong 已提交
6539 6540
static int32_t doCreateTableGroup(void* metaHandle, int32_t tableType, uint64_t tableUid, STableGroupInfo* pGroupInfo,
                                  uint64_t queryId, uint64_t taskId);
6541 6542
static SArray* extractTableIdList(const STableGroupInfo* pTableGroupInfo);
static SArray* extractScanColumnId(SNodeList* pNodeList);
H
Haojun Liao 已提交
6543
static SArray* extractColumnInfo(SNodeList* pNodeList);
H
Haojun Liao 已提交
6544
static SArray* extractColMatchInfo(SNodeList* pNodeList, SDataBlockDescNode* pOutputNodeList, int32_t* numOfOutputCols);
6545

6546
static SArray* createSortInfo(SNodeList* pNodeList, SNodeList* pNodeListTarget);
6547
static SArray* createIndexMap(SNodeList* pNodeList);
6548
static SArray* extractPartitionColInfo(SNodeList* pNodeList);
H
Haojun Liao 已提交
6549

H
Haojun Liao 已提交
6550
SOperatorInfo* createOperatorTree(SPhysiNode* pPhyNode, SExecTaskInfo* pTaskInfo, SReadHandle* pHandle,
6551
                                  uint64_t queryId, uint64_t taskId, STableGroupInfo* pTableGroupInfo) {
6552 6553
  int32_t type = nodeType(pPhyNode);

X
Xiaoyu Wang 已提交
6554
  if (pPhyNode->pChildren == NULL || LIST_LENGTH(pPhyNode->pChildren) == 0) {
H
Haojun Liao 已提交
6555
    if (QUERY_NODE_PHYSICAL_PLAN_TABLE_SCAN == type) {
dengyihao's avatar
dengyihao 已提交
6556 6557
      SScanPhysiNode*      pScanPhyNode = (SScanPhysiNode*)pPhyNode;
      STableScanPhysiNode* pTableScanNode = (STableScanPhysiNode*)pPhyNode;
H
Haojun Liao 已提交
6558

H
Haojun Liao 已提交
6559
      int32_t     numOfCols = 0;
H
Haojun Liao 已提交
6560
      tsdbReaderT pDataReader = doCreateDataReader(pTableScanNode, pHandle, pTableGroupInfo, (uint64_t)queryId, taskId);
6561

dengyihao's avatar
dengyihao 已提交
6562 6563
      SArray* pColList =
          extractColMatchInfo(pScanPhyNode->pScanCols, pScanPhyNode->node.pOutputDataBlockDesc, &numOfCols);
6564
      SSDataBlock* pResBlock = createResDataBlock(pScanPhyNode->node.pOutputDataBlockDesc);
6565

6566
      SInterval interval = {
dengyihao's avatar
dengyihao 已提交
6567 6568
          .interval = pTableScanNode->interval,
          .sliding = pTableScanNode->sliding,
6569
          .intervalUnit = pTableScanNode->intervalUnit,
dengyihao's avatar
dengyihao 已提交
6570 6571
          .slidingUnit = pTableScanNode->slidingUnit,
          .offset = pTableScanNode->offset,
6572 6573 6574
      };

      return createTableScanOperatorInfo(pDataReader, pScanPhyNode->order, numOfCols, pTableScanNode->dataRequired,
dengyihao's avatar
dengyihao 已提交
6575 6576
                                         pScanPhyNode->count, pScanPhyNode->reverse, pColList, pResBlock,
                                         pScanPhyNode->node.pConditions, &interval, pTableScanNode->ratio, pTaskInfo);
H
Haojun Liao 已提交
6577
    } else if (QUERY_NODE_PHYSICAL_PLAN_EXCHANGE == type) {
H
Haojun Liao 已提交
6578
      SExchangePhysiNode* pExchange = (SExchangePhysiNode*)pPhyNode;
6579
      SSDataBlock*        pResBlock = createResDataBlock(pExchange->node.pOutputDataBlockDesc);
H
Haojun Liao 已提交
6580
      return createExchangeOperatorInfo(pExchange->pSrcEndPoints, pResBlock, pTaskInfo);
H
Haojun Liao 已提交
6581
    } else if (QUERY_NODE_PHYSICAL_PLAN_STREAM_SCAN == type) {
H
Haojun Liao 已提交
6582
      SScanPhysiNode* pScanPhyNode = (SScanPhysiNode*)pPhyNode;  // simple child table.
6583

dengyihao's avatar
dengyihao 已提交
6584 6585
      int32_t code = doCreateTableGroup(pHandle->meta, pScanPhyNode->tableType, pScanPhyNode->uid, pTableGroupInfo,
                                        queryId, taskId);
H
Haojun Liao 已提交
6586
      SArray* tableIdList = extractTableIdList(pTableGroupInfo);
H
Haojun Liao 已提交
6587

6588
      SSDataBlock* pResBlock = createResDataBlock(pScanPhyNode->node.pOutputDataBlockDesc);
6589 6590

      int32_t numOfCols = 0;
dengyihao's avatar
dengyihao 已提交
6591 6592 6593 6594
      SArray* pColList =
          extractColMatchInfo(pScanPhyNode->pScanCols, pScanPhyNode->node.pOutputDataBlockDesc, &numOfCols);
      SOperatorInfo* pOperator =
          createStreamScanOperatorInfo(pHandle->reader, pResBlock, pColList, tableIdList, pTaskInfo);
6595
      taosArrayDestroy(tableIdList);
H
Haojun Liao 已提交
6596
      return pOperator;
H
Haojun Liao 已提交
6597
    } else if (QUERY_NODE_PHYSICAL_PLAN_SYSTABLE_SCAN == type) {
L
Liu Jicong 已提交
6598
      SSystemTableScanPhysiNode* pSysScanPhyNode = (SSystemTableScanPhysiNode*)pPhyNode;
6599
      SSDataBlock*               pResBlock = createResDataBlock(pSysScanPhyNode->scan.node.pOutputDataBlockDesc);
H
Haojun Liao 已提交
6600

6601
      struct SScanPhysiNode* pScanNode = &pSysScanPhyNode->scan;
L
Liu Jicong 已提交
6602
      SArray*                colList = extractScanColumnId(pScanNode->pScanCols);
6603

L
Liu Jicong 已提交
6604 6605 6606
      SOperatorInfo* pOperator = createSysTableScanOperatorInfo(
          pHandle->meta, pResBlock, &pScanNode->tableName, pScanNode->node.pConditions, pSysScanPhyNode->mgmtEpSet,
          colList, pTaskInfo, pSysScanPhyNode->showRewrite, pSysScanPhyNode->accountId);
H
Haojun Liao 已提交
6607 6608 6609
      return pOperator;
    } else {
      ASSERT(0);
H
Haojun Liao 已提交
6610 6611 6612
    }
  }

6613 6614
  int32_t num = 0;
  size_t  size = LIST_LENGTH(pPhyNode->pChildren);
H
Haojun Liao 已提交
6615

6616
  SOperatorInfo** ops = taosMemoryCalloc(size, POINTER_BYTES);
dengyihao's avatar
dengyihao 已提交
6617
  for (int32_t i = 0; i < size; ++i) {
6618 6619 6620
    SPhysiNode* pChildNode = (SPhysiNode*)nodesListGetNode(pPhyNode->pChildren, i);
    ops[i] = createOperatorTree(pChildNode, pTaskInfo, pHandle, queryId, taskId, pTableGroupInfo);
  }
H
Haojun Liao 已提交
6621

6622
  SOperatorInfo* pOptr = NULL;
H
Haojun Liao 已提交
6623
  if (QUERY_NODE_PHYSICAL_PLAN_PROJECT == type) {
dengyihao's avatar
dengyihao 已提交
6624 6625
    SProjectPhysiNode* pProjPhyNode = (SProjectPhysiNode*)pPhyNode;
    SExprInfo*         pExprInfo = createExprInfo(pProjPhyNode->pProjections, NULL, &num);
H
Haojun Liao 已提交
6626

6627
    SSDataBlock* pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
dengyihao's avatar
dengyihao 已提交
6628 6629
    SLimit       limit = {.limit = pProjPhyNode->limit, .offset = pProjPhyNode->offset};
    SLimit       slimit = {.limit = pProjPhyNode->slimit, .offset = pProjPhyNode->soffset};
6630
    pOptr = createProjectOperatorInfo(ops[0], pExprInfo, num, pResBlock, &limit, &slimit, pTaskInfo);
H
Haojun Liao 已提交
6631 6632 6633
  } else if (QUERY_NODE_PHYSICAL_PLAN_AGG == type) {
    SAggPhysiNode* pAggNode = (SAggPhysiNode*)pPhyNode;
    SExprInfo*     pExprInfo = createExprInfo(pAggNode->pAggFuncs, pAggNode->pGroupKeys, &num);
6634
    SSDataBlock*   pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
H
Haojun Liao 已提交
6635

dengyihao's avatar
dengyihao 已提交
6636
    int32_t    numOfScalarExpr = 0;
6637 6638 6639 6640 6641
    SExprInfo* pScalarExprInfo = NULL;
    if (pAggNode->pExprs != NULL) {
      pScalarExprInfo = createExprInfo(pAggNode->pExprs, NULL, &numOfScalarExpr);
    }

H
Haojun Liao 已提交
6642 6643
    if (pAggNode->pGroupKeys != NULL) {
      SArray* pColList = extractColumnInfo(pAggNode->pGroupKeys);
dengyihao's avatar
dengyihao 已提交
6644 6645
      pOptr = createGroupOperatorInfo(ops[0], pExprInfo, num, pResBlock, pColList, pAggNode->node.pConditions,
                                      pScalarExprInfo, numOfScalarExpr, pTaskInfo, NULL);
H
Haojun Liao 已提交
6646
    } else {
dengyihao's avatar
dengyihao 已提交
6647 6648
      pOptr = createAggregateOperatorInfo(ops[0], pExprInfo, num, pResBlock, pScalarExprInfo, numOfScalarExpr,
                                          pTaskInfo, pTableGroupInfo);
H
Haojun Liao 已提交
6649
    }
H
Haojun Liao 已提交
6650 6651
  } else if (QUERY_NODE_PHYSICAL_PLAN_INTERVAL == type) {
    SIntervalPhysiNode* pIntervalPhyNode = (SIntervalPhysiNode*)pPhyNode;
H
Haojun Liao 已提交
6652

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

dengyihao's avatar
dengyihao 已提交
6656 6657 6658 6659 6660 6661
    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 已提交
6662

dengyihao's avatar
dengyihao 已提交
6663 6664
    STimeWindowAggSupp as = {.waterMark = pIntervalPhyNode->window.watermark,
                             .calTrigger = pIntervalPhyNode->window.triggerType};
6665

dengyihao's avatar
dengyihao 已提交
6666 6667 6668
    int32_t primaryTsSlotId = ((SColumnNode*)pIntervalPhyNode->window.pTspk)->slotId;
    pOptr = createIntervalOperatorInfo(ops[0], pExprInfo, num, pResBlock, &interval, primaryTsSlotId, &as,
                                       pTableGroupInfo, pTaskInfo);
6669 6670

    if (pIntervalPhyNode->pFill != NULL) {
dengyihao's avatar
dengyihao 已提交
6671 6672
      pOptr = createFillOperatorInfo(pOptr, pExprInfo, num, &interval, pResBlock, pIntervalPhyNode->pFill->mode, NULL,
                                     false, pTaskInfo);
6673 6674
    }

H
Haojun Liao 已提交
6675
  } else if (QUERY_NODE_PHYSICAL_PLAN_SORT == type) {
H
Haojun Liao 已提交
6676
    SSortPhysiNode* pSortPhyNode = (SSortPhysiNode*)pPhyNode;
H
Haojun Liao 已提交
6677

6678
    SSDataBlock* pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
6679
    SArray*      info = createSortInfo(pSortPhyNode->pSortKeys, pSortPhyNode->pTargets);
6680
    SArray*      slotMap = createIndexMap(pSortPhyNode->pTargets);
6681
    pOptr = createSortOperatorInfo(ops[0], pResBlock, info, slotMap, pTaskInfo);
H
Haojun Liao 已提交
6682
  } else if (QUERY_NODE_PHYSICAL_PLAN_SESSION_WINDOW == type) {
H
Haojun Liao 已提交
6683 6684
    SSessionWinodwPhysiNode* pSessionNode = (SSessionWinodwPhysiNode*)pPhyNode;

dengyihao's avatar
dengyihao 已提交
6685 6686
    STimeWindowAggSupp as = {.waterMark = pSessionNode->window.watermark,
                             .calTrigger = pSessionNode->window.triggerType};
6687

H
Haojun Liao 已提交
6688
    SExprInfo*   pExprInfo = createExprInfo(pSessionNode->window.pFuncs, NULL, &num);
6689
    SSDataBlock* pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
6690
    pOptr = createSessionAggOperatorInfo(ops[0], pExprInfo, num, pResBlock, pSessionNode->gap, &as, pTaskInfo);
H
Haojun Liao 已提交
6691
  } else if (QUERY_NODE_PHYSICAL_PLAN_PARTITION == type) {
dengyihao's avatar
dengyihao 已提交
6692 6693 6694
    SPartitionPhysiNode* pPartNode = (SPartitionPhysiNode*)pPhyNode;
    SArray*              pColList = extractPartitionColInfo(pPartNode->pPartitionKeys);
    SSDataBlock*         pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
6695 6696

    SExprInfo* pExprInfo = createExprInfo(pPartNode->pTargets, NULL, &num);
6697
    pOptr = createPartitionOperatorInfo(ops[0], pExprInfo, num, pResBlock, pColList, pTaskInfo, NULL);
6698
  } else if (QUERY_NODE_PHYSICAL_PLAN_STATE_WINDOW == type) {
dengyihao's avatar
dengyihao 已提交
6699
    SStateWinodwPhysiNode* pStateNode = (SStateWinodwPhysiNode*)pPhyNode;
6700

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

dengyihao's avatar
dengyihao 已提交
6703
    SExprInfo*   pExprInfo = createExprInfo(pStateNode->window.pFuncs, NULL, &num);
6704
    SSDataBlock* pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
6705
    pOptr = createStatewindowOperatorInfo(ops[0], pExprInfo, num, pResBlock, &as, pTaskInfo);
6706
  } else if (QUERY_NODE_PHYSICAL_PLAN_JOIN == type) {
dengyihao's avatar
dengyihao 已提交
6707 6708
    SJoinPhysiNode* pJoinNode = (SJoinPhysiNode*)pPhyNode;
    SSDataBlock*    pResBlock = createResDataBlock(pPhyNode->pOutputDataBlockDesc);
6709 6710

    SExprInfo* pExprInfo = createExprInfo(pJoinNode->pTargets, NULL, &num);
6711
    pOptr = createJoinOperatorInfo(ops, size, pExprInfo, num, pResBlock, pJoinNode->pOnConditions, pTaskInfo);
H
Haojun Liao 已提交
6712 6713
  } else {
    ASSERT(0);
H
Haojun Liao 已提交
6714
  }
6715 6716 6717

  taosMemoryFree(ops);
  return pOptr;
6718
}
H
Haojun Liao 已提交
6719

L
Liu Jicong 已提交
6720 6721
static tsdbReaderT createDataReaderImpl(STableScanPhysiNode* pTableScanNode, STableGroupInfo* pGroupInfo,
                                        void* readHandle, uint64_t queryId, uint64_t taskId) {
H
Haojun Liao 已提交
6722
  STsdbQueryCond cond = {.loadExternalRows = false};
H
Haojun Liao 已提交
6723

L
Liu Jicong 已提交
6724
  cond.order = pTableScanNode->scan.order;
X
Xiaoyu Wang 已提交
6725
  cond.numOfCols = LIST_LENGTH(pTableScanNode->scan.pScanCols);
L
Liu Jicong 已提交
6726
  cond.colList = taosMemoryCalloc(cond.numOfCols, sizeof(SColumnInfo));
H
Haojun Liao 已提交
6727 6728 6729 6730 6731
  if (cond.colList == NULL) {
    terrno = TSDB_CODE_QRY_OUT_OF_MEMORY;
    return NULL;
  }

X
Xiaoyu Wang 已提交
6732
  cond.twindow = pTableScanNode->scanRange;
H
Haojun Liao 已提交
6733
  cond.type = BLOCK_LOAD_OFFSET_SEQ_ORDER;
L
Liu Jicong 已提交
6734
  //  cond.type = pTableScanNode->scanFlag;
H
Haojun Liao 已提交
6735

H
Haojun Liao 已提交
6736
  int32_t j = 0;
H
Haojun Liao 已提交
6737
  for (int32_t i = 0; i < cond.numOfCols; ++i) {
H
Haojun Liao 已提交
6738 6739
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pTableScanNode->scan.pScanCols, i);
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
H
Haojun Liao 已提交
6740 6741 6742
    if (pColNode->colType == COLUMN_TYPE_TAG) {
      continue;
    }
H
Haojun Liao 已提交
6743

dengyihao's avatar
dengyihao 已提交
6744
    cond.colList[j].type = pColNode->node.resType.type;
H
Haojun Liao 已提交
6745 6746 6747
    cond.colList[j].bytes = pColNode->node.resType.bytes;
    cond.colList[j].colId = pColNode->colId;
    j += 1;
H
Haojun Liao 已提交
6748 6749
  }

H
Haojun Liao 已提交
6750
  cond.numOfCols = j;
H
Haojun Liao 已提交
6751
  return tsdbQueryTables(readHandle, &cond, pGroupInfo, queryId, taskId);
H
Haojun Liao 已提交
6752
}
H
Haojun Liao 已提交
6753

6754
SArray* extractScanColumnId(SNodeList* pNodeList) {
L
Liu Jicong 已提交
6755
  size_t  numOfCols = LIST_LENGTH(pNodeList);
6756 6757 6758 6759 6760 6761
  SArray* pList = taosArrayInit(numOfCols, sizeof(int16_t));
  if (pList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

L
Liu Jicong 已提交
6762
  for (int32_t i = 0; i < numOfCols; ++i) {
X
Xiaoyu Wang 已提交
6763
    for (int32_t j = 0; j < numOfCols; ++j) {
L
Liu Jicong 已提交
6764
      STargetNode* pNode = (STargetNode*)nodesListGetNode(pNodeList, j);
X
Xiaoyu Wang 已提交
6765
      if (pNode->slotId == i) {
L
Liu Jicong 已提交
6766
        SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
X
Xiaoyu Wang 已提交
6767 6768 6769 6770
        taosArrayPush(pList, &pColNode->colId);
        break;
      }
    }
6771 6772 6773 6774 6775
  }

  return pList;
}

H
Haojun Liao 已提交
6776
SArray* extractColumnInfo(SNodeList* pNodeList) {
L
Liu Jicong 已提交
6777
  size_t  numOfCols = LIST_LENGTH(pNodeList);
H
Haojun Liao 已提交
6778 6779 6780 6781 6782 6783
  SArray* pList = taosArrayInit(numOfCols, sizeof(SColumn));
  if (pList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

L
Liu Jicong 已提交
6784 6785 6786
  for (int32_t i = 0; i < numOfCols; ++i) {
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pNodeList, i);
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
H
Haojun Liao 已提交
6787

H
Haojun Liao 已提交
6788
    // todo extract method
H
Haojun Liao 已提交
6789 6790
    SColumn c = {0};
    c.slotId = pColNode->slotId;
dengyihao's avatar
dengyihao 已提交
6791 6792 6793
    c.colId = pColNode->colId;
    c.type = pColNode->node.resType.type;
    c.bytes = pColNode->node.resType.bytes;
L
Liu Jicong 已提交
6794 6795
    c.precision = pColNode->node.resType.precision;
    c.scale = pColNode->node.resType.scale;
H
Haojun Liao 已提交
6796 6797 6798 6799 6800 6801 6802

    taosArrayPush(pList, &c);
  }

  return pList;
}

6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816
SArray* extractPartitionColInfo(SNodeList* pNodeList) {
  size_t  numOfCols = LIST_LENGTH(pNodeList);
  SArray* pList = taosArrayInit(numOfCols, sizeof(SColumn));
  if (pList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

  for (int32_t i = 0; i < numOfCols; ++i) {
    SColumnNode* pColNode = (SColumnNode*)nodesListGetNode(pNodeList, i);

    // todo extract method
    SColumn c = {0};
    c.slotId = pColNode->slotId;
dengyihao's avatar
dengyihao 已提交
6817 6818 6819
    c.colId = pColNode->colId;
    c.type = pColNode->node.resType.type;
    c.bytes = pColNode->node.resType.bytes;
6820 6821 6822 6823 6824 6825 6826 6827 6828
    c.precision = pColNode->node.resType.precision;
    c.scale = pColNode->node.resType.scale;

    taosArrayPush(pList, &c);
  }

  return pList;
}

6829
SArray* createSortInfo(SNodeList* pNodeList, SNodeList* pNodeListTarget) {
L
Liu Jicong 已提交
6830
  size_t  numOfCols = LIST_LENGTH(pNodeList);
H
Haojun Liao 已提交
6831 6832 6833 6834 6835 6836
  SArray* pList = taosArrayInit(numOfCols, sizeof(SBlockOrderInfo));
  if (pList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return pList;
  }

L
Liu Jicong 已提交
6837
  for (int32_t i = 0; i < numOfCols; ++i) {
6838
    SOrderByExprNode* pSortKey = (SOrderByExprNode*)nodesListGetNode(pNodeList, i);
L
Liu Jicong 已提交
6839 6840
    SBlockOrderInfo   bi = {0};
    bi.order = (pSortKey->order == ORDER_ASC) ? TSDB_ORDER_ASC : TSDB_ORDER_DESC;
H
Haojun Liao 已提交
6841 6842 6843 6844
    bi.nullFirst = (pSortKey->nullOrder == NULL_ORDER_FIRST);

    SColumnNode* pColNode = (SColumnNode*)pSortKey->pExpr;

6845 6846 6847 6848 6849
    bool found = false;
    for (int32_t j = 0; j < LIST_LENGTH(pNodeListTarget); ++j) {
      STargetNode* pTarget = (STargetNode*)nodesListGetNode(pNodeListTarget, j);

      SColumnNode* pColNodeT = (SColumnNode*)pTarget->pExpr;
dengyihao's avatar
dengyihao 已提交
6850
      if (pColNode->slotId == pColNodeT->slotId) {  // to find slotId in PhysiSort OutputDataBlockDesc
6851 6852 6853 6854 6855 6856
        bi.slotId = pTarget->slotId;
        found = true;
        break;
      }
    }

dengyihao's avatar
dengyihao 已提交
6857
    if (!found) {
6858 6859
      qError("sort slot id does not found");
    }
H
Haojun Liao 已提交
6860 6861 6862 6863 6864 6865
    taosArrayPush(pList, &bi);
  }

  return pList;
}

6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883
SArray* createIndexMap(SNodeList* pNodeList) {
  size_t  numOfCols = LIST_LENGTH(pNodeList);
  SArray* pList = taosArrayInit(numOfCols, sizeof(int32_t));
  if (pList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return pList;
  }

  for (int32_t i = 0; i < numOfCols; ++i) {
    STargetNode* pTarget = (STargetNode*)nodesListGetNode(pNodeList, i);

    SColumnNode* pColNode = (SColumnNode*)pTarget->pExpr;
    taosArrayPush(pList, &pColNode->slotId);
  }

  return pList;
}

H
Haojun Liao 已提交
6884
SArray* extractColMatchInfo(SNodeList* pNodeList, SDataBlockDescNode* pOutputNodeList, int32_t* numOfOutputCols) {
L
Liu Jicong 已提交
6885
  size_t  numOfCols = LIST_LENGTH(pNodeList);
H
Haojun Liao 已提交
6886 6887 6888 6889 6890 6891
  SArray* pList = taosArrayInit(numOfCols, sizeof(SColMatchInfo));
  if (pList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

L
Liu Jicong 已提交
6892 6893 6894
  for (int32_t i = 0; i < numOfCols; ++i) {
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pNodeList, i);
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
H
Haojun Liao 已提交
6895 6896

    SColMatchInfo c = {0};
L
Liu Jicong 已提交
6897
    c.colId = pColNode->colId;
H
Haojun Liao 已提交
6898
    c.targetSlotId = pNode->slotId;
L
Liu Jicong 已提交
6899
    c.output = true;
H
Haojun Liao 已提交
6900 6901 6902
    taosArrayPush(pList, &c);
  }

H
Haojun Liao 已提交
6903 6904
  *numOfOutputCols = 0;
  int32_t num = LIST_LENGTH(pOutputNodeList->pSlots);
L
Liu Jicong 已提交
6905 6906
  for (int32_t i = 0; i < num; ++i) {
    SSlotDescNode* pNode = (SSlotDescNode*)nodesListGetNode(pOutputNodeList->pSlots, i);
6907
    // todo: add reserve flag check
dengyihao's avatar
dengyihao 已提交
6908
    if (pNode->slotId >= numOfCols) {  // it is a column reserved for the arithmetic expression calculation
6909 6910 6911 6912
      (*numOfOutputCols) += 1;
      continue;
    }

H
Haojun Liao 已提交
6913
    SColMatchInfo* info = taosArrayGet(pList, pNode->slotId);
H
Haojun Liao 已提交
6914 6915 6916 6917 6918
    if (pNode->output) {
      (*numOfOutputCols) += 1;
    } else {
      info->output = false;
    }
H
Haojun Liao 已提交
6919 6920
  }

H
Haojun Liao 已提交
6921 6922 6923
  return pList;
}

dengyihao's avatar
dengyihao 已提交
6924 6925
int32_t doCreateTableGroup(void* metaHandle, int32_t tableType, uint64_t tableUid, STableGroupInfo* pGroupInfo,
                           uint64_t queryId, uint64_t taskId) {
6926
  int32_t code = 0;
H
Haojun Liao 已提交
6927
  if (tableType == TSDB_SUPER_TABLE) {
H
Haojun Liao 已提交
6928
    code = tsdbQuerySTableByTagCond(metaHandle, tableUid, 0, NULL, 0, 0, NULL, pGroupInfo, NULL, 0, queryId, taskId);
H
Haojun Liao 已提交
6929
  } else {  // Create one table group.
H
Haojun Liao 已提交
6930
    code = tsdbGetOneTableGroup(metaHandle, tableUid, 0, pGroupInfo);
6931 6932 6933 6934
  }

  return code;
}
H
Haojun Liao 已提交
6935

6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953
SArray* extractTableIdList(const STableGroupInfo* pTableGroupInfo) {
  SArray* tableIdList = taosArrayInit(4, sizeof(uint64_t));

  if (pTableGroupInfo->numOfTables > 0) {
    SArray* pa = taosArrayGetP(pTableGroupInfo->pGroupList, 0);
    ASSERT(taosArrayGetSize(pTableGroupInfo->pGroupList) == 1);

    // Transfer the Array of STableKeyInfo into uid list.
    size_t numOfTables = taosArrayGetSize(pa);
    for (int32_t i = 0; i < numOfTables; ++i) {
      STableKeyInfo* pkeyInfo = taosArrayGet(pa, i);
      taosArrayPush(tableIdList, &pkeyInfo->uid);
    }
  }

  return tableIdList;
}

L
Liu Jicong 已提交
6954 6955
tsdbReaderT doCreateDataReader(STableScanPhysiNode* pTableScanNode, SReadHandle* pHandle,
                               STableGroupInfo* pTableGroupInfo, uint64_t queryId, uint64_t taskId) {
6956
  uint64_t uid = pTableScanNode->scan.uid;
L
Liu Jicong 已提交
6957 6958
  int32_t  code =
      doCreateTableGroup(pHandle->meta, pTableScanNode->scan.tableType, uid, pTableGroupInfo, queryId, taskId);
6959 6960
  if (code != TSDB_CODE_SUCCESS) {
    goto _error;
H
Haojun Liao 已提交
6961
  }
H
Haojun Liao 已提交
6962

H
Haojun Liao 已提交
6963
  if (pTableGroupInfo->numOfTables == 0) {
H
Haojun Liao 已提交
6964
    code = 0;
L
Liu Jicong 已提交
6965
    qDebug("no table qualified for query, TID:0x%" PRIx64 ", QID:0x%" PRIx64, taskId, queryId);
H
Haojun Liao 已提交
6966 6967
    goto _error;
  }
H
Haojun Liao 已提交
6968

H
Haojun Liao 已提交
6969
  return createDataReaderImpl(pTableScanNode, pTableGroupInfo, pHandle->reader, queryId, taskId);
H
Haojun Liao 已提交
6970

L
Liu Jicong 已提交
6971
_error:
H
Haojun Liao 已提交
6972 6973 6974 6975
  terrno = code;
  return NULL;
}

dengyihao's avatar
dengyihao 已提交
6976 6977
int32_t createExecTaskInfoImpl(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
                               EOPTR_EXEC_MODEL model) {
H
Haojun Liao 已提交
6978 6979
  uint64_t queryId = pPlan->id.queryId;

H
Haojun Liao 已提交
6980
  int32_t code = TSDB_CODE_SUCCESS;
6981
  *pTaskInfo = createExecTaskInfo(queryId, taskId, model);
H
Haojun Liao 已提交
6982 6983 6984 6985
  if (*pTaskInfo == NULL) {
    code = TSDB_CODE_QRY_OUT_OF_MEMORY;
    goto _complete;
  }
H
Haojun Liao 已提交
6986

H
Haojun Liao 已提交
6987
  STableGroupInfo group = {0};
H
Haojun Liao 已提交
6988
  (*pTaskInfo)->pRoot = createOperatorTree(pPlan->pNode, *pTaskInfo, pHandle, queryId, taskId, &group);
D
dapan1121 已提交
6989
  if (NULL == (*pTaskInfo)->pRoot) {
L
Liu Jicong 已提交
6990
    code = terrno;
D
dapan1121 已提交
6991 6992
    goto _complete;
  }
H
Haojun Liao 已提交
6993

6994
  if ((*pTaskInfo)->pRoot == NULL) {
H
Haojun Liao 已提交
6995
    code = TSDB_CODE_QRY_OUT_OF_MEMORY;
H
Haojun Liao 已提交
6996
    goto _complete;
6997 6998
  }

H
Haojun Liao 已提交
6999 7000
  return code;

H
Haojun Liao 已提交
7001
_complete:
wafwerar's avatar
wafwerar 已提交
7002
  taosMemoryFreeClear(*pTaskInfo);
H
Haojun Liao 已提交
7003 7004 7005

  terrno = code;
  return code;
H
Haojun Liao 已提交
7006 7007
}

L
Liu Jicong 已提交
7008 7009
static int32_t updateOutputBufForTopBotQuery(SQueriedTableInfo* pTableInfo, SColumnInfo* pTagCols, SExprInfo* pExprs,
                                             int32_t numOfOutput, int32_t tagLen, bool superTable) {
7010 7011 7012 7013 7014 7015 7016 7017 7018
  for (int32_t i = 0; i < numOfOutput; ++i) {
    int16_t functId = getExprFunctionId(&pExprs[i]);

    if (functId == FUNCTION_TOP || functId == FUNCTION_BOTTOM) {
      int32_t j = getColumnIndexInSource(pTableInfo, &pExprs[i].base, pTagCols);
      if (j < 0 || j >= pTableInfo->numOfCols) {
        return TSDB_CODE_QRY_INVALID_MSG;
      } else {
        SColumnInfo* pCol = &pTableInfo->colList[j];
L
Liu Jicong 已提交
7019 7020 7021 7022
        //        int32_t ret = getResultDataInfo(pCol->type, pCol->bytes, functId, (int32_t)pExprs[i].base.param[0].i,
        //                                        &pExprs[i].base.resSchema.type, &pExprs[i].base.resSchema.bytes,
        //                                        &pExprs[i].base.interBytes, tagLen, superTable, NULL);
        //        assert(ret == TSDB_CODE_SUCCESS);
7023 7024 7025 7026 7027 7028 7029
      }
    }
  }

  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
7030
void setResultBufSize(STaskAttr* pQueryAttr, SResultInfo* pResultInfo) {
7031 7032 7033 7034 7035 7036 7037 7038
  const int32_t DEFAULT_RESULT_MSG_SIZE = 1024 * (1024 + 512);

  // the minimum number of rows for projection query
  const int32_t MIN_ROWS_FOR_PRJ_QUERY = 8192;
  const int32_t DEFAULT_MIN_ROWS = 4096;

  const float THRESHOLD_RATIO = 0.85f;

dengyihao's avatar
dengyihao 已提交
7039 7040 7041 7042 7043 7044 7045 7046 7047 7048
  //  if (isProjQuery(pQueryAttr)) {
  //    int32_t numOfRes = DEFAULT_RESULT_MSG_SIZE / pQueryAttr->resultRowSize;
  //    if (numOfRes < MIN_ROWS_FOR_PRJ_QUERY) {
  //      numOfRes = MIN_ROWS_FOR_PRJ_QUERY;
  //    }
  //
  //    pResultInfo->capacity = numOfRes;
  //  } else {  // in case of non-prj query, a smaller output buffer will be used.
  //    pResultInfo->capacity = DEFAULT_MIN_ROWS;
  //  }
7049 7050

  pResultInfo->threshold = (int32_t)(pResultInfo->capacity * THRESHOLD_RATIO);
H
Haojun Liao 已提交
7051
  pResultInfo->totalRows = 0;
7052 7053
}

L
Liu Jicong 已提交
7054
// TODO refactor
7055
void freeColumnFilterInfo(SColumnFilterInfo* pFilter, int32_t numOfFilters) {
L
Liu Jicong 已提交
7056 7057 7058
  if (pFilter == NULL || numOfFilters == 0) {
    return;
  }
7059

L
Liu Jicong 已提交
7060 7061 7062
  for (int32_t i = 0; i < numOfFilters; i++) {
    if (pFilter[i].filterstr && pFilter[i].pz) {
      taosMemoryFree((void*)(pFilter[i].pz));
7063
    }
L
Liu Jicong 已提交
7064
  }
7065

L
Liu Jicong 已提交
7066
  taosMemoryFree(pFilter);
7067 7068 7069 7070
}

static void doDestroyTableQueryInfo(STableGroupInfo* pTableqinfoGroupInfo) {
  if (pTableqinfoGroupInfo->pGroupList != NULL) {
L
Liu Jicong 已提交
7071
    int32_t numOfGroups = (int32_t)taosArrayGetSize(pTableqinfoGroupInfo->pGroupList);
7072
    for (int32_t i = 0; i < numOfGroups; ++i) {
L
Liu Jicong 已提交
7073
      SArray* p = taosArrayGetP(pTableqinfoGroupInfo->pGroupList, i);
7074 7075

      size_t num = taosArrayGetSize(p);
L
Liu Jicong 已提交
7076
      for (int32_t j = 0; j < num; ++j) {
7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092
        STableQueryInfo* item = taosArrayGetP(p, j);
        destroyTableQueryInfoImpl(item);
      }

      taosArrayDestroy(p);
    }
  }

  taosArrayDestroy(pTableqinfoGroupInfo->pGroupList);
  taosHashCleanup(pTableqinfoGroupInfo->map);

  pTableqinfoGroupInfo->pGroupList = NULL;
  pTableqinfoGroupInfo->map = NULL;
  pTableqinfoGroupInfo->numOfTables = 0;
}

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

H
Haojun Liao 已提交
7096
  doDestroyTableQueryInfo(&pTaskInfo->tableqinfoGroupInfo);
L
Liu Jicong 已提交
7097 7098
  //  taosArrayDestroy(pTaskInfo->summary.queryProfEvents);
  //  taosHashCleanup(pTaskInfo->summary.operatorProfResults);
7099

wafwerar's avatar
wafwerar 已提交
7100 7101 7102
  taosMemoryFreeClear(pTaskInfo->sql);
  taosMemoryFreeClear(pTaskInfo->id.str);
  taosMemoryFreeClear(pTaskInfo);
7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114
}

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 已提交
7115
      int32_t len = (varDataLen(val) > maxLen) ? maxLen : varDataLen(val);
7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127
      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 已提交
7128 7129
  //  size_t s3 = sizeof(STableCheckInfo);  buffer consumption in tsdb
  return (int64_t)(s1 * 1.5 * numOfTables);
7130 7131 7132 7133 7134 7135 7136
}

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 已提交
7137
    while (1) {
7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163
      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 已提交
7164

dengyihao's avatar
dengyihao 已提交
7165 7166
int32_t getOperatorExplainExecInfo(SOperatorInfo* operatorInfo, SExplainExecInfo** pRes, int32_t* capacity,
                                   int32_t* resNum) {
D
dapan1121 已提交
7167 7168
  if (*resNum >= *capacity) {
    *capacity += 10;
dengyihao's avatar
dengyihao 已提交
7169

D
dapan1121 已提交
7170 7171
    *pRes = taosMemoryRealloc(*pRes, (*capacity) * sizeof(SExplainExecInfo));
    if (NULL == *pRes) {
D
dapan1121 已提交
7172
      qError("malloc %d failed", (*capacity) * (int32_t)sizeof(SExplainExecInfo));
D
dapan1121 已提交
7173 7174 7175 7176
      return TSDB_CODE_QRY_OUT_OF_MEMORY;
    }
  }

D
dapan1121 已提交
7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187
  (*pRes)[*resNum].numOfRows = operatorInfo->resultInfo.totalRows;
  (*pRes)[*resNum].startupCost = operatorInfo->cost.openCost;
  (*pRes)[*resNum].totalCost = operatorInfo->cost.totalCost;

  if (operatorInfo->getExplainFn) {
    int32_t code = (*operatorInfo->getExplainFn)(operatorInfo, &(*pRes)->verboseInfo);
    if (code) {
      qError("operator getExplainFn failed, error:%s", tstrerror(code));
      return code;
    }
  }
dengyihao's avatar
dengyihao 已提交
7188

D
dapan1121 已提交
7189
  ++(*resNum);
dengyihao's avatar
dengyihao 已提交
7190

D
dapan1121 已提交
7191
  int32_t code = 0;
D
dapan1121 已提交
7192 7193
  for (int32_t i = 0; i < operatorInfo->numOfDownstream; ++i) {
    code = getOperatorExplainExecInfo(operatorInfo->pDownstream[i], pRes, capacity, resNum);
D
dapan1121 已提交
7194 7195 7196 7197 7198 7199 7200
    if (code) {
      taosMemoryFreeClear(*pRes);
      return TSDB_CODE_QRY_OUT_OF_MEMORY;
    }
  }

  return TSDB_CODE_SUCCESS;
D
dapan1121 已提交
7201 7202
}

7203 7204
static SSDataBlock* doMergeJoin(struct SOperatorInfo* pOperator, bool* newgroup) {
  SJoinOperatorInfo* pJoinInfo = pOperator->info;
dengyihao's avatar
dengyihao 已提交
7205
  //  SOptrBasicInfo* pInfo = &pJoinInfo->binfo;
7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242

  SSDataBlock* pRes = pJoinInfo->pRes;
  blockDataCleanup(pRes);
  blockDataEnsureCapacity(pRes, 4096);

  int32_t nrows = 0;

  while (1) {
    bool prevVal = *newgroup;

    if (pJoinInfo->pLeft == NULL || pJoinInfo->leftPos >= pJoinInfo->pLeft->info.rows) {
      SOperatorInfo* ds1 = pOperator->pDownstream[0];
      publishOperatorProfEvent(ds1, QUERY_PROF_BEFORE_OPERATOR_EXEC);
      pJoinInfo->pLeft = ds1->getNextFn(ds1, newgroup);
      publishOperatorProfEvent(ds1, QUERY_PROF_AFTER_OPERATOR_EXEC);

      pJoinInfo->leftPos = 0;
      if (pJoinInfo->pLeft == NULL) {
        setTaskStatus(pOperator->pTaskInfo, TASK_COMPLETED);
        break;
      }
    }

    if (pJoinInfo->pRight == NULL || pJoinInfo->rightPos >= pJoinInfo->pRight->info.rows) {
      SOperatorInfo* ds2 = pOperator->pDownstream[1];
      publishOperatorProfEvent(ds2, QUERY_PROF_BEFORE_OPERATOR_EXEC);
      pJoinInfo->pRight = ds2->getNextFn(ds2, newgroup);
      publishOperatorProfEvent(ds2, QUERY_PROF_AFTER_OPERATOR_EXEC);

      pJoinInfo->rightPos = 0;
      if (pJoinInfo->pRight == NULL) {
        setTaskStatus(pOperator->pTaskInfo, TASK_COMPLETED);
        break;
      }
    }

    SColumnInfoData* pLeftCol = taosArrayGet(pJoinInfo->pLeft->pDataBlock, pJoinInfo->leftCol.slotId);
dengyihao's avatar
dengyihao 已提交
7243
    char*            pLeftVal = colDataGetData(pLeftCol, pJoinInfo->leftPos);
7244 7245

    SColumnInfoData* pRightCol = taosArrayGet(pJoinInfo->pRight->pDataBlock, pJoinInfo->rightCol.slotId);
dengyihao's avatar
dengyihao 已提交
7246
    char*            pRightVal = colDataGetData(pRightCol, pJoinInfo->rightPos);
7247 7248

    // only the timestamp match support for ordinary table
dengyihao's avatar
dengyihao 已提交
7249 7250 7251 7252
    ASSERT(pLeftCol->info.type == TSDB_DATA_TYPE_TIMESTAMP);
    if (*(int64_t*)pLeftVal == *(int64_t*)pRightVal) {
      for (int32_t i = 0; i < pOperator->numOfOutput; ++i) {
        SColumnInfoData* pDst = taosArrayGet(pRes->pDataBlock, i);
7253

dengyihao's avatar
dengyihao 已提交
7254
        SExprInfo* pExprInfo = &pOperator->pExpr[i];
7255

dengyihao's avatar
dengyihao 已提交
7256 7257
        int32_t blockId = pExprInfo->base.pParam[0].pCol->dataBlockId;
        int32_t slotId = pExprInfo->base.pParam[0].pCol->slotId;
7258

dengyihao's avatar
dengyihao 已提交
7259 7260 7261 7262 7263 7264
        SColumnInfoData* pSrc = NULL;
        if (pJoinInfo->pLeft->info.blockId == blockId) {
          pSrc = taosArrayGet(pJoinInfo->pLeft->pDataBlock, slotId);
        } else {
          pSrc = taosArrayGet(pJoinInfo->pRight->pDataBlock, slotId);
        }
7265

dengyihao's avatar
dengyihao 已提交
7266 7267 7268 7269 7270
        if (colDataIsNull_s(pSrc, pJoinInfo->leftPos)) {
          colDataAppendNULL(pDst, nrows);
        } else {
          char* p = colDataGetData(pSrc, pJoinInfo->leftPos);
          colDataAppend(pDst, nrows, p, false);
7271
        }
dengyihao's avatar
dengyihao 已提交
7272
      }
7273

dengyihao's avatar
dengyihao 已提交
7274 7275
      pJoinInfo->leftPos += 1;
      pJoinInfo->rightPos += 1;
7276

dengyihao's avatar
dengyihao 已提交
7277 7278 7279
      nrows += 1;
    } else if (*(int64_t*)pLeftVal < *(int64_t*)pRightVal) {
      pJoinInfo->leftPos += 1;
D
dapan1121 已提交
7280

dengyihao's avatar
dengyihao 已提交
7281 7282
      if (pJoinInfo->leftPos >= pJoinInfo->pLeft->info.rows) {
        continue;
7283
      }
dengyihao's avatar
dengyihao 已提交
7284 7285 7286 7287
    } else if (*(int64_t*)pLeftVal > *(int64_t*)pRightVal) {
      pJoinInfo->rightPos += 1;
      if (pJoinInfo->rightPos >= pJoinInfo->pRight->info.rows) {
        continue;
7288
      }
dengyihao's avatar
dengyihao 已提交
7289
    }
7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300

    // the pDataBlock are always the same one, no need to call this again
    pRes->info.rows = nrows;
    if (pRes->info.rows >= pOperator->resultInfo.threshold) {
      break;
    }
  }

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

dengyihao's avatar
dengyihao 已提交
7301 7302 7303
SOperatorInfo* createJoinOperatorInfo(SOperatorInfo** pDownstream, int32_t numOfDownstream, SExprInfo* pExprInfo,
                                      int32_t numOfCols, SSDataBlock* pResBlock, SNode* pOnCondition,
                                      SExecTaskInfo* pTaskInfo) {
7304
  SJoinOperatorInfo* pInfo = taosMemoryCalloc(1, sizeof(SJoinOperatorInfo));
dengyihao's avatar
dengyihao 已提交
7305
  SOperatorInfo*     pOperator = taosMemoryCalloc(1, sizeof(SOperatorInfo));
7306 7307 7308 7309 7310 7311 7312
  if (pOperator == NULL || pInfo == NULL) {
    goto _error;
  }

  pOperator->resultInfo.capacity = 4096;
  pOperator->resultInfo.threshold = 4096 * 0.75;

dengyihao's avatar
dengyihao 已提交
7313 7314 7315
  //  initResultRowInf
  //  o(&pInfo->binfo.resultRowInfo, 8);
  pInfo->pRes = pResBlock;
7316

dengyihao's avatar
dengyihao 已提交
7317
  pOperator->name = "JoinOperator";
7318
  pOperator->operatorType = QUERY_NODE_PHYSICAL_PLAN_JOIN;
7319
  pOperator->blockingOptr = false;
dengyihao's avatar
dengyihao 已提交
7320 7321 7322 7323 7324 7325 7326
  pOperator->status = OP_NOT_OPENED;
  pOperator->pExpr = pExprInfo;
  pOperator->numOfOutput = numOfCols;
  pOperator->info = pInfo;
  pOperator->pTaskInfo = pTaskInfo;
  pOperator->getNextFn = doMergeJoin;
  pOperator->closeFn = destroyBasicOperatorInfo;
7327 7328 7329 7330

  int32_t code = appendDownstream(pOperator, pDownstream, numOfDownstream);
  return pOperator;

dengyihao's avatar
dengyihao 已提交
7331
_error:
7332 7333 7334 7335
  taosMemoryFree(pInfo);
  taosMemoryFree(pOperator);
  pTaskInfo->code = TSDB_CODE_OUT_OF_MEMORY;
  return NULL;
dengyihao's avatar
dengyihao 已提交
7336
}