qExecutor.h 27.5 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/>.
 */
H
Haojun Liao 已提交
15 16
#ifndef TDENGINE_QEXECUTOR_H
#define TDENGINE_QEXECUTOR_H
17 18 19 20

#include "os.h"

#include "hash.h"
H
Haojun Liao 已提交
21
#include "qAggMain.h"
H
Haojun Liao 已提交
22 23
#include "qFill.h"
#include "qResultbuf.h"
24
#include "qSqlparser.h"
H
Haojun Liao 已提交
25
#include "qTableMeta.h"
H
Haojun Liao 已提交
26
#include "qTsbuf.h"
27
#include "query.h"
28
#include "taosdef.h"
H
Haojun Liao 已提交
29
#include "tarray.h"
B
Bomin Zhang 已提交
30
#include "tlockfree.h"
H
Haojun Liao 已提交
31
#include "tsdb.h"
H
Haojun Liao 已提交
32
#include "qUdf.h"
33 34

struct SColumnFilterElem;
35
typedef bool (*__filter_func_t)(struct SColumnFilterElem* pFilter, const char* val1, const char* val2, int16_t type);
H
hjxilinx 已提交
36
typedef int32_t (*__block_search_fn_t)(char* data, int32_t num, int64_t key, int32_t order);
37

H
Haojun Liao 已提交
38 39 40 41 42 43
#define IS_QUERY_KILLED(_q) ((_q)->code == TSDB_CODE_TSC_QUERY_CANCELLED)
#define Q_STATUS_EQUAL(p, s)  (((p) & (s)) != 0u)
#define QUERY_IS_ASC_QUERY(q) (GET_FORWARD_DIRECTION_FACTOR((q)->order.order) == QUERY_ASC_FORWARD_STEP)

#define GET_TABLEGROUP(q, _index)   ((SArray*) taosArrayGetP((q)->tableqinfoGroupInfo.pGroupList, (_index)))

H
Haojun Liao 已提交
44 45
#define GET_NUM_OF_RESULTS(_r) (((_r)->outputBuf) == NULL? 0:((_r)->outputBuf)->info.rows)

46 47
#define RESET_NUM_OF_RESULTS(_r) (((_r)->outputBuf) == NULL? 0:(((_r)->outputBuf)->info.rows = 0))

48
#define NEEDTO_COMPRESS_QUERY(size) ((size) > tsCompressColData? 1 : 0)
49

H
Haojun Liao 已提交
50 51 52 53 54 55 56 57
enum {
  // when query starts to execute, this status will set
      QUERY_NOT_COMPLETED = 0x1u,

  /* query is over
   * 1. this status is used in one row result query process, e.g., count/sum/first/last/ avg...etc.
   * 2. when all data within queried time window, it is also denoted as query_completed
   */
H
Haojun Liao 已提交
58
      QUERY_COMPLETED = 0x2u,
H
Haojun Liao 已提交
59 60 61 62

  /* when the result is not completed return to client, this status will be
   * usually used in case of interval query with interpolation option
   */
H
Haojun Liao 已提交
63
      QUERY_OVER = 0x4u,
H
Haojun Liao 已提交
64 65
};

D
dapan1121 已提交
66 67 68 69
enum {
  OPTION_SWITCH_TABLE = 1,
};

H
Haojun Liao 已提交
70
typedef struct SResultRowPool {
71 72 73 74 75 76 77 78 79 80
  int32_t elemSize;
  int32_t blockSize;
  int32_t numOfElemPerBlock;

  struct {
    int32_t blockIndex;
    int32_t pos;
  } position;

  SArray* pData;    // SArray<void*>
H
Haojun Liao 已提交
81
} SResultRowPool;
82

H
Haojun Liao 已提交
83
typedef struct SResultRow {
84
  int32_t       pageId;      // pageId & rowId is the position of current result in disk-based output buffer
85
  int32_t       offset:29;   // row index in buffer page
86 87 88 89
  bool          startInterp; // the time window start timestamp has done the interpolation already.
  bool          endInterp;   // the time window end timestamp has done the interpolation already.
  bool          closed;      // this result status: closed or opened
  uint32_t      numOfRows;   // number of rows of current time window
H
Haojun Liao 已提交
90
  SResultRowCellInfo*  pCellInfo;  // For each result column, there is a resultInfo
91 92
  STimeWindow   win;
  char         *key;               // start key of current result row
wmmhello's avatar
wmmhello 已提交
93
  SHashObj     *uniqueHash;  // for unique function
wmmhello's avatar
wmmhello 已提交
94
  SHashObj     *modeHash;  // for unique function
H
Haojun Liao 已提交
95
} SResultRow;
96

97 98 99 100 101
typedef struct SResultRowCell {
  uint64_t     groupId;
  SResultRow  *pRow;
} SResultRowCell;

102
typedef struct SGroupResInfo {
H
Haojun Liao 已提交
103 104
  int32_t totalGroup;
  int32_t currentGroup;
105 106
  int32_t index;
  SArray* pRows;      // SArray<SResultRow*>
107 108
  bool    ordered;
  int32_t position;
109 110
} SGroupResInfo;

H
Haojun Liao 已提交
111 112 113 114
/**
 * If the number of generated results is greater than this value,
 * query query will be halt and return results to client immediate.
 */
