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

16 17
#ifndef _TD_CMD_NODES_H_
#define _TD_CMD_NODES_H_
18 19 20 21 22

#ifdef __cplusplus
extern "C" {
#endif

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

X
Xiaoyu Wang 已提交
26
#define DESCRIBE_RESULT_COLS      4
27
#define DESCRIBE_RESULT_FIELD_LEN (TSDB_COL_NAME_LEN - 1 + VARSTR_HEADER_SIZE)
X
Xiaoyu Wang 已提交
28 29
#define DESCRIBE_RESULT_TYPE_LEN  (20 + VARSTR_HEADER_SIZE)
#define DESCRIBE_RESULT_NOTE_LEN  (8 + VARSTR_HEADER_SIZE)
30

31
#define SHOW_CREATE_DB_RESULT_COLS       2
D
dapan1121 已提交
32 33 34
#define SHOW_CREATE_DB_RESULT_FIELD1_LEN (TSDB_DB_NAME_LEN + VARSTR_HEADER_SIZE)
#define SHOW_CREATE_DB_RESULT_FIELD2_LEN (TSDB_MAX_BINARY_LEN + VARSTR_HEADER_SIZE)

35
#define SHOW_CREATE_TB_RESULT_COLS       2
D
dapan1121 已提交
36
#define SHOW_CREATE_TB_RESULT_FIELD1_LEN (TSDB_TABLE_NAME_LEN + VARSTR_HEADER_SIZE)
D
dapan1121 已提交
37
#define SHOW_CREATE_TB_RESULT_FIELD2_LEN (TSDB_MAX_ALLOWED_SQL_LEN * 3)
D
dapan1121 已提交
38

X
Xiaoyu Wang 已提交
39
#define SHOW_LOCAL_VARIABLES_RESULT_COLS       2
D
dapan1121 已提交
40 41 42
#define SHOW_LOCAL_VARIABLES_RESULT_FIELD1_LEN (TSDB_CONFIG_OPTION_LEN + VARSTR_HEADER_SIZE)
#define SHOW_LOCAL_VARIABLES_RESULT_FIELD2_LEN (TSDB_CONFIG_VALUE_LEN + VARSTR_HEADER_SIZE)

43
#define SHOW_ALIVE_RESULT_COLS 1
X
Xiaoyu Wang 已提交
44

X
Xiaoyu Wang 已提交
45 46 47
#define BIT_FLAG_MASK(n)              (1 << n)
#define BIT_FLAG_SET_MASK(val, mask)  ((val) |= (mask))
#define BIT_FLAG_TEST_MASK(val, mask) (((val) & (mask)) != 0)
X
Xiaoyu Wang 已提交
48

X
Xiaoyu Wang 已提交
49 50 51 52
#define PRIVILEGE_TYPE_ALL       BIT_FLAG_MASK(0)
#define PRIVILEGE_TYPE_READ      BIT_FLAG_MASK(1)
#define PRIVILEGE_TYPE_WRITE     BIT_FLAG_MASK(2)
#define PRIVILEGE_TYPE_SUBSCRIBE BIT_FLAG_MASK(3)
X
Xiaoyu Wang 已提交
53

54
typedef struct SDatabaseOptions {
X
Xiaoyu Wang 已提交
55 56
  ENodeType   type;
  int32_t     buffer;
57 58
  char        cacheModelStr[TSDB_CACHE_MODEL_STR_LEN];
  int8_t      cacheModel;
59
  int32_t     cacheLastSize;
X
Xiaoyu Wang 已提交
60 61
  int8_t      compressionLevel;
  int32_t     daysPerFile;
X
Xiaoyu Wang 已提交
62
  SValueNode* pDaysPerFile;
X
Xiaoyu Wang 已提交
63 64 65 66
  int32_t     fsyncPeriod;
  int32_t     maxRowsPerBlock;
  int32_t     minRowsPerBlock;
  SNodeList*  pKeep;
X
Xiaoyu Wang 已提交
67
  int64_t     keep[3];
X
Xiaoyu Wang 已提交
68 69
  int32_t     pages;
  int32_t     pagesize;
70
  int32_t     tsdbPageSize;
X
Xiaoyu Wang 已提交
71 72 73
  char        precisionStr[3];
  int8_t      precision;
  int8_t      replica;
74
  char        strictStr[TSDB_DB_STRICT_STR_LEN];
X
Xiaoyu Wang 已提交
75 76 77 78 79
  int8_t      strict;
  int8_t      walLevel;
  int32_t     numOfVgroups;
  int8_t      singleStable;
  SNodeList*  pRetentions;
X
Xiaoyu Wang 已提交
80
  int8_t      schemaless;
X
Xiaoyu Wang 已提交
81 82 83 84
  int32_t     walRetentionPeriod;
  int32_t     walRetentionSize;
  int32_t     walRollPeriod;
  int32_t     walSegmentSize;
85 86 87
  bool        walRetentionPeriodIsSet;
  bool        walRetentionSizeIsSet;
  bool        walRollPeriodIsSet;
88
  int32_t     sstTrigger;
89 90
  int32_t     tablePrefix;
  int32_t     tableSuffix;
91
} SDatabaseOptions;
92

93
typedef struct SCreateDatabaseStmt {
X
Xiaoyu Wang 已提交
94 95 96
  ENodeType         type;
  char              dbName[TSDB_DB_NAME_LEN];
  bool              ignoreExists;
X
Xiaoyu Wang 已提交
97
  SDatabaseOptions* pOptions;
98
} SCreateDatabaseStmt;
99

100 101
typedef struct SUseDatabaseStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
102
  char      dbName[TSDB_DB_NAME_LEN];
103 104
} SUseDatabaseStmt;

