cmdnodes.h 12.0 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)

X
Xiaoyu Wang 已提交
43 44
#define PRIVILEGE_TYPE_MASK(n) (1 << n)

45 46 47 48
#define PRIVILEGE_TYPE_ALL       PRIVILEGE_TYPE_MASK(0)
#define PRIVILEGE_TYPE_READ      PRIVILEGE_TYPE_MASK(1)
#define PRIVILEGE_TYPE_WRITE     PRIVILEGE_TYPE_MASK(2)
#define PRIVILEGE_TYPE_SUBSCRIBE PRIVILEGE_TYPE_MASK(3)
X
Xiaoyu Wang 已提交
49 50 51

#define PRIVILEGE_TYPE_TEST_MASK(val, mask) (((val) & (mask)) != 0)

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

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

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

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

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

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

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

X
Xiaoyu Wang 已提交
126
typedef struct STableOptions {
X
Xiaoyu Wang 已提交
127
  ENodeType  type;
wmmhello's avatar
wmmhello 已提交
128
  bool       commentNull;
129
  char       comment[TSDB_TB_COMMENT_LEN];
X
Xiaoyu Wang 已提交
130 131 132 133 134 135
  SNodeList* pMaxDelay;
  int64_t    maxDelay1;
  int64_t    maxDelay2;
  SNodeList* pWatermark;
  int64_t    watermark1;
  int64_t    watermark2;
136 137 138
  SNodeList* pDeleteMark;
  int64_t    deleteMark1;
  int64_t    deleteMark2;
X
Xiaoyu Wang 已提交
139 140
  SNodeList* pRollupFuncs;
  int32_t    ttl;
141
  SNodeList* pSma;
X
Xiaoyu Wang 已提交
142 143 144 145
} STableOptions;

typedef struct SColumnDefNode {
  ENodeType type;
X
Xiaoyu Wang 已提交
146
  char      colName[TSDB_COL_NAME_LEN];
X
Xiaoyu Wang 已提交
147
  SDataType dataType;
148
  char      comments[TSDB_TB_COMMENT_LEN];
X
Xiaoyu Wang 已提交
149
  bool      sma;
X
Xiaoyu Wang 已提交
150 151 152
} SColumnDefNode;

typedef struct SCreateTableStmt {
X
Xiaoyu Wang 已提交
153 154 155 156 157 158
  ENodeType      type;
  char           dbName[TSDB_DB_NAME_LEN];
  char           tableName[TSDB_TABLE_NAME_LEN];
  bool           ignoreExists;
  SNodeList*     pCols;
  SNodeList*     pTags;
X
Xiaoyu Wang 已提交
159
  STableOptions* pOptions;
X
Xiaoyu Wang 已提交
160 161
} SCreateTableStmt;

162
typedef struct SCreateSubTableClause {
163 164 165 166 167 168 169 170
  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 已提交
171
  STableOptions* pOptions;
172
} SCreateSubTableClause;
173

X
Xiaoyu Wang 已提交
174
typedef struct SCreateMultiTablesStmt {
X
Xiaoyu Wang 已提交
175
  ENodeType  type;
176
  SNodeList* pSubTables;
X
Xiaoyu Wang 已提交
177
} SCreateMultiTablesStmt;
X
Xiaoyu Wang 已提交
178

179 180
typedef struct SDropTableClause {
  ENodeType type;
X
Xiaoyu Wang 已提交
181 182 183
  char      dbName[TSDB_DB_NAME_LEN];
  char      tableName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
184 185 186
} SDropTableClause;

typedef struct SDropTableStmt {
X
Xiaoyu Wang 已提交
187
  ENodeType  type;
188 189 190
  SNodeList* pTables;
} SDropTableStmt;

191 192
typedef struct SDropSuperTableStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
193 194 195
  char      dbName[TSDB_DB_NAME_LEN];
  char      tableName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
196 197
} SDropSuperTableStmt;

198
typedef struct SAlterTableStmt {
X
Xiaoyu Wang 已提交
199 200 201 202 203 204
  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];
205
  STableOptions* pOptions;
X
Xiaoyu Wang 已提交
206 207
  SDataType      dataType;
  SValueNode*    pVal;
208 209
} SAlterTableStmt;

210 211
typedef struct SCreateUserStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
212
  char      userName[TSDB_USER_LEN];
X
Xiaoyu Wang 已提交
213
  char      password[TSDB_USET_PASSWORD_LEN];
X
Xiaoyu Wang 已提交
214
  int8_t    sysinfo;
215 216 217 218
} SCreateUserStmt;

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