H
Haojun Liao 已提交
115
typedef struct SRspResultInfo {
H
Haojun Liao 已提交
116
  int64_t total;      // total generated result size in rows
H
Haojun Liao 已提交
117
  int32_t capacity;   // capacity of current result output buffer
H
Haojun Liao 已提交
118
  int32_t threshold;  // result size threshold in rows.
H
Haojun Liao 已提交
119
} SRspResultInfo;
120

H
Haojun Liao 已提交
121
typedef struct SResultRowInfo {
H
Haojun Liao 已提交
122 123 124 125
  SResultRow** pResult;    // result list
  int16_t      type:8;     // data type for hash key
  int32_t      size:24;    // number of result set
  int32_t      capacity;   // max capacity
126
  int32_t      curPos;     // current active result row index of pResult list
H
Haojun Liao 已提交
127
} SResultRowInfo;
128 129 130 131 132

typedef struct SColumnFilterElem {
  int16_t           bytes;  // column length
  __filter_func_t   fp;
  SColumnFilterInfo filterInfo;
Y
yihaoDeng 已提交
133
  void              *q;
134 135 136
} SColumnFilterElem;

typedef struct SSingleColumnFilterInfo {
H
Haojun Liao 已提交
137
  void*              pData;
W
wpan 已提交
138
  void*              pData2;  //used for nchar column
139
  int32_t            numOfFilters;
H
Haojun Liao 已提交
140
  SColumnInfo        info;
141 142 143
  SColumnFilterElem* pFilters;
} SSingleColumnFilterInfo;

H
Haojun Liao 已提交
144
typedef struct STableQueryInfo {
H
hjxilinx 已提交
145
  TSKEY       lastKey;
H
Haojun Liao 已提交
146
  int32_t     groupIndex;     // group id in table list
147
  tVariant    tag;
H
hjxilinx 已提交
148
  STimeWindow win;
149
  STSCursor   cur;
H
Haojun Liao 已提交
150
  void*       pTable;         // for retrieve the page id list
H
Haojun Liao 已提交
151
  SResultRowInfo resInfo;
152 153
} STableQueryInfo;

154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
typedef enum {
  QUERY_PROF_BEFORE_OPERATOR_EXEC = 0,
  QUERY_PROF_AFTER_OPERATOR_EXEC,
  QUERY_PROF_QUERY_ABORT
} EQueryProfEventType;

typedef struct {
  EQueryProfEventType eventType;
  int64_t eventTime;

  union {
    uint8_t operatorType; //for operator event
    int32_t abortCode; //for query abort event
  };
} SQueryProfEvent;

typedef struct {
  uint8_t operatorType;
  int64_t sumSelfTime;
  int64_t sumRunTimes;
} SOperatorProfResult;

H
Haojun Liao 已提交
176 177 178 179 180 181 182 183 184
typedef struct SQueryCostInfo {
  uint64_t loadStatisTime;
  uint64_t loadFileBlockTime;
  uint64_t loadDataInCacheTime;
  uint64_t loadStatisSize;
  uint64_t loadFileBlockSize;
  uint64_t loadDataInCacheSize;
  
  uint64_t loadDataTime;
185 186 187 188
  uint64_t totalRows;
  uint64_t totalCheckedRows;
  uint32_t totalBlocks;
  uint32_t loadBlocks;
H
Haojun Liao 已提交
189 190
  uint32_t loadBlockStatis;
  uint32_t discardBlocks;
191
  uint64_t elapsedTime;
H
Haojun Liao 已提交
192
  uint64_t firstStageMergeTime;
H
Haojun Liao 已提交
193 194
  uint64_t winInfoSize;
  uint64_t tableInfoSize;
H
Haojun Liao 已提交
195
  uint64_t hashSize;
196
  uint64_t numOfTimeWindows;
197 198 199

  SArray*   queryProfEvents;  //SArray<SQueryProfEvent>
  SHashObj* operatorProfResults; //map<operator_type, SQueryProfEvent>
H
Haojun Liao 已提交
200
} SQueryCostInfo;
H
hjxilinx 已提交
201

H
Haojun Liao 已提交
202 203 204 205 206
typedef struct {
  int64_t vgroupLimit;
  int64_t ts;
} SOrderedPrjQueryInfo;

207 208 209 210 211
typedef struct {
  char*   tags;
  SArray* pResult;  // SArray<SStddevInterResult>
} SInterResult;

H
Haojun Liao 已提交
212 213 214 215 216 217
typedef struct SSDataBlock {
  SDataStatis *pBlockStatis;
  SArray      *pDataBlock;
  SDataBlockInfo info;
} SSDataBlock;