105 106
typedef struct SDropDatabaseStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
107 108
  char      dbName[TSDB_DB_NAME_LEN];
  bool      ignoreNotExists;
109 110
} SDropDatabaseStmt;

111
typedef struct SAlterDatabaseStmt {
X
Xiaoyu Wang 已提交
112 113
  ENodeType         type;
  char              dbName[TSDB_DB_NAME_LEN];
114 115 116
  SDatabaseOptions* pOptions;
} SAlterDatabaseStmt;

X
Xiaoyu Wang 已提交
117 118 119 120 121
typedef struct SFlushDatabaseStmt {
  ENodeType type;
  char      dbName[TSDB_DB_NAME_LEN];
} SFlushDatabaseStmt;

X
Xiaoyu Wang 已提交
122 123 124
typedef struct STrimDatabaseStmt {
  ENodeType type;
  char      dbName[TSDB_DB_NAME_LEN];
125
  int32_t   maxSpeed;
X
Xiaoyu Wang 已提交
126 127
} STrimDatabaseStmt;

X
Xiaoyu Wang 已提交
128 129 130
typedef struct SCompactDatabaseStmt {
  ENodeType type;
  char      dbName[TSDB_DB_NAME_LEN];
131 132
  SNode*    pStart;
  SNode*    pEnd;
X
Xiaoyu Wang 已提交
133 134
} SCompactDatabaseStmt;

X
Xiaoyu Wang 已提交
135
typedef struct STableOptions {
X
Xiaoyu Wang 已提交
136
  ENodeType  type;
wmmhello's avatar
wmmhello 已提交
137
  bool       commentNull;
138
  char       comment[TSDB_TB_COMMENT_LEN];
X
Xiaoyu Wang 已提交
139 140 141 142 143 144
  SNodeList* pMaxDelay;
  int64_t    maxDelay1;
  int64_t    maxDelay2;
  SNodeList* pWatermark;
  int64_t    watermark1;
  int64_t    watermark2;
145 146 147
  SNodeList* pDeleteMark;
  int64_t    deleteMark1;
  int64_t    deleteMark2;
X
Xiaoyu Wang 已提交
148 149
  SNodeList* pRollupFuncs;
  int32_t    ttl;
150
  SNodeList* pSma;
X
Xiaoyu Wang 已提交
151 152 153 154
} STableOptions;