typedef struct SDropUserStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
228
  char      userName[TSDB_USER_LEN];
229 230 231 232
} SDropUserStmt;

typedef struct SCreateDnodeStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
233 234
  char      fqdn[TSDB_FQDN_LEN];
  int32_t   port;
235 236 237 238
} SCreateDnodeStmt;

typedef struct SDropDnodeStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
239 240 241
  int32_t   dnodeId;
  char      fqdn[TSDB_FQDN_LEN];
  int32_t   port;
242
  bool      force;
243 244
} SDropDnodeStmt;

245 246
typedef struct SAlterDnodeStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
247 248 249
  int32_t   dnodeId;
  char      config[TSDB_DNODE_CONFIG_LEN];
  char      value[TSDB_DNODE_VALUE_LEN];
250 251
} SAlterDnodeStmt;

252
typedef struct SShowStmt {
253 254 255 256
  ENodeType     type;
  SNode*        pDbName;  // SValueNode
  SNode*        pTbName;  // SValueNode
  EOperatorType tableCondType;
257 258
} SShowStmt;

259
typedef struct SShowCreateDatabaseStmt {
260
  ENodeType type;
X
Xiaoyu Wang 已提交
261
  char      dbName[TSDB_DB_NAME_LEN];
262 263 264 265
  void*     pCfg;  // SDbCfgInfo
} SShowCreateDatabaseStmt;

typedef struct SShowCreateTableStmt {
266 267 268
  ENodeType type;
  char      dbName[TSDB_DB_NAME_LEN];
  char      tableName[TSDB_TABLE_NAME_LEN];
X
Xiaoyu Wang 已提交
269 270
  void*     pDbCfg;     // SDbCfgInfo
  void*     pTableCfg;  // STableCfg
271
} SShowCreateTableStmt;
272

273 274 275 276 277 278
typedef struct SShowTableDistributedStmt {
  ENodeType type;
  char      dbName[TSDB_DB_NAME_LEN];
  char      tableName[TSDB_TABLE_NAME_LEN];
} SShowTableDistributedStmt;

279 280 281
typedef struct SShowDnodeVariablesStmt {
  ENodeType type;
  SNode*    pDnodeId;
282
  SNode*    pLikePattern;
283 284
} SShowDnodeVariablesStmt;

285 286 287 288 289 290
typedef struct SShowVnodesStmt {
  ENodeType type;
  SNode*    pDnodeId;
  SNode*    pDnodeEndpoint;
} SShowVnodesStmt;

291 292 293 294 295 296 297
typedef struct SShowTableTagsStmt {
  ENodeType  type;
  SNode*     pDbName;  // SValueNode
  SNode*     pTbName;  // SValueNode
  SNodeList* pTags;
} SShowTableTagsStmt;

X
Xiaoyu Wang 已提交
298
typedef enum EIndexType { INDEX_TYPE_SMA = 1, INDEX_TYPE_FULLTEXT } EIndexType;
X
Xiaoyu Wang 已提交
299 300

typedef struct SIndexOptions {
X
Xiaoyu Wang 已提交
301
  ENodeType  type;
X
Xiaoyu Wang 已提交
302
  SNodeList* pFuncs;
X
Xiaoyu Wang 已提交
303 304 305
  SNode*     pInterval;
  SNode*     pOffset;
  SNode*     pSliding;
306
  SNode*     pStreamOptions;
X
Xiaoyu Wang 已提交
307 308 309
} SIndexOptions;

typedef struct SCreateIndexStmt {
X
Xiaoyu Wang 已提交
310 311 312
  ENodeType      type;
  EIndexType     indexType;
  bool           ignoreExists;
X
Xiaoyu Wang 已提交
313
  char           indexDbName[TSDB_DB_NAME_LEN];
X
Xiaoyu Wang 已提交
314
  char           indexName[TSDB_INDEX_NAME_LEN];
315
  char           dbName[TSDB_DB_NAME_LEN];
X
Xiaoyu Wang 已提交
316 317
  char           tableName[TSDB_TABLE_NAME_LEN];
  SNodeList*     pCols;
X
Xiaoyu Wang 已提交
318 319 320
  SIndexOptions* pOptions;
} SCreateIndexStmt;

321 322
typedef struct SDropIndexStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
323
  bool      ignoreNotExists;
X
Xiaoyu Wang 已提交
324
  char      indexDbName[TSDB_DB_NAME_LEN];
X
Xiaoyu Wang 已提交
325
  char      indexName[TSDB_INDEX_NAME_LEN];
326 327
} SDropIndexStmt;