H
Haojun Liao 已提交
218
// The basic query information extracted from the SQueryInfo tree to support the
H
Haojun Liao 已提交
219
// execution of query in a data node.
H
Haojun Liao 已提交
220
typedef struct SQueryAttr {
H
Haojun Liao 已提交
221
  SLimitVal        limit;
H
Haojun Liao 已提交
222
  SLimitVal        slimit;
H
Haojun Liao 已提交
223

H
Haojun Liao 已提交
224 225 226 227 228 229 230
  bool             stableQuery;      // super table query or not
  bool             topBotQuery;      // TODO used bitwise flag
  bool             groupbyColumn;    // denote if this is a groupby normal column query
  bool             hasTagResults;    // if there are tag values in final result or not
  bool             timeWindowInterpo;// if the time window start/end required interpolation
  bool             queryBlockDist;    // if query data block distribution
  bool             stabledev;        // super table stddev query
H
Haojun Liao 已提交
231
  bool             tsCompQuery;      // is tscomp query
232
  bool             diffQuery;        // is diff query
wmmhello's avatar
wmmhello 已提交
233
  bool             stateQuery;       // is state query
H
Haojun Liao 已提交
234 235
  bool             simpleAgg;
  bool             pointInterpQuery; // point interpolation query
236
  bool             needTableSeqScan; // need scan table by table
H
Haojun Liao 已提交
237
  bool             needReverseScan;  // need reverse scan
Y
TD-5438  
yihaoDeng 已提交
238
  bool             distinct;         // distinct  query or not
239
  bool             stateWindow;       // window State on sub/normal table
W
fix bug  
wpan 已提交
240
  bool             createFilterOperator; // if filter operator is needed
241
  bool             multigroupResult; // multigroup result can exist in one SSDataBlock
242
  bool             needSort;         // need sort rowRes
243
  bool             skipOffset;       // can skip offset if true 
H
Haojun Liao 已提交
244
  int32_t          interBufSize;     // intermediate buffer sizse
H
Haojun Liao 已提交
245

D
dapan1121 已提交
246 247
  int32_t          havingNum;        // having expr number

H
Haojun Liao 已提交
248
  SOrderVal        order;
H
Haojun Liao 已提交
249 250
  int16_t          numOfCols;
  int16_t          numOfTags;
H
Haojun Liao 已提交
251

H
Haojun Liao 已提交
252
  STimeWindow      window;
D
dapan1121 已提交
253
  STimeWindow      range;
254
  SInterval        interval;
255
  SSessionWindow   sw;
256
  int16_t          precision;
H
Haojun Liao 已提交
257 258
  int16_t          numOfOutput;
  int16_t          fillType;
259 260 261

  int32_t          srcRowSize;       // todo extract struct
  int32_t          resultRowSize;
H
Haojun Liao 已提交
262
  int32_t          intermediateResultRowSize; // intermediate result row size, in case of top-k query.
H
Haojun Liao 已提交
263
  int32_t          maxTableColumnWidth;
264
  int32_t          tagLen;           // tag value length of current query
H
Haojun Liao 已提交
265
  SGroupbyExpr    *pGroupbyExpr;
H
Haojun Liao 已提交
266

H
Haojun Liao 已提交
267
  SExprInfo*       pExpr1;
H
Haojun Liao 已提交
268 269
  SExprInfo*       pExpr2;
  int32_t          numOfExpr2;
H
Haojun Liao 已提交
270 271 272
  SExprInfo*       pExpr3;
  int32_t          numOfExpr3;

H
Haojun Liao 已提交
273
  SColumnInfo*     tableCols;
H
Haojun Liao 已提交
274 275 276
  SColumnInfo*     tagColList;
  int32_t          numOfFilterCols;
  int64_t*         fillVal;
277
  SOrderedPrjQueryInfo prjInfo;        // limit value for each vgroup, only available in global order projection query.
H
Haojun Liao 已提交
278

D
dapan1121 已提交
279
  SSingleColumnFilterInfo* pFilterInfo;
W
wpan 已提交
280
  void            *pFilters;
D
dapan1121 已提交
281
  
H
Haojun Liao 已提交
282 283
  void*            tsdb;
  SMemRef          memRef;
H
Haojun Liao 已提交
284
  STableGroupInfo  tableGroupInfo;       // table <tid, last_key> list  SArray<STableKeyInfo>
H
Haojun Liao 已提交
285
  int32_t          vgId;
286
  SArray          *pUdfInfo;             // no need to free
wmmhello's avatar
wmmhello 已提交
287
  int32_t          interBytesForGlobal;
H
Haojun Liao 已提交
288
} SQueryAttr;
289

H
Haojun Liao 已提交
290
typedef SSDataBlock* (*__operator_fn_t)(void* param, bool* newgroup);
D
dapan1121 已提交
291
typedef void (*__operator_notify_fn_t)(void* param, int32_t option);
H
Haojun Liao 已提交
292
typedef void (*__optr_cleanup_fn_t)(void* param, int32_t num);
H
Haojun Liao 已提交
293

H
Haojun Liao 已提交
294
struct SOperatorInfo;
H
Haojun Liao 已提交
295