typedef struct SColumnDefNode {
  ENodeType type;
X
Xiaoyu Wang 已提交
155
  char      colName[TSDB_COL_NAME_LEN];
X
Xiaoyu Wang 已提交
156
  SDataType dataType;
157
  char      comments[TSDB_TB_COMMENT_LEN];
X
Xiaoyu Wang 已提交
158
  bool      sma;
X
Xiaoyu Wang 已提交
159 160 161
} SColumnDefNode;

typedef struct SCreateTableStmt {
X
Xiaoyu Wang 已提交
162 163 164 165 166 167
  ENodeType      type;
  char           dbName[TSDB_DB_NAME_LEN];
  char           tableName[TSDB_TABLE_NAME_LEN];
  bool           ignoreExists;
  SNodeList*     pCols;
  SNodeList*     pTags;
X
Xiaoyu Wang 已提交
168
  STableOptions* pOptions;
X
Xiaoyu Wang 已提交
169 170
} SCreateTableStmt;

171
typedef struct SCreateSubTableClause {
172 173 174 175 176 177 178 179
  ENodeType      type;
  char           dbName[TSDB_DB_NAME_LEN];
  char           tableName[TSDB_TABLE_NAME_LEN];
  char           useDbName[TSDB_DB_NAME_LEN];
  char           useTableName[TSDB_TABLE_NAME_LEN];
  bool           ignoreExists;
  SNodeList*     pSpecificTags;
  SNodeList*     pValsOfTags;
wmmhello's avatar
wmmhello 已提交
180
  STableOptions* pOptions;
181
} SCreateSubTableClause;
182

X
Xiaoyu Wang 已提交
183
typedef struct SCreateMultiTablesStmt {
X
Xiaoyu Wang 已提交
184
  ENodeType  type;
185
  SNodeList* pSubTables;
X
Xiaoyu Wang 已提交
186
} SCreateMultiTablesStmt;
X
Xiaoyu Wang 已提交
187

188 189
typedef struct SDropTableClause {
  ENodeType type;
X
Xiaoyu Wang 已提交
190 191 192
  char      dbName[TSDB_DB_NAME_LEN];
  char      tableName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
193 194 195
} SDropTableClause;

typedef struct SDropTableStmt {
X
Xiaoyu Wang 已提交
196
  ENodeType  type;
197 198 199
  SNodeList* pTables;
} SDropTableStmt;

200 201
typedef struct SDropSuperTableStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
202 203 204
  char      dbName[TSDB_DB_NAME_LEN];
  char      tableName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
205 206
} SDropSuperTableStmt;

207
typedef struct SAlterTableStmt {
X
Xiaoyu Wang 已提交
208 209 210 211 212 213
  ENodeType      type;
  char           dbName[TSDB_DB_NAME_LEN];
  char           tableName[TSDB_TABLE_NAME_LEN];
  int8_t         alterType;
  char           colName[TSDB_COL_NAME_LEN];
  char           newColName[TSDB_COL_NAME_LEN];
214
  STableOptions* pOptions;
X
Xiaoyu Wang 已提交
215 216
  SDataType      dataType;
  SValueNode*    pVal;
217 218
} SAlterTableStmt;

219 220
typedef struct SCreateUserStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
221
  char      userName[TSDB_USER_LEN];
X
Xiaoyu Wang 已提交
222
  char      password[TSDB_USET_PASSWORD_LEN];
X
Xiaoyu Wang 已提交
223
  int8_t    sysinfo;
224 225 226 227
} SCreateUserStmt;

typedef struct SAlterUserStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
228
  char      userName[TSDB_USER_LEN];
X
Xiaoyu Wang 已提交
229
  int8_t    alterType;
X
Xiaoyu Wang 已提交
230 231 232
  char      password[TSDB_USET_PASSWORD_LEN];
  int8_t    enable;
  int8_t    sysinfo;
233 234 235 236
} SAlterUserStmt;

typedef struct SDropUserStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
237
  char      userName[TSDB_USER_LEN];
238 239 240 241
} SDropUserStmt;