328
typedef struct SCreateComponentNodeStmt {
X
Xiaoyu Wang 已提交
329
  ENodeType type;
X
Xiaoyu Wang 已提交
330
  int32_t   dnodeId;
331
} SCreateComponentNodeStmt;
X
Xiaoyu Wang 已提交
332

333
typedef struct SDropComponentNodeStmt {
334
  ENodeType type;
X
Xiaoyu Wang 已提交
335
  int32_t   dnodeId;
336
} SDropComponentNodeStmt;
337 338

typedef struct SCreateTopicStmt {
339 340 341 342 343
  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 已提交
344
  bool      withMeta;
345
  SNode*    pQuery;
346 347 348 349
} SCreateTopicStmt;

typedef struct SDropTopicStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
350 351
  char      topicName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
352 353
} SDropTopicStmt;

X
Xiaoyu Wang 已提交
354 355 356 357 358 359 360
typedef struct SDropCGroupStmt {
  ENodeType type;
  char      topicName[TSDB_TABLE_NAME_LEN];
  char      cgroup[TSDB_CGROUP_LEN];
  bool      ignoreNotExists;
} SDropCGroupStmt;

361 362
typedef struct SAlterLocalStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
363 364
  char      config[TSDB_DNODE_CONFIG_LEN];
  char      value[TSDB_DNODE_VALUE_LEN];
365 366
} SAlterLocalStmt;

367
typedef struct SDescribeStmt {
X
Xiaoyu Wang 已提交
368 369 370
  ENodeType   type;
  char        dbName[TSDB_DB_NAME_LEN];
  char        tableName[TSDB_TABLE_NAME_LEN];
371 372 373
  STableMeta* pMeta;
} SDescribeStmt;

374 375
typedef struct SKillStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
376
  int32_t   targetId;
377 378
} SKillStmt;

X
Xiaoyu Wang 已提交
379 380 381 382 383
typedef struct SKillQueryStmt {
  ENodeType type;
  char      queryId[TSDB_QUERY_ID_LEN];
} SKillQueryStmt;

384 385
typedef struct SStreamOptions {
  ENodeType type;
X
Xiaoyu Wang 已提交
386
  int8_t    triggerType;
387
  SNode*    pDelay;
X
Xiaoyu Wang 已提交
388
  SNode*    pWatermark;
389
  SNode*    pDeleteMark;
390
  int8_t    fillHistory;
X
Xiaoyu Wang 已提交
391
  int8_t    ignoreExpired;
392 393 394
} SStreamOptions;

typedef struct SCreateStreamStmt {
X
Xiaoyu Wang 已提交
395 396 397 398 399
  ENodeType       type;
  char            streamName[TSDB_TABLE_NAME_LEN];
  char            targetDbName[TSDB_DB_NAME_LEN];
  char            targetTabName[TSDB_TABLE_NAME_LEN];
  bool            ignoreExists;
400
  SStreamOptions* pOptions;
X
Xiaoyu Wang 已提交
401
  SNode*          pQuery;
402 403
  SNodeList*      pTags;
  SNode*          pSubtable;
404 405 406 407
} SCreateStreamStmt;

typedef struct SDropStreamStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
408 409
  char      streamName[TSDB_TABLE_NAME_LEN];
  bool      ignoreNotExists;
410 411
} SDropStreamStmt;

412 413
typedef struct SCreateFunctionStmt {
  ENodeType type;
X
Xiaoyu Wang 已提交
414 415 416 417
  bool      ignoreExists;
  char      funcName[TSDB_FUNC_NAME_LEN];
  bool      isAgg;
  char      libraryPath[PATH_MAX];
418
  SDataType outputDt;
X
Xiaoyu Wang 已提交
419
  int32_t   bufSize;
420 421
} SCreateFunctionStmt;

422 423 424 425 426 427 428 429 430
typedef struct SDropFunctionStmt {
  ENodeType type;
  char      funcName[TSDB_FUNC_NAME_LEN];
  bool      ignoreNotExists;
} SDropFunctionStmt;

typedef struct SGrantStmt {
  ENodeType type;
  char      userName[TSDB_USER_LEN];
431
  char      objName[TSDB_DB_NAME_LEN];  // db or topic
432 433 434 435 436
  int64_t   privileges;
} SGrantStmt;

typedef SGrantStmt SRevokeStmt;

X
Xiaoyu Wang 已提交
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
typedef struct SBalanceVgroupStmt {
  ENodeType type;
} SBalanceVgroupStmt;

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;

461 462 463 464
#ifdef __cplusplus
}
#endif

465
#endif /*_TD_CMD_NODES_H_*/