296
typedef struct SQueryRuntimeEnv {
H
Haojun Liao 已提交
297
  jmp_buf               env;
H
Haojun Liao 已提交
298
  SQueryAttr*           pQueryAttr;
H
Haojun Liao 已提交
299
  uint32_t              status;           // query status
H
Haojun Liao 已提交
300
  void*                 qinfo;
H
Haojun Liao 已提交
301
  uint8_t               scanFlag;         // denotes reversed scan of data or not
H
Haojun Liao 已提交
302 303 304
  void*                 pQueryHandle;

  int32_t               prevGroupId;      // previous executed group id
305
  bool                  enableGroupData;
H
Haojun Liao 已提交
306 307
  SDiskbasedResultBuf*  pResultBuf;       // query result buffer based on blocked-wised disk file
  SHashObj*             pResultRowHashTable; // quick locate the window object for each result
308
  SHashObj*             pResultRowListSet;   // used to check if current ResultRowInfo has ResultRow object or not
309
  SArray*               pResultRowArrayList; // The array list that contains the Result rows
H
Haojun Liao 已提交
310
  char*                 keyBuf;           // window key buffer
311
  SResultRowPool*       pool;             // The window result objects pool, all the resultRow Objects are allocated and managed by this object.
H
Haojun Liao 已提交
312 313 314 315 316 317 318
  char**                prevRow;

  SArray*               prevResult;       // intermediate result, SArray<SInterResult>
  STSBuf*               pTsBuf;           // timestamp filter list
  STSCursor             cur;

  char*                 tagVal;           // tag value of current data block
S
shenglian zhou 已提交
319
  SScalarExprSupport*sasArray;
H
Haojun Liao 已提交
320 321 322

  SSDataBlock          *outputBuf;
  STableGroupInfo       tableqinfoGroupInfo;  // this is a group array list, including SArray<STableQueryInfo*> structure
H
Haojun Liao 已提交
323 324 325
  struct SOperatorInfo *proot;
  SGroupResInfo         groupResInfo;
  int64_t               currentOffset;   // dynamic offset value
H
Haojun Liao 已提交
326

H
Haojun Liao 已提交
327
  STableQueryInfo      *current;
H
Haojun Liao 已提交
328
  SRspResultInfo        resultInfo;
H
Haojun Liao 已提交
329
  SHashObj             *pTableRetrieveTsMap;
D
dapan1121 已提交
330 331
  SUdfInfo             *pUdfInfo;  
  bool                  udfIsCopy;
332 333
  SHashObj             *pTablesRead;    // record child tables already read rows by tid hash
  int32_t              cntTableReadOver; // read table over count  
334 335
} SQueryRuntimeEnv;

H
Haojun Liao 已提交
336 337 338 339 340 341
enum {
  OP_IN_EXECUTING   = 1,
  OP_RES_TO_RETURN  = 2,
  OP_EXEC_DONE      = 3,
};

H
Haojun Liao 已提交
342 343 344 345 346
enum OPERATOR_TYPE_E {
  OP_TableScan         = 1,
  OP_DataBlocksOptScan = 2,
  OP_TableSeqScan      = 3,
  OP_TagScan           = 4,
H
Haojun Liao 已提交
347 348
  OP_TableBlockInfoScan= 5,
  OP_Aggregate         = 6,
349
  OP_Project           = 7,
H
Haojun Liao 已提交
350 351
  OP_Groupby           = 8,
  OP_Limit             = 9,
H
Haojun Liao 已提交
352
  OP_SLimit            = 10,
353 354 355 356 357
  OP_TimeWindow        = 11,
  OP_SessionWindow     = 12,
  OP_Fill              = 13,
  OP_MultiTableAggregate     = 14,
  OP_MultiTableTimeInterval  = 15,
H
Haojun Liao 已提交
358
  OP_DummyInput        = 16,   //TODO remove it after fully refactor.
H
Haojun Liao 已提交
359
  OP_MultiwayMergeSort = 17,   // multi-way data merge into one input stream.
H
Haojun Liao 已提交
360
  OP_GlobalAggregate   = 18,   // global merge for the multi-way data sources.
361 362
  OP_Filter            = 19,
  OP_Distinct          = 20,
H
Haojun Liao 已提交
363
  OP_Join              = 21,
Y
yihaoDeng 已提交
364
  OP_StateWindow       = 22,
D
dapan1121 已提交
365
  OP_TimeEvery         = 23,
S
Shengliang Guan 已提交
366
  OP_AllMultiTableTimeInterval = 24,
367
  OP_Order             = 25,
H
Haojun Liao 已提交
368 369
};

H
Haojun Liao 已提交
370
typedef struct SOperatorInfo {
H
Haojun Liao 已提交
371
  uint8_t               operatorType;
372 373 374 375 376
  bool                  blockingOptr;   // block operator or not
  uint8_t               status;         // denote if current operator is completed
  int32_t               numOfOutput;    // number of columns of the current operator results
  char                 *name;           // name, used to show the query execution plan
  void                 *info;           // extension attribution
H
Haojun Liao 已提交
377 378
  SExprInfo            *pExpr;
  SQueryRuntimeEnv     *pRuntimeEnv;
H
Haojun Liao 已提交
379

H
Haojun Liao 已提交
380 381
  struct SOperatorInfo **upstream;     // upstream pointer list
  int32_t               numOfUpstream; // number of upstream. The value is always ONE expect for join operator
D
dapan1121 已提交
382 383 384
  __operator_fn_t        exec;
  __operator_notify_fn_t notify;
  __optr_cleanup_fn_t    cleanup;
H
Haojun Liao 已提交
385 386
} SOperatorInfo;

387 388 389 390 391
enum {
  QUERY_RESULT_NOT_READY = 1,
  QUERY_RESULT_READY     = 2,
};

H
Haojun Liao 已提交
392 393 394 395 396 397
typedef struct {
  int32_t      numOfTags;
  int32_t      numOfCols;
  SColumnInfo *colList;
} SQueriedTableInfo;

398
typedef struct SQInfo {
H
Haojun Liao 已提交
399
  void*            signature;
D
dapan1121 已提交
400
  uint64_t         qId;
H
Haojun Liao 已提交
401 402
  int32_t          code;        // error code to returned to client
  int64_t          owner;       // if it is in execution
H
Haojun Liao 已提交
403

404
  SQueryRuntimeEnv runtimeEnv;
H
Haojun Liao 已提交
405
  SQueryAttr       query;
406
  void*            pBuf;        // allocated buffer for STableQueryInfo, sizeof(STableQueryInfo)*numOfTables;
H
Haojun Liao 已提交
407

408
  pthread_mutex_t  lock;        // used to synchronize the rsp/query threads
H
Haojun Liao 已提交
409
  tsem_t           ready;
410 411
  int32_t          dataReady;   // denote if query result is ready or not
  void*            rspContext;  // response context
412
  int64_t          startExecTs; // start to exec timestamp
413
  int64_t          lastRetrieveTs; // last retrieve timestamp  
414
  char*            sql;         // query sql string
H
Haojun Liao 已提交
415
  SQueryCostInfo   summary;
416 417
} SQInfo;