typedef struct SCreateDnodeStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
242 243
  char      fqdn[TSDB_FQDN_LEN];
  int32_t   port;
244 245 246 247
} SCreateDnodeStmt;

typedef struct SDropDnodeStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
248 249 250
  int32_t   dnodeId;
  char      fqdn[TSDB_FQDN_LEN];
  int32_t   port;
251
  bool      force;
D
dapan1121 已提交
252
  bool      unsafe;
253 254
} SDropDnodeStmt;

255 256
typedef struct SAlterDnodeStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
257 258 259
  int32_t   dnodeId;
  char      config[TSDB_DNODE_CONFIG_LEN];
  char      value[TSDB_DNODE_VALUE_LEN];
260 261
} SAlterDnodeStmt;

262
typedef struct SShowStmt {
263 264 265 266
  ENodeType     type;
  SNode*        pDbName;  // SValueNode
  SNode*        pTbName;  // SValueNode
  EOperatorType tableCondType;
267 268
} SShowStmt;

269
typedef struct SShowCreateDatabaseStmt {
270
  ENodeType type;
X
Xiaoyu Wang 已提交
271
  char      dbName[TSDB_DB_NAME_LEN];
272
  char      dbFName[TSDB_DB_FNAME_LEN];
273 274 275
  void*     pCfg;  // SDbCfgInfo
} SShowCreateDatabaseStmt;

276 277 278 279 280
typedef struct SShowAliveStmt {
  ENodeType type;
  char      dbName[TSDB_DB_NAME_LEN];
} SShowAliveStmt;

281
typedef struct SShowCreateTableStmt {
282 283 284
  ENodeType type;
  char      dbName[TSDB_DB_NAME_LEN];
  char      tableName[TSDB_TABLE_NAME_LEN];
X
Xiaoyu Wang 已提交
285 286
  void*     pDbCfg;     // SDbCfgInfo
  void*     pTableCfg;  // STableCfg
287
} SShowCreateTableStmt;
288

289 290 291 292 293 294
typedef struct SShowTableDistributedStmt {
  ENodeType type;
  char      dbName[TSDB_DB_NAME_LEN];
  char      tableName[TSDB_TABLE_NAME_LEN];
} SShowTableDistributedStmt;

295 296 297
typedef struct SShowDnodeVariablesStmt {
  ENodeType type;
  SNode*    pDnodeId;
298
  SNode*    pLikePattern;
299 300
} SShowDnodeVariablesStmt;

301 302 303 304 305 306
typedef struct SShowVnodesStmt {
  ENodeType type;
  SNode*    pDnodeId;
  SNode*    pDnodeEndpoint;
} SShowVnodesStmt;

307 308 309 310 311 312 313
typedef struct SShowTableTagsStmt {
  ENodeType  type;
  SNode*     pDbName;  // SValueNode
  SNode*     pTbName;  // SValueNode
  SNodeList* pTags;
} SShowTableTagsStmt;

X
Xiaoyu Wang 已提交
314
typedef enum EIndexType { INDEX_TYPE_SMA = 1, INDEX_TYPE_FULLTEXT, INDEX_TYPE_NORMAL } EIndexType;
X
Xiaoyu Wang 已提交
315 316

typedef struct SIndexOptions {
X
Xiaoyu Wang 已提交
317
  ENodeType  type;
X
Xiaoyu Wang 已提交
318
  SNodeList* pFuncs;
X
Xiaoyu Wang 已提交
319 320 321
  SNode*     pInterval;
  SNode*     pOffset;
  SNode*     pSliding;
322
  SNode*     pStreamOptions;
X
Xiaoyu Wang 已提交
323 324 325
} SIndexOptions;

typedef struct SCreateIndexStmt {
X
Xiaoyu Wang 已提交
326 327 328
  ENodeType      type;
  EIndexType     indexType;
  bool           ignoreExists;
X
Xiaoyu Wang 已提交
329
  char           indexDbName[TSDB_DB_NAME_LEN];
X
Xiaoyu Wang 已提交
330
  char           indexName[TSDB_INDEX_NAME_LEN];
331
  char           dbName[TSDB_DB_NAME_LEN];
X
Xiaoyu Wang 已提交
332 333
  char           tableName[TSDB_TABLE_NAME_LEN];
  SNodeList*     pCols;
X
Xiaoyu Wang 已提交
334 335 336
  SIndexOptions* pOptions;
} SCreateIndexStmt;

