plannodes.h 15.3 KB
Newer Older
X
Xiaoyu Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * 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/>.
 */

#ifndef _TD_PLANN_NODES_H_
#define _TD_PLANN_NODES_H_

#ifdef __cplusplus
extern "C" {
#endif

X
Xiaoyu Wang 已提交
23
#include "query.h"
24
#include "querynodes.h"
X
Xiaoyu Wang 已提交
25
#include "tname.h"
X
Xiaoyu Wang 已提交
26

27 28
#define SLOT_NAME_LEN TSDB_TABLE_NAME_LEN + TSDB_COL_NAME_LEN

29 30 31
typedef enum EDataOrderLevel {
  DATA_ORDER_LEVEL_NONE = 1,
  DATA_ORDER_LEVEL_IN_BLOCK,
32 33
  DATA_ORDER_LEVEL_IN_GROUP,
  DATA_ORDER_LEVEL_GLOBAL
34 35
} EDataOrderLevel;

36 37 38 39 40 41 42
typedef enum EGroupAction {
  GROUP_ACTION_NONE = 1,
  GROUP_ACTION_SET,
  GROUP_ACTION_KEEP,
  GROUP_ACTION_CLEAR
} EGroupAction;

X
Xiaoyu Wang 已提交
43
typedef struct SLogicNode {
44 45 46 47
  ENodeType          type;
  SNodeList*         pTargets;  // SColumnNode
  SNode*             pConditions;
  SNodeList*         pChildren;
X
Xiaoyu Wang 已提交
48
  struct SLogicNode* pParent;
49
  int32_t            optimizedFlag;
X
Xiaoyu Wang 已提交
50
  uint8_t            precision;
51 52
  SNode*             pLimit;
  SNode*             pSlimit;
53 54
  EDataOrderLevel    requireDataOrder;  // requirements for input data
  EDataOrderLevel    resultDataOrder;   // properties of the output data
55
  EGroupAction       groupAction;
X
Xiaoyu Wang 已提交
56 57
} SLogicNode;

X
Xiaoyu Wang 已提交
58 59 60 61 62
typedef enum EScanType {
  SCAN_TYPE_TAG = 1,
  SCAN_TYPE_TABLE,
  SCAN_TYPE_SYSTEM_TABLE,
  SCAN_TYPE_STREAM,
63
  SCAN_TYPE_TABLE_MERGE,
X
Xiaoyu Wang 已提交
64 65
  SCAN_TYPE_BLOCK_INFO,
  SCAN_TYPE_LAST_ROW
X
Xiaoyu Wang 已提交
66
} EScanType;
X
Xiaoyu Wang 已提交
67

X
Xiaoyu Wang 已提交
68
typedef struct SScanLogicNode {
X
Xiaoyu Wang 已提交
69 70 71 72 73
  SLogicNode    node;
  SNodeList*    pScanCols;
  SNodeList*    pScanPseudoCols;
  int8_t        tableType;
  uint64_t      tableId;
X
Xiaoyu Wang 已提交
74
  uint64_t      stableId;
X
Xiaoyu Wang 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
  SVgroupsInfo* pVgroupList;
  EScanType     scanType;
  uint8_t       scanSeq[2];  // first is scan count, and second is reverse scan count
  STimeWindow   scanRange;
  SName         tableName;
  bool          showRewrite;
  double        ratio;
  SNodeList*    pDynamicScanFuncs;
  int32_t       dataRequired;
  int64_t       interval;
  int64_t       offset;
  int64_t       sliding;
  int8_t        intervalUnit;
  int8_t        slidingUnit;
  SNode*        pTagCond;
X
Xiaoyu Wang 已提交
90
  SNode*        pTagIndexCond;
X
Xiaoyu Wang 已提交
91 92
  int8_t        triggerType;
  int64_t       watermark;
93
  int8_t        igExpired;
X
Xiaoyu Wang 已提交
94
  SArray*       pSmaIndexes;
95 96
  SNodeList*    pGroupTags;
  bool          groupSort;
97
  int8_t        cacheLastMode;
98
  bool          hasNormalCols;  // neither tag column nor primary key tag column
X
Xiaoyu Wang 已提交
99
  bool          sortPrimaryKey;
X
Xiaoyu Wang 已提交
100 101 102 103
} SScanLogicNode;

typedef struct SJoinLogicNode {
  SLogicNode node;
104
  EJoinType  joinType;
105
  SNode*     pMergeCondition;
106
  SNode*     pOnConditions;
X
Xiaoyu Wang 已提交
107
  bool       isSingleTableJoin;
108
  EOrder     inputTsOrder;
X
Xiaoyu Wang 已提交
109 110 111 112 113 114
} SJoinLogicNode;

typedef struct SAggLogicNode {
  SLogicNode node;
  SNodeList* pGroupKeys;
  SNodeList* pAggFuncs;
115
  bool       hasLastRow;
116
  bool       hasTimeLineFunc;
X
Xiaoyu Wang 已提交
117 118 119 120 121
} SAggLogicNode;

typedef struct SProjectLogicNode {
  SLogicNode node;
  SNodeList* pProjections;
122
  char       stmtName[TSDB_TABLE_NAME_LEN];
X
Xiaoyu Wang 已提交
123 124
} SProjectLogicNode;

125 126
typedef struct SIndefRowsFuncLogicNode {
  SLogicNode node;
X
Xiaoyu Wang 已提交
127
  SNodeList* pFuncs;
128
  bool       isTailFunc;
129
  bool       isUniqueFunc;
130
  bool       isTimeLineFunc;
131 132
} SIndefRowsFuncLogicNode;

X
Xiaoyu Wang 已提交
133 134 135 136 137
typedef struct SInterpFuncLogicNode {
  SLogicNode  node;
  SNodeList*  pFuncs;
  STimeWindow timeRange;
  int64_t     interval;
X
Xiaoyu Wang 已提交
138 139 140
  EFillMode   fillMode;
  SNode*      pFillValues;  // SNodeListNode
  SNode*      pTimeSeries;  // SColumnNode
X
Xiaoyu Wang 已提交
141 142
} SInterpFuncLogicNode;

X
Xiaoyu Wang 已提交
143 144 145 146 147 148 149 150
typedef enum EModifyTableType { MODIFY_TABLE_TYPE_INSERT = 1, MODIFY_TABLE_TYPE_DELETE } EModifyTableType;

typedef struct SVnodeModifyLogicNode {
  SLogicNode       node;
  EModifyTableType modifyType;
  int32_t          msgType;
  SArray*          pDataBlocks;
  SVgDataBlocks*   pVgDataBlocks;
X
Xiaoyu Wang 已提交
151
  SNode*           pAffectedRows;  // SColumnNode
X
Xiaoyu Wang 已提交
152
  uint64_t         tableId;
153
  uint64_t         stableId;
X
Xiaoyu Wang 已提交
154
  int8_t           tableType;  // table type
155
  char             tableName[TSDB_TABLE_NAME_LEN];
156
  char             tsColName[TSDB_COL_NAME_LEN];
X
Xiaoyu Wang 已提交
157
  STimeWindow      deleteTimeRange;
158
  SVgroupsInfo*    pVgroupList;
159
  SNodeList*       pInsertCols;
X
Xiaoyu Wang 已提交
160
} SVnodeModifyLogicNode;
161

X
Xiaoyu Wang 已提交
162 163
typedef struct SExchangeLogicNode {
  SLogicNode node;
164
  int32_t    srcGroupId;
X
Xiaoyu Wang 已提交
165 166
} SExchangeLogicNode;

X
Xiaoyu Wang 已提交
167 168 169
typedef struct SMergeLogicNode {
  SLogicNode node;
  SNodeList* pMergeKeys;
X
Xiaoyu Wang 已提交
170
  SNodeList* pInputs;
X
Xiaoyu Wang 已提交
171 172
  int32_t    numOfChannels;
  int32_t    srcGroupId;
173
  bool       groupSort;
X
Xiaoyu Wang 已提交
174 175
} SMergeLogicNode;

176
typedef enum EWindowType { WINDOW_TYPE_INTERVAL = 1, WINDOW_TYPE_SESSION, WINDOW_TYPE_STATE } EWindowType;
X
Xiaoyu Wang 已提交
177

178
typedef enum EWindowAlgorithm {
X
Xiaoyu Wang 已提交
179
  INTERVAL_ALGO_HASH = 1,
X
Xiaoyu Wang 已提交
180
  INTERVAL_ALGO_MERGE,
X
Xiaoyu Wang 已提交
181 182 183
  INTERVAL_ALGO_STREAM_FINAL,
  INTERVAL_ALGO_STREAM_SEMI,
  INTERVAL_ALGO_STREAM_SINGLE,
184 185 186 187 188
  SESSION_ALGO_STREAM_SEMI,
  SESSION_ALGO_STREAM_FINAL,
  SESSION_ALGO_STREAM_SINGLE,
  SESSION_ALGO_MERGE,
} EWindowAlgorithm;
189

X
Xiaoyu Wang 已提交
190
typedef struct SWindowLogicNode {
191 192 193 194 195 196 197 198 199 200
  SLogicNode       node;
  EWindowType      winType;
  SNodeList*       pFuncs;
  int64_t          interval;
  int64_t          offset;
  int64_t          sliding;
  int8_t           intervalUnit;
  int8_t           slidingUnit;
  int64_t          sessionGap;
  SNode*           pTspk;
X
Xiaoyu Wang 已提交
201
  SNode*           pTsEnd;
202 203 204
  SNode*           pStateExpr;
  int8_t           triggerType;
  int64_t          watermark;
205
  int8_t           igExpired;
206
  EWindowAlgorithm windowAlgo;
207
  EOrder           inputTsOrder;
X
Xiaoyu Wang 已提交
208
  EOrder           outputTsOrder;
X
Xiaoyu Wang 已提交
209 210
} SWindowLogicNode;

X
Xiaoyu Wang 已提交
211
typedef struct SFillLogicNode {
X
Xiaoyu Wang 已提交
212 213 214 215 216
  SLogicNode  node;
  EFillMode   mode;
  SNode*      pWStartTs;
  SNode*      pValues;  // SNodeListNode
  STimeWindow timeRange;
X
Xiaoyu Wang 已提交
217
  EOrder      inputTsOrder;
X
Xiaoyu Wang 已提交
218 219
} SFillLogicNode;

X
Xiaoyu Wang 已提交
220 221 222
typedef struct SSortLogicNode {
  SLogicNode node;
  SNodeList* pSortKeys;
223
  bool       groupSort;
X
Xiaoyu Wang 已提交
224 225
} SSortLogicNode;

226 227 228 229 230
typedef struct SPartitionLogicNode {
  SLogicNode node;
  SNodeList* pPartitionKeys;
} SPartitionLogicNode;

231 232 233 234
typedef enum ESubplanType {
  SUBPLAN_TYPE_MERGE = 1,
  SUBPLAN_TYPE_PARTIAL,
  SUBPLAN_TYPE_SCAN,
235 236
  SUBPLAN_TYPE_MODIFY,
  SUBPLAN_TYPE_COMPUTE
237 238
} ESubplanType;

X
Xiaoyu Wang 已提交
239 240
typedef struct SSubplanId {
  uint64_t queryId;
241 242
  int32_t  groupId;
  int32_t  subplanId;
X
Xiaoyu Wang 已提交
243 244
} SSubplanId;

X
Xiaoyu Wang 已提交
245
typedef struct SLogicSubplan {
246 247 248 249 250 251
  ENodeType     type;
  SSubplanId    id;
  SNodeList*    pChildren;
  SNodeList*    pParents;
  SLogicNode*   pNode;
  ESubplanType  subplanType;
X
Xiaoyu Wang 已提交
252
  SVgroupsInfo* pVgroupList;
253 254
  int32_t       level;
  int32_t       splitFlag;
255
  int32_t       numOfComputeNodes;
X
Xiaoyu Wang 已提交
256
} SLogicSubplan;
X
Xiaoyu Wang 已提交
257 258

typedef struct SQueryLogicPlan {
259
  ENodeType  type;
X
Xiaoyu Wang 已提交
260
  SNodeList* pTopSubplans;
X
Xiaoyu Wang 已提交
261 262
} SQueryLogicPlan;

X
Xiaoyu Wang 已提交
263 264
typedef struct SSlotDescNode {
  ENodeType type;
265
  int16_t   slotId;
X
Xiaoyu Wang 已提交
266
  SDataType dataType;
267 268 269
  bool      reserve;
  bool      output;
  bool      tag;
270
  char      name[SLOT_NAME_LEN];
X
Xiaoyu Wang 已提交
271 272
} SSlotDescNode;

X
Xiaoyu Wang 已提交
273
typedef struct SDataBlockDescNode {
274 275
  ENodeType  type;
  int16_t    dataBlockId;
X
Xiaoyu Wang 已提交
276
  SNodeList* pSlots;
277 278 279
  int32_t    totalRowSize;
  int32_t    outputRowSize;
  uint8_t    precision;
X
Xiaoyu Wang 已提交
280
} SDataBlockDescNode;
X
Xiaoyu Wang 已提交
281 282

typedef struct SPhysiNode {
283
  ENodeType           type;
X
Xiaoyu Wang 已提交
284
  SDataBlockDescNode* pOutputDataBlockDesc;
285 286 287
  SNode*              pConditions;
  SNodeList*          pChildren;
  struct SPhysiNode*  pParent;
288 289
  SNode*              pLimit;
  SNode*              pSlimit;
X
Xiaoyu Wang 已提交
290 291 292
} SPhysiNode;

typedef struct SScanPhysiNode {
X
Xiaoyu Wang 已提交
293
  SPhysiNode node;
X
Xiaoyu Wang 已提交
294
  SNodeList* pScanCols;
295 296
  SNodeList* pScanPseudoCols;
  uint64_t   uid;  // unique id of the table
X
Xiaoyu Wang 已提交
297
  uint64_t   suid;
298 299
  int8_t     tableType;
  SName      tableName;
X
Xiaoyu Wang 已提交
300 301 302
} SScanPhysiNode;

typedef SScanPhysiNode STagScanPhysiNode;
303
typedef SScanPhysiNode SBlockDistScanPhysiNode;
X
Xiaoyu Wang 已提交
304 305 306 307 308 309

typedef struct SLastRowScanPhysiNode {
  SScanPhysiNode scan;
  SNodeList*     pGroupTags;
  bool           groupSort;
} SLastRowScanPhysiNode;
X
Xiaoyu Wang 已提交
310

X
Xiaoyu Wang 已提交
311 312
typedef struct SSystemTableScanPhysiNode {
  SScanPhysiNode scan;
313 314 315
  SEpSet         mgmtEpSet;
  bool           showRewrite;
  int32_t        accountId;
X
Xiaoyu Wang 已提交
316 317
} SSystemTableScanPhysiNode;

X
Xiaoyu Wang 已提交
318 319
typedef struct STableScanPhysiNode {
  SScanPhysiNode scan;
320 321 322 323 324
  uint8_t        scanSeq[2];  // first is scan count, and second is reverse scan count
  STimeWindow    scanRange;
  double         ratio;
  int32_t        dataRequired;
  SNodeList*     pDynamicScanFuncs;
325 326
  SNodeList*     pGroupTags;
  bool           groupSort;
327 328 329 330 331
  int64_t        interval;
  int64_t        offset;
  int64_t        sliding;
  int8_t         intervalUnit;
  int8_t         slidingUnit;
5
54liuyao 已提交
332 333
  int8_t         triggerType;
  int64_t        watermark;
334
  int8_t         igExpired;
X
Xiaoyu Wang 已提交
335
  bool           assignBlockUid;
X
Xiaoyu Wang 已提交
336 337 338
} STableScanPhysiNode;

typedef STableScanPhysiNode STableSeqScanPhysiNode;
X
Xiaoyu Wang 已提交
339
typedef STableScanPhysiNode STableMergeScanPhysiNode;
5
54liuyao 已提交
340
typedef STableScanPhysiNode SStreamScanPhysiNode;
X
Xiaoyu Wang 已提交
341 342 343 344

typedef struct SProjectPhysiNode {
  SPhysiNode node;
  SNodeList* pProjections;
345
  bool       mergeDataBlock;
X
Xiaoyu Wang 已提交
346 347
} SProjectPhysiNode;

348 349 350
typedef struct SIndefRowsFuncPhysiNode {
  SPhysiNode node;
  SNodeList* pExprs;
X
Xiaoyu Wang 已提交
351
  SNodeList* pFuncs;
352 353
} SIndefRowsFuncPhysiNode;

X
Xiaoyu Wang 已提交
354 355 356 357 358 359
typedef struct SInterpFuncPhysiNode {
  SPhysiNode  node;
  SNodeList*  pExprs;
  SNodeList*  pFuncs;
  STimeWindow timeRange;
  int64_t     interval;
D
dapan1121 已提交
360
  int8_t      intervalUnit;
X
Xiaoyu Wang 已提交
361 362 363
  EFillMode   fillMode;
  SNode*      pFillValues;  // SNodeListNode
  SNode*      pTimeSeries;  // SColumnNode
X
Xiaoyu Wang 已提交
364 365
} SInterpFuncPhysiNode;

366
typedef struct SSortMergeJoinPhysiNode {
X
Xiaoyu Wang 已提交
367
  SPhysiNode node;
368
  EJoinType  joinType;
369
  SNode*     pMergeCondition;
X
Xiaoyu Wang 已提交
370
  SNode*     pOnConditions;
X
Xiaoyu Wang 已提交
371
  SNodeList* pTargets;
372 373
  EOrder     inputTsOrder;
} SSortMergeJoinPhysiNode;
X
Xiaoyu Wang 已提交
374

X
Xiaoyu Wang 已提交
375 376
typedef struct SAggPhysiNode {
  SPhysiNode node;
377
  SNodeList* pExprs;  // these are expression list of group_by_clause and parameter expression of aggregate function
X
Xiaoyu Wang 已提交
378
  SNodeList* pGroupKeys;
X
Xiaoyu Wang 已提交
379 380 381
  SNodeList* pAggFuncs;
} SAggPhysiNode;

X
Xiaoyu Wang 已提交
382
typedef struct SDownstreamSourceNode {
383
  ENodeType      type;
X
Xiaoyu Wang 已提交
384
  SQueryNodeAddr addr;
385 386
  uint64_t       taskId;
  uint64_t       schedId;
D
dapan1121 已提交
387
  int32_t        execId;
D
dapan1121 已提交
388
  int32_t        fetchMsgType;
X
Xiaoyu Wang 已提交
389
} SDownstreamSourceNode;
X
Xiaoyu Wang 已提交
390 391

typedef struct SExchangePhysiNode {
X
Xiaoyu Wang 已提交
392
  SPhysiNode node;
X
Xiaoyu Wang 已提交
393
  int32_t    srcGroupId;  // group id of datasource suplans
D
dapan1121 已提交
394
  bool       singleChannel;
X
Xiaoyu Wang 已提交
395
  SNodeList* pSrcEndPoints;  // element is SDownstreamSource, scheduler fill by calling qSetSuplanExecutionNode
X
Xiaoyu Wang 已提交
396 397
} SExchangePhysiNode;

X
Xiaoyu Wang 已提交
398 399 400
typedef struct SMergePhysiNode {
  SPhysiNode node;
  SNodeList* pMergeKeys;
X
Xiaoyu Wang 已提交
401
  SNodeList* pTargets;
X
Xiaoyu Wang 已提交
402 403
  int32_t    numOfChannels;
  int32_t    srcGroupId;
404
  bool       groupSort;
X
Xiaoyu Wang 已提交
405 406
} SMergePhysiNode;

X
Xiaoyu Wang 已提交
407
typedef struct SWinodwPhysiNode {
X
Xiaoyu Wang 已提交
408
  SPhysiNode node;
409
  SNodeList* pExprs;  // these are expression list of parameter expression of function
X
Xiaoyu Wang 已提交
410
  SNodeList* pFuncs;
X
Xiaoyu Wang 已提交
411 412
  SNode*     pTspk;   // timestamp primary key
  SNode*     pTsEnd;  // window end timestamp
413 414
  int8_t     triggerType;
  int64_t    watermark;
415
  int8_t     igExpired;
X
Xiaoyu Wang 已提交
416 417
  EOrder     inputTsOrder;
  EOrder     outputTsOrder;
X
Xiaoyu Wang 已提交
418 419 420 421
} SWinodwPhysiNode;

typedef struct SIntervalPhysiNode {
  SWinodwPhysiNode window;
422 423 424 425 426
  int64_t          interval;
  int64_t          offset;
  int64_t          sliding;
  int8_t           intervalUnit;
  int8_t           slidingUnit;
X
Xiaoyu Wang 已提交
427 428
} SIntervalPhysiNode;

429
typedef SIntervalPhysiNode SMergeIntervalPhysiNode;
430
typedef SIntervalPhysiNode SMergeAlignedIntervalPhysiNode;
X
Xiaoyu Wang 已提交
431
typedef SIntervalPhysiNode SStreamIntervalPhysiNode;
432 433
typedef SIntervalPhysiNode SStreamFinalIntervalPhysiNode;
typedef SIntervalPhysiNode SStreamSemiIntervalPhysiNode;
X
Xiaoyu Wang 已提交
434

X
Xiaoyu Wang 已提交
435
typedef struct SFillPhysiNode {
X
Xiaoyu Wang 已提交
436 437 438 439 440 441
  SPhysiNode  node;
  EFillMode   mode;
  SNode*      pWStartTs;  // SColumnNode
  SNode*      pValues;    // SNodeListNode
  SNodeList*  pTargets;
  STimeWindow timeRange;
X
Xiaoyu Wang 已提交
442
  EOrder      inputTsOrder;
X
Xiaoyu Wang 已提交
443 444
} SFillPhysiNode;

445 446
typedef struct SMultiTableIntervalPhysiNode {
  SIntervalPhysiNode interval;
447
  SNodeList*         pPartitionKeys;
448 449
} SMultiTableIntervalPhysiNode;

X
Xiaoyu Wang 已提交
450 451
typedef struct SSessionWinodwPhysiNode {
  SWinodwPhysiNode window;
452
  int64_t          gap;
X
Xiaoyu Wang 已提交
453 454
} SSessionWinodwPhysiNode;

5
54liuyao 已提交
455
typedef SSessionWinodwPhysiNode SStreamSessionWinodwPhysiNode;
456 457
typedef SSessionWinodwPhysiNode SStreamSemiSessionWinodwPhysiNode;
typedef SSessionWinodwPhysiNode SStreamFinalSessionWinodwPhysiNode;
5
54liuyao 已提交
458

459 460
typedef struct SStateWinodwPhysiNode {
  SWinodwPhysiNode window;
461
  SNode*           pStateKey;
462 463
} SStateWinodwPhysiNode;

5
54liuyao 已提交
464 465
typedef SStateWinodwPhysiNode SStreamStateWinodwPhysiNode;

X
Xiaoyu Wang 已提交
466 467
typedef struct SSortPhysiNode {
  SPhysiNode node;
468 469
  SNodeList* pExprs;     // these are expression list of order_by_clause and parameter expression of aggregate function
  SNodeList* pSortKeys;  // element is SOrderByExprNode, and SOrderByExprNode::pExpr is SColumnNode
X
Xiaoyu Wang 已提交
470
  SNodeList* pTargets;
X
Xiaoyu Wang 已提交
471 472
} SSortPhysiNode;

S
shenglian zhou 已提交
473 474
typedef SSortPhysiNode SGroupSortPhysiNode;

475 476
typedef struct SPartitionPhysiNode {
  SPhysiNode node;
477
  SNodeList* pExprs;  // these are expression list of partition_by_clause
478
  SNodeList* pPartitionKeys;
X
Xiaoyu Wang 已提交
479
  SNodeList* pTargets;
480 481
} SPartitionPhysiNode;

X
Xiaoyu Wang 已提交
482
typedef struct SDataSinkNode {
483
  ENodeType           type;
X
Xiaoyu Wang 已提交
484
  SDataBlockDescNode* pInputDataBlockDesc;
X
Xiaoyu Wang 已提交
485 486 487 488 489 490 491 492
} SDataSinkNode;

typedef struct SDataDispatcherNode {
  SDataSinkNode sink;
} SDataDispatcherNode;

typedef struct SDataInserterNode {
  SDataSinkNode sink;
493 494 495
  int32_t       numOfTables;
  uint32_t      size;
  char*         pData;
X
Xiaoyu Wang 已提交
496 497
} SDataInserterNode;

498 499
typedef struct SQueryInserterNode {
  SDataSinkNode sink;
500
  SNodeList*    pCols;
501
  uint64_t      tableId;
502
  uint64_t      stableId;
503
  int8_t        tableType;  // table type
504
  char          tableName[TSDB_TABLE_NAME_LEN];
505 506 507 508
  int32_t       vgId;
  SEpSet        epSet;
} SQueryInserterNode;

X
Xiaoyu Wang 已提交
509 510 511 512
typedef struct SDataDeleterNode {
  SDataSinkNode sink;
  uint64_t      tableId;
  int8_t        tableType;  // table type
513
  char          tableFName[TSDB_TABLE_NAME_LEN];
wmmhello's avatar
wmmhello 已提交
514
  char          tsColName[TSDB_COL_NAME_LEN];
X
Xiaoyu Wang 已提交
515
  STimeWindow   deleteTimeRange;
X
Xiaoyu Wang 已提交
516
  SNode*        pAffectedRows;
X
Xiaoyu Wang 已提交
517 518
} SDataDeleterNode;

X
Xiaoyu Wang 已提交
519
typedef struct SSubplan {
520 521 522 523 524 525
  ENodeType      type;
  SSubplanId     id;  // unique id of the subplan
  ESubplanType   subplanType;
  int32_t        msgType;  // message type for subplan, used to denote the send message type to vnode.
  int32_t        level;    // the execution level of current subplan, starting from 0 in a top-down manner.
  char           dbFName[TSDB_DB_FNAME_LEN];
X
Xiaoyu Wang 已提交
526
  char           user[TSDB_USER_LEN];
527 528 529 530 531 532
  SQueryNodeAddr execNode;      // for the scan/modify subplan, the optional execution node
  SQueryNodeStat execNodeStat;  // only for scan subplan
  SNodeList*     pChildren;     // the datasource subplan,from which to fetch the result
  SNodeList*     pParents;      // the data destination subplan, get data from current subplan
  SPhysiNode*    pNode;         // physical plan of current subplan
  SDataSinkNode* pDataSink;     // data of the subplan flow into the datasink
X
Xiaoyu Wang 已提交
533
  SNode*         pTagCond;
X
Xiaoyu Wang 已提交
534
  SNode*         pTagIndexCond;
X
Xiaoyu Wang 已提交
535 536
} SSubplan;

537
typedef enum EExplainMode { EXPLAIN_MODE_DISABLE = 1, EXPLAIN_MODE_STATIC, EXPLAIN_MODE_ANALYZE } EExplainMode;
538 539 540

typedef struct SExplainInfo {
  EExplainMode mode;
541 542
  bool         verbose;
  double       ratio;
543
} SExplainInfo;
544

X
Xiaoyu Wang 已提交
545
typedef struct SQueryPlan {
546 547 548 549
  ENodeType    type;
  uint64_t     queryId;
  int32_t      numOfSubplans;
  SNodeList*   pSubplans;  // Element is SNodeListNode. The execution level of subplan, starting from 0.
550
  SExplainInfo explainInfo;
X
Xiaoyu Wang 已提交
551 552
} SQueryPlan;

553 554
void nodesWalkPhysiPlan(SNode* pNode, FNodeWalker walker, void* pContext);

X
Xiaoyu Wang 已提交
555 556 557 558 559
#ifdef __cplusplus
}
#endif

#endif /*_TD_PLANN_NODES_H_*/