H
Haojun Liao 已提交
418 419 420
typedef struct SQueryParam {
  char            *sql;
  char            *tagCond;
D
dapan1121 已提交
421
  char            *colCond;
H
Haojun Liao 已提交
422 423
  char            *prevResult;
  SArray          *pTableIdList;
H
Haojun Liao 已提交
424 425
  SSqlExpr       **pExpr;
  SSqlExpr       **pSecExpr;
H
Haojun Liao 已提交
426 427 428
  SExprInfo       *pExprs;
  SExprInfo       *pSecExprs;

W
wpan 已提交
429
  void            *pFilters;
D
dapan1121 已提交
430

H
Haojun Liao 已提交
431 432
  SColIndex       *pGroupColIndex;
  SColumnInfo     *pTagColumnInfo;
H
Haojun Liao 已提交
433
  SGroupbyExpr *pGroupbyExpr;
H
Haojun Liao 已提交
434 435
  int32_t          tableScanOperator;
  SArray          *pOperator;
H
Haojun Liao 已提交
436
  SUdfInfo        *pUdfInfo;
437 438
  int16_t         schemaVersion;
  int16_t         tagVersion;
H
Haojun Liao 已提交
439 440
} SQueryParam;

W
wpan 已提交
441 442 443 444 445
typedef struct SColumnDataParam{
  int32_t numOfCols;
  SArray* pDataBlock;
} SColumnDataParam;

H
Haojun Liao 已提交
446
typedef struct STableScanInfo {
H
Haojun Liao 已提交
447 448 449 450 451 452 453 454 455 456 457 458
  void           *pQueryHandle;
  int32_t         numOfBlocks;
  int32_t         numOfSkipped;
  int32_t         numOfBlockStatis;
  int64_t         numOfRows;
                 
  int32_t         order;        // scan order
  int32_t         times;        // repeat counts
  int32_t         current;
  int32_t         reverseTimes; // 0 by default

  SQLFunctionCtx *pCtx;         // next operator query context
H
Haojun Liao 已提交
459
  SResultRowInfo *pResultRowInfo;
H
Haojun Liao 已提交
460 461
  int32_t        *rowCellInfoOffset;
  SExprInfo      *pExpr;
H
Haojun Liao 已提交
462
  SSDataBlock     block;
H
Haojun Liao 已提交
463
  int32_t         numOfOutput;
H
Haojun Liao 已提交
464
  int64_t         elapsedTime;
H
Haojun Liao 已提交
465

H
Haojun Liao 已提交
466
  int32_t         tableIndex;
467
  int32_t         prevGroupId;     // previous table group id
H
Haojun Liao 已提交
468 469
} STableScanInfo;

470 471 472
typedef struct STagScanInfo {
  SColumnInfo* pCols;
  SSDataBlock* pRes;
H
Haojun Liao 已提交
473
  int32_t      totalTables;
474
  int32_t      curPos;
475 476
} STagScanInfo;

H
Haojun Liao 已提交
477
typedef struct SOptrBasicInfo {
H
Haojun Liao 已提交
478
  SResultRowInfo    resultRowInfo;
H
Haojun Liao 已提交
479
  int32_t          *rowCellInfoOffset;  // offset value for each row result cell info
H
Haojun Liao 已提交
480
  SQLFunctionCtx   *pCtx;
H
Haojun Liao 已提交
481
  SSDataBlock      *pRes;
H
Haojun Liao 已提交
482 483
} SOptrBasicInfo;

H
Haojun Liao 已提交
484 485 486 487 488 489
typedef struct SOptrBasicInfo STableIntervalOperatorInfo;

typedef struct SAggOperatorInfo {
  SOptrBasicInfo binfo;
  uint32_t       seed;
} SAggOperatorInfo;
H
Haojun Liao 已提交
490

491
typedef struct SProjectOperatorInfo {
H
Haojun Liao 已提交
492 493
  SOptrBasicInfo binfo;
  int32_t        bufCapacity;
H
Haojun Liao 已提交
494
  uint32_t       seed;
H
Haojun Liao 已提交
495 496

  SSDataBlock   *existDataBlock;
497
} SProjectOperatorInfo;
H
Haojun Liao 已提交
498

D
dapan1121 已提交
499
typedef struct STimeEveryOperatorInfo {
D
dapan1121 已提交
500 501 502 503 504 505
  SOptrBasicInfo binfo;
  int32_t        bufCapacity;
  uint32_t       seed;
  
  int64_t        tableEndKey;
  SSDataBlock   *lastBlock;
D
dapan1121 已提交
506 507
  SHashObj      *rangeStart;
  int32_t        lastGroupIdx;
D
dapan1121 已提交
508 509 510 511
  
  bool           groupDone;
  bool           allDone;
  SSDataBlock   *existDataBlock;
D
dapan1121 已提交
512
} STimeEveryOperatorInfo;
D
dapan1121 已提交
513