337 338
typedef struct SDropIndexStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
339
  bool      ignoreNotExists;
X
Xiaoyu Wang 已提交
340
  char      indexDbName[TSDB_DB_NAME_LEN];
X
Xiaoyu Wang 已提交
341
  char      indexName[TSDB_INDEX_NAME_LEN];
342 343
} SDropIndexStmt;

344
typedef struct SCreateComponentNodeStmt {
X
Xiaoyu Wang 已提交
345
  ENodeType type;
X
Xiaoyu Wang 已提交
346
  int32_t   dnodeId;
347
} SCreateComponentNodeStmt;
X
Xiaoyu Wang 已提交
348

349
typedef struct SDropComponentNodeStmt {
350
  ENodeType type;
X
Xiaoyu Wang 已提交
351
  int32_t   dnodeId;
352
} SDropComponentNodeStmt;
353

D
dapan1121 已提交
354 355 356 357 358
typedef struct SRestoreComponentNodeStmt {
  ENodeType type;
  int32_t   dnodeId;
} SRestoreComponentNodeStmt;

359
typedef struct SCreateTopicStmt {
360 361 362 363 364
  ENodeType type;
  char      topicName[TSDB_TABLE_NAME_LEN];
  char      subDbName[TSDB_DB_NAME_LEN];
  char      subSTbName[TSDB_TABLE_NAME_LEN];
  bool      ignoreExists;
X
Xiaoyu Wang 已提交
365
  bool      withMeta;
366
  SNode*    pQuery;
367
  SNode*    pWhere;
368 369 370 371
} SCreateTopicStmt;

typedef struct SDropTopicStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
372 373
  char      topicName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
374 375
} SDropTopicStmt;

X
Xiaoyu Wang 已提交
376 377 378 379 380 381 382
typedef struct SDropCGroupStmt {
  ENodeType type;
  char      topicName[TSDB_TABLE_NAME_LEN];
  char      cgroup[TSDB_CGROUP_LEN];
  bool      ignoreNotExists;
} SDropCGroupStmt;

383 384
typedef struct SAlterLocalStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
385 386
  char      config[TSDB_DNODE_CONFIG_LEN];
  char      value[TSDB_DNODE_VALUE_LEN];
387 388
} SAlterLocalStmt;

389
typedef struct SDescribeStmt {
X
Xiaoyu Wang 已提交
390 391 392
  ENodeType   type;
  char        dbName[TSDB_DB_NAME_LEN];
  char        tableName[TSDB_TABLE_NAME_LEN];
393 394 395
  STableMeta* pMeta;
} SDescribeStmt;

396 397
typedef struct SKillStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
398
  int32_t   targetId;
399 400
} SKillStmt;

X
Xiaoyu Wang 已提交
401 402 403 404 405
typedef struct SKillQueryStmt {
  ENodeType type;
  char      queryId[TSDB_QUERY_ID_LEN];
} SKillQueryStmt;

X
Xiaoyu Wang 已提交
406 407 408 409 410 411 412 413 414
typedef enum EStreamOptionsSetFlag {
  SOPT_TRIGGER_TYPE_SET = BIT_FLAG_MASK(0),
  SOPT_WATERMARK_SET = BIT_FLAG_MASK(1),
  SOPT_DELETE_MARK_SET = BIT_FLAG_MASK(2),
  SOPT_FILL_HISTORY_SET = BIT_FLAG_MASK(3),
  SOPT_IGNORE_EXPIRED_SET = BIT_FLAG_MASK(4),
  SOPT_IGNORE_UPDATE_SET = BIT_FLAG_MASK(5),
} EStreamOptionsSetFlag;