H
Haojun Liao 已提交
514
typedef struct SLimitOperatorInfo {
H
Haojun Liao 已提交
515 516
  int64_t   limit;
  int64_t   total;
H
Haojun Liao 已提交
517 518
} SLimitOperatorInfo;

H
Haojun Liao 已提交
519
typedef struct SSLimitOperatorInfo {
520 521 522 523 524 525 526 527 528 529 530 531 532
  int64_t      groupTotal;
  int64_t      currentGroupOffset;

  int64_t      rowsTotal;
  int64_t      currentOffset;
  SLimitVal    limit;
  SLimitVal    slimit;

  char       **prevRow;
  SArray      *orderColumnList;
  bool         hasPrev;
  bool         ignoreCurrentGroup;
  bool         multigroupResult;
533
  SSDataBlock *pRes;   // result buffer
534
  SSDataBlock *pPrevBlock;
535 536
  int64_t      capacity;
  int64_t      threshold;
H
Haojun Liao 已提交
537
} SSLimitOperatorInfo;
D
dapan1121 已提交
538

H
Haojun Liao 已提交
539
typedef struct SFilterOperatorInfo {
540 541
  SSingleColumnFilterInfo *pFilterInfo;
  int32_t numOfFilterCols;
H
Haojun Liao 已提交
542
} SFilterOperatorInfo;
D
dapan1121 已提交
543

H
Haojun Liao 已提交
544
typedef struct SFillOperatorInfo {
H
Haojun Liao 已提交
545
  SFillInfo   *pFillInfo;
H
Haojun Liao 已提交
546 547
  SSDataBlock *pRes;
  int64_t      totalInputRows;
548
  void       **p;
H
Haojun Liao 已提交
549
  SSDataBlock *existNewGroupBlock;
550
  bool         multigroupResult;
H
Haojun Liao 已提交
551 552
} SFillOperatorInfo;

H
Haojun Liao 已提交
553 554 555
typedef struct SGroupbyOperatorInfo {
  SOptrBasicInfo binfo;
  int32_t        colIndex;
H
Haojun Liao 已提交
556
  char          *prevData;   // previous group by value
H
Haojun Liao 已提交
557
} SGroupbyOperatorInfo;
H
Haojun Liao 已提交
558

559 560 561 562 563 564
typedef struct SSWindowOperatorInfo {
  SOptrBasicInfo binfo;
  STimeWindow    curWindow;  // current time window
  TSKEY          prevTs;     // previous timestamp
  int32_t        numOfRows;  // number of rows
  int32_t        start;      // start row index
565
  bool           reptScan;    // next round scan
566 567
} SSWindowOperatorInfo;

Y
TD-2570  
yihaoDeng 已提交
568 569 570 571 572 573 574
typedef struct SStateWindowOperatorInfo {
  SOptrBasicInfo binfo;
  STimeWindow    curWindow;  // current time window
  int32_t        numOfRows;  // number of rows
  int32_t        colIndex;      // start row index
  int32_t        start;
  char*          prevData;    // previous data 
575
  bool           reptScan;
H
Haojun Liao 已提交
576
} SStateWindowOperatorInfo;
Y
TD-2570  
yihaoDeng 已提交
577

578 579 580 581 582 583
typedef struct SDistinctDataInfo {
  int32_t index;
  int32_t type;
  int32_t bytes;
} SDistinctDataInfo; 

584 585 586 587 588 589
typedef struct SDistinctOperatorInfo {
  SHashObj         *pSet;
  SSDataBlock      *pRes;
  bool              recordNullVal;  //has already record the null value, no need to try again
  int64_t           threshold;
  int64_t           outputCapacity;
590 591 592
  int32_t           totalBytes; 
  char*             buf;
  SArray*           pDistinctDataInfo; 
593 594
} SDistinctOperatorInfo;

H
Haojun Liao 已提交
595
struct SGlobalMerger;
H
Haojun Liao 已提交
596 597

typedef struct SMultiwayMergeInfo {
H
Haojun Liao 已提交
598
  struct SGlobalMerger *pMerge;
H
Haojun Liao 已提交
599
  SOptrBasicInfo       binfo;
H
Haojun Liao 已提交
600
  int32_t              bufCapacity;
H
Haojun Liao 已提交
601 602 603
  int64_t              seed;
  char               **prevRow;
  SArray              *orderColumnList;
604
  int32_t              resultRowFactor;
H
Haojun Liao 已提交
605

H
Haojun Liao 已提交
606 607
  bool                 hasGroupColData;
  char               **currentGroupColData;
H
Haojun Liao 已提交
608 609 610 611
  SArray              *groupColumnList;
  bool                 hasDataBlockForNewGroup;
  SSDataBlock         *pExistBlock;

H
Haojun Liao 已提交
612
  SArray              *udfInfo;
613 614
  bool                 hasPrev;
  bool                 multiGroupResults;
H
Haojun Liao 已提交
615 616
} SMultiwayMergeInfo;

H
Haojun Liao 已提交
617 618 619 620 621 622 623
// todo support the disk-based sort
typedef struct SOrderOperatorInfo {
  int32_t      colIndex;
  int32_t      order;
  SSDataBlock *pDataBlock;
} SOrderOperatorInfo;

H
Haojun Liao 已提交
624 625
void appendUpstream(SOperatorInfo* p, SOperatorInfo* pUpstream);

H
Haojun Liao 已提交
626 627 628 629 630
SOperatorInfo* createDataBlocksOptScanInfo(void* pTsdbQueryHandle, SQueryRuntimeEnv* pRuntimeEnv, int32_t repeatTime, int32_t reverseTime);
SOperatorInfo* createTableScanOperator(void* pTsdbQueryHandle, SQueryRuntimeEnv* pRuntimeEnv, int32_t repeatTime);
SOperatorInfo* createTableSeqScanOperator(void* pTsdbQueryHandle, SQueryRuntimeEnv* pRuntimeEnv);

SOperatorInfo* createAggregateOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
631
SOperatorInfo* createProjectOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
H
Haojun Liao 已提交
632 633 634
SOperatorInfo* createLimitOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream);
SOperatorInfo* createTimeIntervalOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
SOperatorInfo* createSWindowOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
635
SOperatorInfo* createFillOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput, bool multigroupResult);
H
Haojun Liao 已提交
636 637 638
SOperatorInfo* createGroupbyOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
SOperatorInfo* createMultiTableAggOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
SOperatorInfo* createMultiTableTimeIntervalOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
D
dapan1121 已提交
639
SOperatorInfo* createTimeEveryOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
H
Haojun Liao 已提交
640
SOperatorInfo* createTagScanOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SExprInfo* pExpr, int32_t numOfOutput);
641
SOperatorInfo* createDistinctOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
H
Haojun Liao 已提交
642
SOperatorInfo* createTableBlockInfoScanOperator(void* pTsdbQueryHandle, SQueryRuntimeEnv* pRuntimeEnv);
H
Haojun Liao 已提交
643
SOperatorInfo* createMultiwaySortOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SExprInfo* pExpr, int32_t numOfOutput,
644 645
                                              int32_t numOfRows, void* merger);
SOperatorInfo* createGlobalAggregateOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput, void* param, SArray* pUdfInfo, bool groupResultMixedUp);
Y
TD-2570  
yihaoDeng 已提交
646
SOperatorInfo* createStatewindowOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput);
647
SOperatorInfo* createSLimitOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput, void* merger, bool multigroupResult);
H
Haojun Liao 已提交
648 649
SOperatorInfo* createFilterOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr,
                                        int32_t numOfOutput, SColumnInfo* pCols, int32_t numOfFilter);
H
Haojun Liao 已提交
650

651
SOperatorInfo* createJoinOperatorInfo(SOperatorInfo** pUpstream, int32_t numOfUpstream, SSchema* pSchema, int32_t numOfOutput);
wmmhello's avatar
wmmhello 已提交
652
SOperatorInfo* createOrderOperatorInfo(SQueryRuntimeEnv* pRuntimeEnv, SOperatorInfo* upstream, SExprInfo* pExpr, int32_t numOfOutput, SOrderVal* pOrderVal);
H
Haojun Liao 已提交
653

H
Haojun Liao 已提交
654
SSDataBlock* doGlobalAggregate(void* param, bool* newgroup);
H
Haojun Liao 已提交
655
SSDataBlock* doMultiwayMergeSort(void* param, bool* newgroup);
H
Haojun Liao 已提交
656
SSDataBlock* doSLimit(void* param, bool* newgroup);
H
Haojun Liao 已提交
657

658 659 660 661 662
int32_t doCreateFilterInfo(SColumnInfo* pCols, int32_t numOfCols, int32_t numOfFilterCols, SSingleColumnFilterInfo** pFilterInfo, uint64_t qId);
void doSetFilterColumnInfo(SSingleColumnFilterInfo* pFilterInfo, int32_t numOfFilterCols, SSDataBlock* pBlock);
bool doFilterDataBlock(SSingleColumnFilterInfo* pFilterInfo, int32_t numOfFilterCols, int32_t numOfRows, int8_t* p);
void doCompactSDataBlock(SSDataBlock* pBlock, int32_t numOfRows, int8_t* p);

H
Haojun Liao 已提交
663
SSDataBlock* createOutputBuf(SExprInfo* pExpr, int32_t numOfOutput, int32_t numOfRows);
664

665
void* destroyOutputBuf(SSDataBlock* pBlock);
666
void* doDestroyFilterInfo(SSingleColumnFilterInfo* pFilterInfo, int32_t numOfFilterCols);
667

H
Haojun Liao 已提交
668 669 670
void setInputDataBlock(SOperatorInfo* pOperator, SQLFunctionCtx* pCtx, SSDataBlock* pBlock, int32_t order);
int32_t getNumOfResult(SQueryRuntimeEnv *pRuntimeEnv, SQLFunctionCtx* pCtx, int32_t numOfOutput);
void finalizeQueryResult(SOperatorInfo* pOperator, SQLFunctionCtx* pCtx, SResultRowInfo* pResultRowInfo, int32_t* rowCellInfoOffset);
671 672
void updateOutputBuf(SOptrBasicInfo* pBInfo, int32_t *bufCapacity, int32_t numOfInputRows, SQueryRuntimeEnv* runtimeEnv, bool extendLarge);
void shrinkOutputBuf(SOptrBasicInfo* pBInfo, int32_t *bufCapacity);
673
void clearOutputBuf(SOptrBasicInfo* pBInfo, int32_t *bufCapacity);
674
void copyTsColoum(SSDataBlock* pRes, SQLFunctionCtx* pCtx, int32_t numOfOutput);
H
Haojun Liao 已提交
675