415 416
typedef struct SStreamOptions {
  ENodeType type;
X
Xiaoyu Wang 已提交
417
  int8_t    triggerType;
418
  SNode*    pDelay;
X
Xiaoyu Wang 已提交
419
  SNode*    pWatermark;
420
  SNode*    pDeleteMark;
421
  int8_t    fillHistory;
X
Xiaoyu Wang 已提交
422
  int8_t    ignoreExpired;
423
  int8_t    ignoreUpdate;
X
Xiaoyu Wang 已提交
424
  int64_t   setFlag;
425 426 427
} SStreamOptions;

typedef struct SCreateStreamStmt {
428 429 430 431 432 433 434 435 436 437 438 439
  ENodeType           type;
  char                streamName[TSDB_TABLE_NAME_LEN];
  char                targetDbName[TSDB_DB_NAME_LEN];
  char                targetTabName[TSDB_TABLE_NAME_LEN];
  bool                ignoreExists;
  SStreamOptions*     pOptions;
  SNode*              pQuery;
  SNode*              pPrevQuery;
  SNodeList*          pTags;
  SNode*              pSubtable;
  SNodeList*          pCols;
  SCMCreateStreamReq* pReq;
440 441 442 443
} SCreateStreamStmt;

typedef struct SDropStreamStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
444 445
  char      streamName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
446 447
} SDropStreamStmt;

448 449 450 451 452 453 454 455 456 457 458 459 460
typedef struct SPauseStreamStmt {
  ENodeType type;
  char      streamName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
} SPauseStreamStmt;

typedef struct SResumeStreamStmt {
  ENodeType type;
  char      streamName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
  bool      ignoreUntreated;
} SResumeStreamStmt;

461 462
typedef struct SCreateFunctionStmt {
  ENodeType type;
463
  bool      orReplace;
X
Xiaoyu Wang 已提交
464 465 466 467
  bool      ignoreExists;
  char      funcName[TSDB_FUNC_NAME_LEN];
  bool      isAgg;
  char      libraryPath[PATH_MAX];
468
  SDataType outputDt;
X
Xiaoyu Wang 已提交
469
  int32_t   bufSize;
470
  int8_t    language;
471 472
} SCreateFunctionStmt;

473 474 475 476 477 478 479 480 481
typedef struct SDropFunctionStmt {
  ENodeType type;
  char      funcName[TSDB_FUNC_NAME_LEN];
  bool      ignoreNotExists;
} SDropFunctionStmt;

typedef struct SGrantStmt {
  ENodeType type;
  char      userName[TSDB_USER_LEN];
482
  char      objName[TSDB_DB_NAME_LEN];  // db or topic
X
Xiaoyu Wang 已提交
483
  char      tabName[TSDB_TABLE_NAME_LEN];
484
  int64_t   privileges;
X
Xiaoyu Wang 已提交
485
  SNode*    pTagCond;
486 487 488 489
} SGrantStmt;

typedef SGrantStmt SRevokeStmt;

X
Xiaoyu Wang 已提交
490 491 492 493
typedef struct SBalanceVgroupStmt {
  ENodeType type;
} SBalanceVgroupStmt;

C
cadem 已提交
494 495 496 497
typedef struct SBalanceVgroupLeaderStmt {
  ENodeType type;
} SBalanceVgroupLeaderStmt;

X
Xiaoyu Wang 已提交
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
typedef struct SMergeVgroupStmt {
  ENodeType type;
  int32_t   vgId1;
  int32_t   vgId2;
} SMergeVgroupStmt;

typedef struct SRedistributeVgroupStmt {
  ENodeType  type;
  int32_t    vgId;
  int32_t    dnodeId1;
  int32_t    dnodeId2;
  int32_t    dnodeId3;
  SNodeList* pDnodes;
} SRedistributeVgroupStmt;

typedef struct SSplitVgroupStmt {
  ENodeType type;
  int32_t   vgId;
} SSplitVgroupStmt;

518 519 520 521
#ifdef __cplusplus
}
#endif

522
#endif /*_TD_CMD_NODES_H_*/