H
Haojun Liao 已提交
676 677
void freeParam(SQueryParam *param);
int32_t convertQueryMsg(SQueryTableMsg *pQueryMsg, SQueryParam* param);
H
Haojun Liao 已提交
678
int32_t createQueryFunc(SQueriedTableInfo* pTableInfo, int32_t numOfOutput, SExprInfo** pExprInfo,
H
Haojun Liao 已提交
679
                        SSqlExpr** pExprMsg, SColumnInfo* pTagCols, int32_t queryType, void* pMsg, SUdfInfo* pUdfInfo);
H
Haojun Liao 已提交
680

H
Haojun Liao 已提交
681
int32_t createIndirectQueryFuncExprFromMsg(SQueryTableMsg *pQueryMsg, int32_t numOfOutput, SExprInfo **pExprInfo,
H
Haojun Liao 已提交
682
                                           SSqlExpr **pExpr, SExprInfo *prevExpr, SUdfInfo *pUdfInfo);
H
Haojun Liao 已提交
683

684
int32_t createQueryFilter(char *data, int32_t len, void** pFilters);
D
dapan1121 已提交
685

H
Haojun Liao 已提交
686 687
SGroupbyExpr *createGroupbyExprFromMsg(SQueryTableMsg *pQueryMsg, SColIndex *pColIndex, int32_t *code);
SQInfo *createQInfoImpl(SQueryTableMsg *pQueryMsg, SGroupbyExpr *pGroupbyExpr, SExprInfo *pExprs,
W
wpan 已提交
688
                        SExprInfo *pSecExprs, STableGroupInfo *pTableGroupInfo, SColumnInfo* pTagCols, void* pFilters, int32_t vgId, char* sql, uint64_t qId, SUdfInfo* pUdfInfo);
H
Haojun Liao 已提交
689

H
Haojun Liao 已提交
690
int32_t initQInfo(STsBufInfo* pTsBufInfo, void* tsdb, void* sourceOptr, SQInfo* pQInfo, SQueryParam* param, char* start,
H
Haojun Liao 已提交
691
                  int32_t prevResultLen, void* merger);
H
Haojun Liao 已提交
692

H
Haojun Liao 已提交
693
int32_t createFilterInfo(SQueryAttr* pQueryAttr, uint64_t qId);
H
Haojun Liao 已提交
694 695
void freeColumnFilterInfo(SColumnFilterInfo* pFilter, int32_t numOfFilters);

H
Haojun Liao 已提交
696
STableQueryInfo *createTableQueryInfo(SQueryAttr* pQueryAttr, void* pTable, bool groupbyColumn, STimeWindow win, void* buf);
H
Haojun Liao 已提交
697 698
STableQueryInfo* createTmpTableQueryInfo(STimeWindow win);

699
int32_t buildScalarExprFromMsg(SExprInfo * pExprInfo, void *pQueryMsg);
H
Haojun Liao 已提交
700

H
Haojun Liao 已提交
701 702
bool isQueryKilled(SQInfo *pQInfo);
int32_t checkForQueryBuf(size_t numOfTables);
703
bool checkNeedToCompressQueryCol(SQInfo *pQInfo);
H
Haojun Liao 已提交
704
bool doBuildResCheck(SQInfo* pQInfo);
H
Haojun Liao 已提交
705
void setQueryStatus(SQueryRuntimeEnv *pRuntimeEnv, int8_t status);
H
Haojun Liao 已提交
706

H
Haojun Liao 已提交
707
bool onlyQueryTags(SQueryAttr* pQueryAttr);
D
dapan1121 已提交
708 709
void destroyUdfInfo(SUdfInfo* pUdfInfo);

H
Haojun Liao 已提交
710 711
bool isValidQInfo(void *param);

712
int32_t doDumpQueryResult(SQInfo *pQInfo, char *data, int8_t compressed, int32_t *compLen);
H
Haojun Liao 已提交
713 714 715

size_t getResultSize(SQInfo *pQInfo, int64_t *numOfRows);
void setQueryKilled(SQInfo *pQInfo);
716 717 718 719

void publishOperatorProfEvent(SOperatorInfo* operatorInfo, EQueryProfEventType eventType);
void publishQueryAbortEvent(SQInfo* pQInfo, int32_t code);
void calculateOperatorProfResults(SQInfo* pQInfo);
H
Haojun Liao 已提交
720
void queryCostStatis(SQInfo *pQInfo);
721

H
Haojun Liao 已提交
722
void freeQInfo(SQInfo *pQInfo);
723
void freeQueryAttr(SQueryAttr *pQuery);
H
Haojun Liao 已提交
724 725 726

int32_t getMaximumIdleDurationSec();

727
void doInvokeUdf(SUdfInfo* pUdfInfo, SQLFunctionCtx *pCtx, int32_t idx, int32_t type);
W
wpan 已提交
728
int32_t getColumnDataFromId(void *param, int32_t id, void **data);
729

730
void qInfoLogSSDataBlock(SSDataBlock* block, char* location);
731 732 733 734 735 736

// add table read rows count. pHashTables must not be NULL
void addTableReadRows(SQueryRuntimeEnv* pEnv, int32_t tid, int32_t rows);
// tsdb scan table callback table or query is over. param is SQueryRuntimeEnv*
bool qReadOverCB(void* param, int8_t type, int32_t tid);

H
Haojun Liao 已提交
737
#endif  // TDENGINE_QEXECUTOR_H