parTranslater.c 92.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/>.
 */

X
Xiaoyu Wang 已提交
16
#include "parInt.h"
17

X
Xiaoyu Wang 已提交
18
#include "catalog.h"
19
#include "cmdnodes.h"
20
#include "functionMgt.h"
X
Xiaoyu Wang 已提交
21
#include "parUtil.h"
22
#include "ttime.h"
23 24

typedef struct STranslateContext {
dengyihao's avatar
dengyihao 已提交
25 26 27 28 29 30 31 32 33 34
  SParseContext*   pParseCxt;
  int32_t          errCode;
  SMsgBuf          msgBuf;
  SArray*          pNsLevel;  // element is SArray*, the element of this subarray is STableNode*
  int32_t          currLevel;
  ESqlClause       currClause;
  SSelectStmt*     pCurrStmt;
  SCmdMsgInfo*     pCmdMsg;
  SHashObj*        pDbs;
  SHashObj*        pTables;
35
  SExplainOptions* pExplainOpt;
36 37
} STranslateContext;

X
Xiaoyu Wang 已提交
38 39 40 41
typedef struct SFullDatabaseName {
  char fullDbName[TSDB_DB_FNAME_LEN];
} SFullDatabaseName;

42
static int32_t translateSubquery(STranslateContext* pCxt, SNode* pNode);
43 44
static int32_t translateQuery(STranslateContext* pCxt, SNode* pNode);

dengyihao's avatar
dengyihao 已提交
45
static bool afterGroupBy(ESqlClause clause) { return clause > SQL_CLAUSE_GROUP_BY; }
46

dengyihao's avatar
dengyihao 已提交
47
static bool beforeHaving(ESqlClause clause) { return clause < SQL_CLAUSE_HAVING; }
48

dengyihao's avatar
dengyihao 已提交
49 50
#define generateDealNodeErrMsg(pCxt, code, ...)               \
  ({                                                          \
X
Xiaoyu Wang 已提交
51
    generateSyntaxErrMsg(&pCxt->msgBuf, code, ##__VA_ARGS__); \
dengyihao's avatar
dengyihao 已提交
52 53
    pCxt->errCode = code;                                     \
    DEAL_RES_ERROR;                                           \
X
Xiaoyu Wang 已提交
54
  })
55 56

static int32_t addNamespace(STranslateContext* pCxt, void* pTable) {
57 58 59 60
  size_t currTotalLevel = taosArrayGetSize(pCxt->pNsLevel);
  if (currTotalLevel > pCxt->currLevel) {
    SArray* pTables = taosArrayGetP(pCxt->pNsLevel, pCxt->currLevel);
    taosArrayPush(pTables, &pTable);
61
  } else {
62 63 64 65 66 67 68 69
    do {
      SArray* pTables = taosArrayInit(TARRAY_MIN_SIZE, POINTER_BYTES);
      if (pCxt->currLevel == currTotalLevel) {
        taosArrayPush(pTables, &pTable);
      }
      taosArrayPush(pCxt->pNsLevel, &pTables);
      ++currTotalLevel;
    } while (currTotalLevel <= pCxt->currLevel);
70 71 72 73
  }
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
74
static SName* toName(int32_t acctId, const char* pDbName, const char* pTableName, SName* pName) {
75 76
  pName->type = TSDB_TABLE_NAME_T;
  pName->acctId = acctId;
X
Xiaoyu Wang 已提交
77 78
  strcpy(pName->dbname, pDbName);
  strcpy(pName->tname, pTableName);
79 80 81
  return pName;
}

D
dapan1121 已提交
82
static int32_t collectUseDatabaseImpl(const char* pFullDbName, SHashObj* pDbs) {
X
Xiaoyu Wang 已提交
83 84 85 86 87
  SFullDatabaseName name = {0};
  strcpy(name.fullDbName, pFullDbName);
  return taosHashPut(pDbs, pFullDbName, strlen(pFullDbName), &name, sizeof(SFullDatabaseName));
}

D
dapan1121 已提交
88 89 90 91 92 93
static int32_t collectUseDatabase(const SName* pName, SHashObj* pDbs) {
  char dbFName[TSDB_DB_FNAME_LEN] = {0};
  tNameGetFullDbName(pName, dbFName);
  return collectUseDatabaseImpl(dbFName, pDbs);
}

X
Xiaoyu Wang 已提交
94 95 96 97 98 99 100 101
static int32_t collectUseTable(const SName* pName, SHashObj* pDbs) {
  char fullName[TSDB_TABLE_FNAME_LEN];
  tNameExtractFullName(pName, fullName);
  return taosHashPut(pDbs, fullName, strlen(fullName), pName, sizeof(SName));
}

static int32_t getTableMetaImpl(STranslateContext* pCxt, const SName* pName, STableMeta** pMeta) {
  SParseContext* pParCxt = pCxt->pParseCxt;
dengyihao's avatar
dengyihao 已提交
102
  int32_t        code = collectUseDatabase(pName, pCxt->pDbs);
D
dapan1121 已提交
103 104 105
  if (TSDB_CODE_SUCCESS == code) {
    code = collectUseTable(pName, pCxt->pTables);
  }
X
Xiaoyu Wang 已提交
106 107 108
  if (TSDB_CODE_SUCCESS == code) {
    code = catalogGetTableMeta(pParCxt->pCatalog, pParCxt->pTransporter, &pParCxt->mgmtEpSet, pName, pMeta);
  }
X
Xiaoyu Wang 已提交
109
  if (TSDB_CODE_SUCCESS != code) {
dengyihao's avatar
dengyihao 已提交
110 111
    parserError("catalogGetTableMeta error, code:%s, dbName:%s, tbName:%s", tstrerror(code), pName->dbname,
                pName->tname);
X
Xiaoyu Wang 已提交
112 113 114 115
  }
  return code;
}

X
Xiaoyu Wang 已提交
116
static int32_t getTableMeta(STranslateContext* pCxt, const char* pDbName, const char* pTableName, STableMeta** pMeta) {
dengyihao's avatar
dengyihao 已提交
117
  SName name = {.type = TSDB_TABLE_NAME_T, .acctId = pCxt->pParseCxt->acctId};
X
Xiaoyu Wang 已提交
118 119 120 121 122
  strcpy(name.dbname, pDbName);
  strcpy(name.tname, pTableName);
  return getTableMetaImpl(pCxt, &name, pMeta);
}

X
Xiaoyu Wang 已提交
123 124
static int32_t getTableDistVgInfo(STranslateContext* pCxt, const SName* pName, SArray** pVgInfo) {
  SParseContext* pParCxt = pCxt->pParseCxt;
dengyihao's avatar
dengyihao 已提交
125
  int32_t        code = collectUseDatabase(pName, pCxt->pDbs);
D
dapan1121 已提交
126 127 128
  if (TSDB_CODE_SUCCESS == code) {
    code = collectUseTable(pName, pCxt->pTables);
  }
X
Xiaoyu Wang 已提交
129 130 131
  if (TSDB_CODE_SUCCESS == code) {
    code = catalogGetTableDistVgInfo(pParCxt->pCatalog, pParCxt->pTransporter, &pParCxt->mgmtEpSet, pName, pVgInfo);
  }
X
Xiaoyu Wang 已提交
132
  if (TSDB_CODE_SUCCESS != code) {
dengyihao's avatar
dengyihao 已提交
133 134
    parserError("catalogGetTableDistVgInfo error, code:%s, dbName:%s, tbName:%s", tstrerror(code), pName->dbname,
                pName->tname);
X
Xiaoyu Wang 已提交
135 136 137 138
  }
  return code;
}

X
Xiaoyu Wang 已提交
139 140
static int32_t getDBVgInfoImpl(STranslateContext* pCxt, const SName* pName, SArray** pVgInfo) {
  SParseContext* pParCxt = pCxt->pParseCxt;
dengyihao's avatar
dengyihao 已提交
141
  char           fullDbName[TSDB_DB_FNAME_LEN];
X
Xiaoyu Wang 已提交
142
  tNameGetFullDbName(pName, fullDbName);
D
dapan1121 已提交
143
  int32_t code = collectUseDatabaseImpl(fullDbName, pCxt->pDbs);
X
Xiaoyu Wang 已提交
144 145 146
  if (TSDB_CODE_SUCCESS == code) {
    code = catalogGetDBVgInfo(pParCxt->pCatalog, pParCxt->pTransporter, &pParCxt->mgmtEpSet, fullDbName, pVgInfo);
  }
X
Xiaoyu Wang 已提交
147 148 149 150 151 152
  if (TSDB_CODE_SUCCESS != code) {
    parserError("catalogGetDBVgInfo error, code:%s, dbFName:%s", tstrerror(code), fullDbName);
  }
  return code;
}

X
Xiaoyu Wang 已提交
153
static int32_t getDBVgInfo(STranslateContext* pCxt, const char* pDbName, SArray** pVgInfo) {
X
Xiaoyu Wang 已提交
154
  SName name;
X
Xiaoyu Wang 已提交
155
  tNameSetDbName(&name, pCxt->pParseCxt->acctId, pDbName, strlen(pDbName));
X
Xiaoyu Wang 已提交
156 157 158 159 160
  char dbFname[TSDB_DB_FNAME_LEN] = {0};
  tNameGetFullDbName(&name, dbFname);
  return getDBVgInfoImpl(pCxt, &name, pVgInfo);
}

X
Xiaoyu Wang 已提交
161 162
static int32_t getTableHashVgroupImpl(STranslateContext* pCxt, const SName* pName, SVgroupInfo* pInfo) {
  SParseContext* pParCxt = pCxt->pParseCxt;
dengyihao's avatar
dengyihao 已提交
163
  int32_t        code = collectUseDatabase(pName, pCxt->pDbs);
D
dapan1121 已提交
164 165 166
  if (TSDB_CODE_SUCCESS == code) {
    code = collectUseTable(pName, pCxt->pTables);
  }
X
Xiaoyu Wang 已提交
167 168 169
  if (TSDB_CODE_SUCCESS == code) {
    code = catalogGetTableHashVgroup(pParCxt->pCatalog, pParCxt->pTransporter, &pParCxt->mgmtEpSet, pName, pInfo);
  }
X
Xiaoyu Wang 已提交
170
  if (TSDB_CODE_SUCCESS != code) {
dengyihao's avatar
dengyihao 已提交
171 172
    parserError("catalogGetTableHashVgroup error, code:%s, dbName:%s, tbName:%s", tstrerror(code), pName->dbname,
                pName->tname);
X
Xiaoyu Wang 已提交
173 174 175 176
  }
  return code;
}

dengyihao's avatar
dengyihao 已提交
177 178 179
static int32_t getTableHashVgroup(STranslateContext* pCxt, const char* pDbName, const char* pTableName,
                                  SVgroupInfo* pInfo) {
  SName name = {.type = TSDB_TABLE_NAME_T, .acctId = pCxt->pParseCxt->acctId};
X
Xiaoyu Wang 已提交
180 181 182 183 184
  strcpy(name.dbname, pDbName);
  strcpy(name.tname, pTableName);
  return getTableHashVgroupImpl(pCxt, &name, pInfo);
}

dengyihao's avatar
dengyihao 已提交
185 186
static int32_t getDBVgVersion(STranslateContext* pCxt, const char* pDbFName, int32_t* pVersion, int64_t* pDbId,
                              int32_t* pTableNum) {
X
Xiaoyu Wang 已提交
187
  SParseContext* pParCxt = pCxt->pParseCxt;
dengyihao's avatar
dengyihao 已提交
188
  int32_t        code = collectUseDatabaseImpl(pDbFName, pCxt->pDbs);
X
Xiaoyu Wang 已提交
189 190 191
  if (TSDB_CODE_SUCCESS == code) {
    code = catalogGetDBVgVersion(pParCxt->pCatalog, pDbFName, pVersion, pDbId, pTableNum);
  }
X
Xiaoyu Wang 已提交
192 193 194 195 196 197
  if (TSDB_CODE_SUCCESS != code) {
    parserError("catalogGetDBVgVersion error, code:%s, dbFName:%s", tstrerror(code), pDbFName);
  }
  return code;
}

198 199 200 201 202
static bool belongTable(const char* currentDb, const SColumnNode* pCol, const STableNode* pTable) {
  int cmp = 0;
  if ('\0' != pCol->dbName[0]) {
    cmp = strcmp(pCol->dbName, pTable->dbName);
  } else {
203
    cmp = (QUERY_NODE_REAL_TABLE == nodeType(pTable) ? strcmp(currentDb, pTable->dbName) : 0);
204 205 206 207 208 209 210 211 212 213 214 215 216 217
  }
  if (0 == cmp) {
    cmp = strcmp(pCol->tableAlias, pTable->tableAlias);
  }
  return (0 == cmp);
}

static SNodeList* getProjectList(SNode* pNode) {
  if (QUERY_NODE_SELECT_STMT == nodeType(pNode)) {
    return ((SSelectStmt*)pNode)->pProjectionList;
  }
  return NULL;
}

dengyihao's avatar
dengyihao 已提交
218 219
static void setColumnInfoBySchema(const SRealTableNode* pTable, const SSchema* pColSchema, bool isTag,
                                  SColumnNode* pCol) {
X
Xiaoyu Wang 已提交
220 221 222
  strcpy(pCol->dbName, pTable->table.dbName);
  strcpy(pCol->tableAlias, pTable->table.tableAlias);
  strcpy(pCol->tableName, pTable->table.tableName);
223 224 225 226
  strcpy(pCol->colName, pColSchema->name);
  if ('\0' == pCol->node.aliasName[0]) {
    strcpy(pCol->node.aliasName, pColSchema->name);
  }
X
Xiaoyu Wang 已提交
227
  pCol->tableId = pTable->pMeta->uid;
228
  pCol->colId = pColSchema->colId;
X
Xiaoyu Wang 已提交
229
  pCol->colType = isTag ? COLUMN_TYPE_TAG : COLUMN_TYPE_COLUMN;
230
  pCol->node.resType.type = pColSchema->type;
231
  pCol->node.resType.bytes = pColSchema->bytes;
X
Xiaoyu Wang 已提交
232 233 234
  if (TSDB_DATA_TYPE_TIMESTAMP == pCol->node.resType.type) {
    pCol->node.resType.precision = pTable->pMeta->tableInfo.precision;
  }
235 236 237 238
}

static void setColumnInfoByExpr(const STableNode* pTable, SExprNode* pExpr, SColumnNode* pCol) {
  pCol->pProjectRef = (SNode*)pExpr;
X
Xiaoyu Wang 已提交
239
  nodesListAppend(pExpr->pAssociationList, (SNode*)pCol);
240 241
  if (NULL != pTable) {
    strcpy(pCol->tableAlias, pTable->tableAlias);
242
  } else if (QUERY_NODE_COLUMN == nodeType(pExpr)) {
243 244 245 246 247
    SColumnNode* pProjCol = (SColumnNode*)pExpr;
    strcpy(pCol->tableAlias, pProjCol->tableAlias);
    pCol->tableId = pProjCol->tableId;
    pCol->colId = pProjCol->colId;
    pCol->colType = pProjCol->colType;
248
  }
249 250 251 252
  strcpy(pCol->colName, pExpr->aliasName);
  pCol->node.resType = pExpr->resType;
}

X
Xiaoyu Wang 已提交
253
static int32_t createColumnNodeByTable(STranslateContext* pCxt, const STableNode* pTable, SNodeList* pList) {
254 255
  if (QUERY_NODE_REAL_TABLE == nodeType(pTable)) {
    const STableMeta* pMeta = ((SRealTableNode*)pTable)->pMeta;
dengyihao's avatar
dengyihao 已提交
256 257
    int32_t           nums =
        pMeta->tableInfo.numOfColumns + ((TSDB_SUPER_TABLE == pMeta->tableType) ? pMeta->tableInfo.numOfTags : 0);
258 259
    for (int32_t i = 0; i < nums; ++i) {
      SColumnNode* pCol = (SColumnNode*)nodesMakeNode(QUERY_NODE_COLUMN);
X
Xiaoyu Wang 已提交
260
      if (NULL == pCol) {
261
        return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_OUT_OF_MEMORY);
X
Xiaoyu Wang 已提交
262
      }
H
Haojun Liao 已提交
263
      setColumnInfoBySchema((SRealTableNode*)pTable, pMeta->schema + i, (i >= pMeta->tableInfo.numOfColumns), pCol);
264 265 266 267
      nodesListAppend(pList, (SNode*)pCol);
    }
  } else {
    SNodeList* pProjectList = getProjectList(((STempTableNode*)pTable)->pSubquery);
dengyihao's avatar
dengyihao 已提交
268
    SNode*     pNode;
269 270
    FOREACH(pNode, pProjectList) {
      SColumnNode* pCol = (SColumnNode*)nodesMakeNode(QUERY_NODE_COLUMN);
X
Xiaoyu Wang 已提交
271
      if (NULL == pCol) {
272
        return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_OUT_OF_MEMORY);
X
Xiaoyu Wang 已提交
273
      }
274
      setColumnInfoByExpr(pTable, (SExprNode*)pNode, pCol);
275 276 277
      nodesListAppend(pList, (SNode*)pCol);
    }
  }
X
Xiaoyu Wang 已提交
278
  return TSDB_CODE_SUCCESS;
279 280 281 282 283 284
}

static bool findAndSetColumn(SColumnNode* pCol, const STableNode* pTable) {
  bool found = false;
  if (QUERY_NODE_REAL_TABLE == nodeType(pTable)) {
    const STableMeta* pMeta = ((SRealTableNode*)pTable)->pMeta;
X
bugfix  
Xiaoyu Wang 已提交
285 286 287 288
    if (PRIMARYKEY_TIMESTAMP_COL_ID == pCol->colId && 0 == strcmp(pCol->colName, PK_TS_COL_INTERNAL_NAME)) {
      setColumnInfoBySchema((SRealTableNode*)pTable, pMeta->schema, false, pCol);
      return true;
    }
289 290 291
    int32_t nums = pMeta->tableInfo.numOfTags + pMeta->tableInfo.numOfColumns;
    for (int32_t i = 0; i < nums; ++i) {
      if (0 == strcmp(pCol->colName, pMeta->schema[i].name)) {
H
Haojun Liao 已提交
292
        setColumnInfoBySchema((SRealTableNode*)pTable, pMeta->schema + i, (i >= pMeta->tableInfo.numOfColumns), pCol);
293 294 295 296 297 298
        found = true;
        break;
      }
    }
  } else {
    SNodeList* pProjectList = getProjectList(((STempTableNode*)pTable)->pSubquery);
dengyihao's avatar
dengyihao 已提交
299
    SNode*     pNode;
300 301 302
    FOREACH(pNode, pProjectList) {
      SExprNode* pExpr = (SExprNode*)pNode;
      if (0 == strcmp(pCol->colName, pExpr->aliasName)) {
303
        setColumnInfoByExpr(pTable, pExpr, pCol);
304 305 306 307 308 309 310 311
        found = true;
        break;
      }
    }
  }
  return found;
}

312
static EDealRes translateColumnWithPrefix(STranslateContext* pCxt, SColumnNode* pCol) {
313
  SArray* pTables = taosArrayGetP(pCxt->pNsLevel, pCxt->currLevel);
dengyihao's avatar
dengyihao 已提交
314 315
  size_t  nums = taosArrayGetSize(pTables);
  bool    foundTable = false;
316 317 318
  for (size_t i = 0; i < nums; ++i) {
    STableNode* pTable = taosArrayGetP(pTables, i);
    if (belongTable(pCxt->pParseCxt->db, pCol, pTable)) {
319
      foundTable = true;
320 321
      if (findAndSetColumn(pCol, pTable)) {
        break;
322
      }
323
      return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_INVALID_COLUMN, pCol->colName);
324
    }
325
  }
326
  if (!foundTable) {
327
    return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_TABLE_NOT_EXIST, pCol->tableAlias);
328
  }
329
  return DEAL_RES_CONTINUE;
330
}
331

332
static EDealRes translateColumnWithoutPrefix(STranslateContext* pCxt, SColumnNode* pCol) {
333
  SArray* pTables = taosArrayGetP(pCxt->pNsLevel, pCxt->currLevel);
dengyihao's avatar
dengyihao 已提交
334 335
  size_t  nums = taosArrayGetSize(pTables);
  bool    found = false;
336 337 338 339
  for (size_t i = 0; i < nums; ++i) {
    STableNode* pTable = taosArrayGetP(pTables, i);
    if (findAndSetColumn(pCol, pTable)) {
      if (found) {
340
        return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_AMBIGUOUS_COLUMN, pCol->colName);
341 342
      }
      found = true;
343
    }
344 345
  }
  if (!found) {
346
    return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_INVALID_COLUMN, pCol->colName);
347
  }
348
  return DEAL_RES_CONTINUE;
349 350
}

351
static bool translateColumnUseAlias(STranslateContext* pCxt, SColumnNode* pCol) {
352
  SNodeList* pProjectionList = pCxt->pCurrStmt->pProjectionList;
dengyihao's avatar
dengyihao 已提交
353
  SNode*     pNode;
354 355 356
  FOREACH(pNode, pProjectionList) {
    SExprNode* pExpr = (SExprNode*)pNode;
    if (0 == strcmp(pCol->colName, pExpr->aliasName)) {
dengyihao's avatar
dengyihao 已提交
357 358
      setColumnInfoByExpr(NULL, pExpr, pCol);
      return true;
359 360 361 362 363
    }
  }
  return false;
}

364
static EDealRes translateColumn(STranslateContext* pCxt, SColumnNode* pCol) {
365 366
  // count(*)/first(*)/last(*)
  if (0 == strcmp(pCol->colName, "*")) {
367
    return DEAL_RES_CONTINUE;
368
  }
369 370 371
  if ('\0' != pCol->tableAlias[0]) {
    return translateColumnWithPrefix(pCxt, pCol);
  }
372 373 374 375
  bool found = false;
  if (SQL_CLAUSE_ORDER_BY == pCxt->currClause) {
    found = translateColumnUseAlias(pCxt, pCol);
  }
376
  return found ? DEAL_RES_CONTINUE : translateColumnWithoutPrefix(pCxt, pCol);
377 378
}

379
static EDealRes translateValue(STranslateContext* pCxt, SValueNode* pVal) {
380
  if (pVal->isDuration) {
dengyihao's avatar
dengyihao 已提交
381 382
    if (parseNatualDuration(pVal->literal, strlen(pVal->literal), &pVal->datum.i, &pVal->unit,
                            pVal->node.resType.precision) != TSDB_CODE_SUCCESS) {
383
      return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_WRONG_VALUE_TYPE, pVal->literal);
384 385 386 387 388 389 390 391
    }
  } else {
    switch (pVal->node.resType.type) {
      case TSDB_DATA_TYPE_NULL:
        break;
      case TSDB_DATA_TYPE_BOOL:
        pVal->datum.b = (0 == strcasecmp(pVal->literal, "true"));
        break;
392 393 394
      case TSDB_DATA_TYPE_TINYINT:
      case TSDB_DATA_TYPE_SMALLINT:
      case TSDB_DATA_TYPE_INT:
395 396
      case TSDB_DATA_TYPE_BIGINT: {
        char* endPtr = NULL;
397
        pVal->datum.i = strtoll(pVal->literal, &endPtr, 10);
398 399
        break;
      }
400 401 402
      case TSDB_DATA_TYPE_UTINYINT:
      case TSDB_DATA_TYPE_USMALLINT:
      case TSDB_DATA_TYPE_UINT:
X
Xiaoyu Wang 已提交
403
      case TSDB_DATA_TYPE_UBIGINT: {
404 405 406 407 408
        char* endPtr = NULL;
        pVal->datum.u = strtoull(pVal->literal, &endPtr, 10);
        break;
      }
      case TSDB_DATA_TYPE_FLOAT:
409 410 411 412 413
      case TSDB_DATA_TYPE_DOUBLE: {
        char* endPtr = NULL;
        pVal->datum.d = strtold(pVal->literal, &endPtr);
        break;
      }
414 415 416
      case TSDB_DATA_TYPE_NCHAR:
      case TSDB_DATA_TYPE_VARCHAR:
      case TSDB_DATA_TYPE_VARBINARY: {
wafwerar's avatar
wafwerar 已提交
417
        pVal->datum.p = taosMemoryCalloc(1, pVal->node.resType.bytes + VARSTR_HEADER_SIZE + 1);
X
Xiaoyu Wang 已提交
418
        if (NULL == pVal->datum.p) {
419
          return generateDealNodeErrMsg(pCxt, TSDB_CODE_OUT_OF_MEMORY);
X
Xiaoyu Wang 已提交
420
        }
X
Xiaoyu Wang 已提交
421
        varDataSetLen(pVal->datum.p, pVal->node.resType.bytes);
D
dapan1121 已提交
422
        strncpy(varDataVal(pVal->datum.p), pVal->literal, pVal->node.resType.bytes);
423 424 425
        break;
      }
      case TSDB_DATA_TYPE_TIMESTAMP: {
dengyihao's avatar
dengyihao 已提交
426 427
        if (taosParseTime(pVal->literal, &pVal->datum.i, pVal->node.resType.bytes, pVal->node.resType.precision,
                          tsDaylight) != TSDB_CODE_SUCCESS) {
428
          return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_WRONG_VALUE_TYPE, pVal->literal);
429 430 431
        }
        break;
      }
432 433 434 435
      case TSDB_DATA_TYPE_JSON:
      case TSDB_DATA_TYPE_DECIMAL:
      case TSDB_DATA_TYPE_BLOB:
        // todo
436 437 438 439
      default:
        break;
    }
  }
440
  pVal->translate = true;
441
  return DEAL_RES_CONTINUE;
442 443
}

444
static EDealRes translateOperator(STranslateContext* pCxt, SOperatorNode* pOp) {
X
Xiaoyu Wang 已提交
445
  if (nodesIsUnaryOp(pOp)) {
D
dapan1121 已提交
446 447 448 449 450 451
    if (OP_TYPE_MINUS == pOp->opType) {
      if (!IS_MATHABLE_TYPE(((SExprNode*)(pOp->pLeft))->resType.type)) {
        return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_WRONG_VALUE_TYPE, ((SExprNode*)(pOp->pLeft))->aliasName);
      }
      pOp->node.resType.type = TSDB_DATA_TYPE_DOUBLE;
      pOp->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_DOUBLE].bytes;
X
Xiaoyu Wang 已提交
452
    }
X
Xiaoyu Wang 已提交
453 454
    return DEAL_RES_CONTINUE;
  }
455 456 457
  SDataType ldt = ((SExprNode*)(pOp->pLeft))->resType;
  SDataType rdt = ((SExprNode*)(pOp->pRight))->resType;
  if (nodesIsArithmeticOp(pOp)) {
dengyihao's avatar
dengyihao 已提交
458 459
    if (TSDB_DATA_TYPE_JSON == ldt.type || TSDB_DATA_TYPE_BLOB == ldt.type || TSDB_DATA_TYPE_JSON == rdt.type ||
        TSDB_DATA_TYPE_BLOB == rdt.type) {
460
      return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_WRONG_VALUE_TYPE, ((SExprNode*)(pOp->pRight))->aliasName);
461 462 463 464
    }
    pOp->node.resType.type = TSDB_DATA_TYPE_DOUBLE;
    pOp->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_DOUBLE].bytes;
  } else if (nodesIsComparisonOp(pOp)) {
dengyihao's avatar
dengyihao 已提交
465 466
    if (TSDB_DATA_TYPE_JSON == ldt.type || TSDB_DATA_TYPE_BLOB == ldt.type || TSDB_DATA_TYPE_JSON == rdt.type ||
        TSDB_DATA_TYPE_BLOB == rdt.type) {
467
      return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_WRONG_VALUE_TYPE, ((SExprNode*)(pOp->pRight))->aliasName);
468 469 470 471 472 473
    }
    pOp->node.resType.type = TSDB_DATA_TYPE_BOOL;
    pOp->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_BOOL].bytes;
  } else {
    // todo json operator
  }
474
  return DEAL_RES_CONTINUE;
475 476
}

477
static EDealRes translateFunction(STranslateContext* pCxt, SFunctionNode* pFunc) {
X
Xiaoyu Wang 已提交
478
  if (TSDB_CODE_SUCCESS != fmGetFuncInfo(pFunc->functionName, &pFunc->funcId, &pFunc->funcType)) {
479
    return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_INVALID_FUNTION, pFunc->functionName);
480 481
  }
  int32_t code = fmGetFuncResultType(pFunc);
482
  if (TSDB_CODE_SUCCESS != code) {
483
    return generateDealNodeErrMsg(pCxt, code, pFunc->functionName);
484
  }
485
  if (fmIsAggFunc(pFunc->funcId) && beforeHaving(pCxt->currClause)) {
486
    return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_ILLEGAL_USE_AGG_FUNCTION);
487
  }
488 489 490 491 492
  return DEAL_RES_CONTINUE;
}

static EDealRes translateExprSubquery(STranslateContext* pCxt, SNode* pNode) {
  return (TSDB_CODE_SUCCESS == translateSubquery(pCxt, pNode) ? DEAL_RES_CONTINUE : DEAL_RES_ERROR);
493 494
}

495 496 497 498 499 500
static EDealRes translateLogicCond(STranslateContext* pCxt, SLogicConditionNode* pCond) {
  pCond->node.resType.type = TSDB_DATA_TYPE_BOOL;
  pCond->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_BOOL].bytes;
  return DEAL_RES_CONTINUE;
}

501
static EDealRes doTranslateExpr(SNode* pNode, void* pContext) {
502 503 504 505 506 507 508 509
  STranslateContext* pCxt = (STranslateContext*)pContext;
  switch (nodeType(pNode)) {
    case QUERY_NODE_COLUMN:
      return translateColumn(pCxt, (SColumnNode*)pNode);
    case QUERY_NODE_VALUE:
      return translateValue(pCxt, (SValueNode*)pNode);
    case QUERY_NODE_OPERATOR:
      return translateOperator(pCxt, (SOperatorNode*)pNode);
510
    case QUERY_NODE_FUNCTION:
511
      return translateFunction(pCxt, (SFunctionNode*)pNode);
512 513
    case QUERY_NODE_LOGIC_CONDITION:
      return translateLogicCond(pCxt, (SLogicConditionNode*)pNode);
514
    case QUERY_NODE_TEMP_TABLE:
515
      return translateExprSubquery(pCxt, ((STempTableNode*)pNode)->pSubquery);
516 517 518
    default:
      break;
  }
519
  return DEAL_RES_CONTINUE;
520 521 522
}

static int32_t translateExpr(STranslateContext* pCxt, SNode* pNode) {
X
Xiaoyu Wang 已提交
523
  nodesWalkExprPostOrder(pNode, doTranslateExpr, pCxt);
524 525 526 527
  return pCxt->errCode;
}

static int32_t translateExprList(STranslateContext* pCxt, SNodeList* pList) {
X
Xiaoyu Wang 已提交
528
  nodesWalkExprsPostOrder(pList, doTranslateExpr, pCxt);
529 530 531
  return pCxt->errCode;
}

dengyihao's avatar
dengyihao 已提交
532
static bool isAliasColumn(SColumnNode* pCol) { return ('\0' == pCol->tableAlias[0]); }
533

534 535 536 537
static bool isDistinctOrderBy(STranslateContext* pCxt) {
  return (SQL_CLAUSE_ORDER_BY == pCxt->currClause && pCxt->pCurrStmt->isDistinct);
}

538
static SNodeList* getGroupByList(STranslateContext* pCxt) {
539
  if (isDistinctOrderBy(pCxt)) {
540 541 542 543 544 545 546 547 548 549 550 551 552
    return pCxt->pCurrStmt->pProjectionList;
  }
  return pCxt->pCurrStmt->pGroupByList;
}

static SNode* getGroupByNode(SNode* pNode) {
  if (QUERY_NODE_GROUPING_SET == nodeType(pNode)) {
    return nodesListGetNode(((SGroupingSetNode*)pNode)->pParameterList, 0);
  }
  return pNode;
}

static int32_t getGroupByErrorCode(STranslateContext* pCxt) {
553
  if (isDistinctOrderBy(pCxt)) {
554 555 556 557 558 559
    return TSDB_CODE_PAR_NOT_SELECTED_EXPRESSION;
  }
  return TSDB_CODE_PAR_GROUPBY_LACK_EXPRESSION;
}

static EDealRes doCheckExprForGroupBy(SNode* pNode, void* pContext) {
560 561 562 563
  STranslateContext* pCxt = (STranslateContext*)pContext;
  if (!nodesIsExprNode(pNode) || (QUERY_NODE_COLUMN == nodeType(pNode) && isAliasColumn((SColumnNode*)pNode))) {
    return DEAL_RES_CONTINUE;
  }
dengyihao's avatar
dengyihao 已提交
564 565
  if (QUERY_NODE_FUNCTION == nodeType(pNode) && fmIsAggFunc(((SFunctionNode*)pNode)->funcId) &&
      !isDistinctOrderBy(pCxt)) {
566 567 568
    return DEAL_RES_IGNORE_CHILD;
  }
  SNode* pGroupNode;
569 570
  FOREACH(pGroupNode, getGroupByList(pCxt)) {
    if (nodesEqualNode(getGroupByNode(pGroupNode), pNode)) {
571 572 573
      return DEAL_RES_IGNORE_CHILD;
    }
  }
574
  if (QUERY_NODE_COLUMN == nodeType(pNode) ||
dengyihao's avatar
dengyihao 已提交
575 576
      (QUERY_NODE_FUNCTION == nodeType(pNode) && fmIsAggFunc(((SFunctionNode*)pNode)->funcId) &&
       isDistinctOrderBy(pCxt))) {
577
    return generateDealNodeErrMsg(pCxt, getGroupByErrorCode(pCxt));
578 579 580 581 582
  }
  return DEAL_RES_CONTINUE;
}

static int32_t checkExprForGroupBy(STranslateContext* pCxt, SNode* pNode) {
X
Xiaoyu Wang 已提交
583
  nodesWalkExpr(pNode, doCheckExprForGroupBy, pCxt);
584 585 586 587
  return pCxt->errCode;
}

static int32_t checkExprListForGroupBy(STranslateContext* pCxt, SNodeList* pList) {
588 589 590
  if (NULL == getGroupByList(pCxt)) {
    return TSDB_CODE_SUCCESS;
  }
X
Xiaoyu Wang 已提交
591
  nodesWalkExprs(pList, doCheckExprForGroupBy, pCxt);
592 593 594
  return pCxt->errCode;
}

595 596
typedef struct CheckAggColCoexistCxt {
  STranslateContext* pTranslateCxt;
dengyihao's avatar
dengyihao 已提交
597 598
  bool               existAggFunc;
  bool               existCol;
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
} CheckAggColCoexistCxt;

static EDealRes doCheckAggColCoexist(SNode* pNode, void* pContext) {
  CheckAggColCoexistCxt* pCxt = (CheckAggColCoexistCxt*)pContext;
  if (QUERY_NODE_FUNCTION == nodeType(pNode) && fmIsAggFunc(((SFunctionNode*)pNode)->funcId)) {
    pCxt->existAggFunc = true;
    return DEAL_RES_IGNORE_CHILD;
  }
  if (QUERY_NODE_COLUMN == nodeType(pNode)) {
    pCxt->existCol = true;
  }
  return DEAL_RES_CONTINUE;
}

static int32_t checkAggColCoexist(STranslateContext* pCxt, SSelectStmt* pSelect) {
  if (NULL != pSelect->pGroupByList) {
    return TSDB_CODE_SUCCESS;
  }
dengyihao's avatar
dengyihao 已提交
617
  CheckAggColCoexistCxt cxt = {.pTranslateCxt = pCxt, .existAggFunc = false, .existCol = false};
X
Xiaoyu Wang 已提交
618
  nodesWalkExprs(pSelect->pProjectionList, doCheckAggColCoexist, &cxt);
619
  if (!pSelect->isDistinct) {
X
Xiaoyu Wang 已提交
620
    nodesWalkExprs(pSelect->pOrderByList, doCheckAggColCoexist, &cxt);
621 622
  }
  if (cxt.existAggFunc && cxt.existCol) {
623
    return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_NOT_SINGLE_GROUP);
624 625 626 627
  }
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
628 629
static int32_t toVgroupsInfo(SArray* pVgs, SVgroupsInfo** pVgsInfo) {
  size_t vgroupNum = taosArrayGetSize(pVgs);
wafwerar's avatar
wafwerar 已提交
630
  *pVgsInfo = taosMemoryCalloc(1, sizeof(SVgroupsInfo) + sizeof(SVgroupInfo) * vgroupNum);
X
Xiaoyu Wang 已提交
631 632 633 634 635
  if (NULL == *pVgsInfo) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  (*pVgsInfo)->numOfVgroups = vgroupNum;
  for (int32_t i = 0; i < vgroupNum; ++i) {
dengyihao's avatar
dengyihao 已提交
636
    SVgroupInfo* vg = taosArrayGet(pVgs, i);
X
Xiaoyu Wang 已提交
637 638 639 640 641
    (*pVgsInfo)->vgroups[i] = *vg;
  }
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
642
static int32_t setSysTableVgroupList(STranslateContext* pCxt, SName* pName, SRealTableNode* pRealTable) {
D
dapan1121 已提交
643 644 645
  if (0 != strcmp(pRealTable->table.tableName, TSDB_INS_TABLE_USER_TABLES)) {
    return TSDB_CODE_SUCCESS;
  }
X
Xiaoyu Wang 已提交
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662

  int32_t code = TSDB_CODE_SUCCESS;
  SArray* vgroupList = NULL;
  if ('\0' != pRealTable->useDbName[0]) {
    code = getDBVgInfo(pCxt, pRealTable->useDbName, &vgroupList);
  } else {
    code = getDBVgInfoImpl(pCxt, pName, &vgroupList);
  }

  if (TSDB_CODE_SUCCESS == code) {
    code = toVgroupsInfo(vgroupList, &pRealTable->pVgroupList);
  }
  taosArrayDestroy(vgroupList);

  return code;
}

X
Xiaoyu Wang 已提交
663 664
static int32_t setTableVgroupList(STranslateContext* pCxt, SName* pName, SRealTableNode* pRealTable) {
  if (pCxt->pParseCxt->topicQuery) {
X
Xiaoyu Wang 已提交
665 666 667
    return TSDB_CODE_SUCCESS;
  }

X
Xiaoyu Wang 已提交
668
  int32_t code = TSDB_CODE_SUCCESS;
X
Xiaoyu Wang 已提交
669 670
  if (TSDB_SUPER_TABLE == pRealTable->pMeta->tableType) {
    SArray* vgroupList = NULL;
X
Xiaoyu Wang 已提交
671
    code = getTableDistVgInfo(pCxt, pName, &vgroupList);
X
Xiaoyu Wang 已提交
672 673
    if (TSDB_CODE_SUCCESS == code) {
      code = toVgroupsInfo(vgroupList, &pRealTable->pVgroupList);
X
Xiaoyu Wang 已提交
674 675
    }
    taosArrayDestroy(vgroupList);
X
Xiaoyu Wang 已提交
676
  } else if (TSDB_SYSTEM_TABLE == pRealTable->pMeta->tableType) {
X
Xiaoyu Wang 已提交
677
    code = setSysTableVgroupList(pCxt, pName, pRealTable);
X
Xiaoyu Wang 已提交
678
  } else {
wafwerar's avatar
wafwerar 已提交
679
    pRealTable->pVgroupList = taosMemoryCalloc(1, sizeof(SVgroupsInfo) + sizeof(SVgroupInfo));
X
Xiaoyu Wang 已提交
680 681 682 683
    if (NULL == pRealTable->pVgroupList) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
    pRealTable->pVgroupList->numOfVgroups = 1;
X
Xiaoyu Wang 已提交
684
    code = getTableHashVgroupImpl(pCxt, pName, pRealTable->pVgroupList->vgroups);
685
  }
X
Xiaoyu Wang 已提交
686
  return code;
687 688
}

689 690 691 692 693
static int32_t translateTable(STranslateContext* pCxt, SNode* pTable) {
  int32_t code = TSDB_CODE_SUCCESS;
  switch (nodeType(pTable)) {
    case QUERY_NODE_REAL_TABLE: {
      SRealTableNode* pRealTable = (SRealTableNode*)pTable;
694
      pRealTable->ratio = (NULL != pCxt->pExplainOpt ? pCxt->pExplainOpt->ratio : 1.0);
695
      SName name;
dengyihao's avatar
dengyihao 已提交
696 697 698
      code = getTableMetaImpl(
          pCxt, toName(pCxt->pParseCxt->acctId, pRealTable->table.dbName, pRealTable->table.tableName, &name),
          &(pRealTable->pMeta));
699
      if (TSDB_CODE_SUCCESS != code) {
700
        return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_TABLE_NOT_EXIST, pRealTable->table.tableName);
701
      }
X
Xiaoyu Wang 已提交
702
      code = setTableVgroupList(pCxt, &name, pRealTable);
703 704
      if (TSDB_CODE_SUCCESS == code) {
        code = addNamespace(pCxt, pRealTable);
705
      }
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
      break;
    }
    case QUERY_NODE_TEMP_TABLE: {
      STempTableNode* pTempTable = (STempTableNode*)pTable;
      code = translateSubquery(pCxt, pTempTable->pSubquery);
      if (TSDB_CODE_SUCCESS == code) {
        code = addNamespace(pCxt, pTempTable);
      }
      break;
    }
    case QUERY_NODE_JOIN_TABLE: {
      SJoinTableNode* pJoinTable = (SJoinTableNode*)pTable;
      code = translateTable(pCxt, pJoinTable->pLeft);
      if (TSDB_CODE_SUCCESS == code) {
        code = translateTable(pCxt, pJoinTable->pRight);
      }
      if (TSDB_CODE_SUCCESS == code) {
        code = translateExpr(pCxt, pJoinTable->pOnCond);
      }
      break;
    }
    default:
      break;
  }
  return code;
}

static int32_t translateStar(STranslateContext* pCxt, SSelectStmt* pSelect, bool* pIsSelectStar) {
dengyihao's avatar
dengyihao 已提交
734
  if (NULL == pSelect->pProjectionList) {  // select * ...
735
    SArray* pTables = taosArrayGetP(pCxt->pNsLevel, pCxt->currLevel);
dengyihao's avatar
dengyihao 已提交
736
    size_t  nums = taosArrayGetSize(pTables);
737
    pSelect->pProjectionList = nodesMakeList();
X
Xiaoyu Wang 已提交
738
    if (NULL == pSelect->pProjectionList) {
739
      return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_OUT_OF_MEMORY);
X
Xiaoyu Wang 已提交
740
    }
741 742
    for (size_t i = 0; i < nums; ++i) {
      STableNode* pTable = taosArrayGetP(pTables, i);
dengyihao's avatar
dengyihao 已提交
743
      int32_t     code = createColumnNodeByTable(pCxt, pTable, pSelect->pProjectionList);
X
Xiaoyu Wang 已提交
744 745 746
      if (TSDB_CODE_SUCCESS != code) {
        return code;
      }
747 748 749
    }
    *pIsSelectStar = true;
  } else {
X
Xiaoyu Wang 已提交
750
    // todo : t.*
751
  }
752
  return TSDB_CODE_SUCCESS;
753 754
}

755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
static int32_t getPositionValue(const SValueNode* pVal) {
  switch (pVal->node.resType.type) {
    case TSDB_DATA_TYPE_NULL:
    case TSDB_DATA_TYPE_TIMESTAMP:
    case TSDB_DATA_TYPE_NCHAR:
    case TSDB_DATA_TYPE_VARCHAR:
    case TSDB_DATA_TYPE_VARBINARY:
    case TSDB_DATA_TYPE_JSON:
      return -1;
    case TSDB_DATA_TYPE_BOOL:
      return (pVal->datum.b ? 1 : 0);
    case TSDB_DATA_TYPE_TINYINT:
    case TSDB_DATA_TYPE_SMALLINT:
    case TSDB_DATA_TYPE_INT:
    case TSDB_DATA_TYPE_BIGINT:
      return pVal->datum.i;
    case TSDB_DATA_TYPE_FLOAT:
    case TSDB_DATA_TYPE_DOUBLE:
      return pVal->datum.d;
    case TSDB_DATA_TYPE_UTINYINT:
    case TSDB_DATA_TYPE_USMALLINT:
    case TSDB_DATA_TYPE_UINT:
    case TSDB_DATA_TYPE_UBIGINT:
dengyihao's avatar
dengyihao 已提交
778
      return pVal->datum.u;
779 780 781 782 783 784
    default:
      break;
  }
  return -1;
}

dengyihao's avatar
dengyihao 已提交
785 786
static int32_t translateOrderByPosition(STranslateContext* pCxt, SNodeList* pProjectionList, SNodeList* pOrderByList,
                                        bool* pOther) {
787 788 789
  *pOther = false;
  SNode* pNode;
  FOREACH(pNode, pOrderByList) {
790 791 792
    SNode* pExpr = ((SOrderByExprNode*)pNode)->pExpr;
    if (QUERY_NODE_VALUE == nodeType(pExpr)) {
      SValueNode* pVal = (SValueNode*)pExpr;
793
      if (DEAL_RES_ERROR == translateValue(pCxt, pVal)) {
X
Xiaoyu Wang 已提交
794
        return pCxt->errCode;
795
      }
X
Xiaoyu Wang 已提交
796
      int32_t pos = getPositionValue(pVal);
797 798 799 800
      if (pos < 0) {
        ERASE_NODE(pOrderByList);
        continue;
      } else if (0 == pos || pos > LIST_LENGTH(pProjectionList)) {
801
        return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_WRONG_NUMBER_OF_SELECT);
802 803
      } else {
        SColumnNode* pCol = (SColumnNode*)nodesMakeNode(QUERY_NODE_COLUMN);
X
Xiaoyu Wang 已提交
804
        if (NULL == pCol) {
805
          return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_OUT_OF_MEMORY);
X
Xiaoyu Wang 已提交
806
        }
807 808 809
        setColumnInfoByExpr(NULL, (SExprNode*)nodesListGetNode(pProjectionList, pos - 1), pCol);
        ((SOrderByExprNode*)pNode)->pExpr = (SNode*)pCol;
        nodesDestroyNode(pExpr);
810 811 812 813 814
      }
    } else {
      *pOther = true;
    }
  }
X
Xiaoyu Wang 已提交
815
  return TSDB_CODE_SUCCESS;
816 817
}

818
static int32_t translateOrderBy(STranslateContext* pCxt, SSelectStmt* pSelect) {
dengyihao's avatar
dengyihao 已提交
819
  bool    other;
X
Xiaoyu Wang 已提交
820 821 822
  int32_t code = translateOrderByPosition(pCxt, pSelect->pProjectionList, pSelect->pOrderByList, &other);
  if (TSDB_CODE_SUCCESS != code) {
    return code;
823 824 825 826 827
  }
  if (!other) {
    return TSDB_CODE_SUCCESS;
  }
  pCxt->currClause = SQL_CLAUSE_ORDER_BY;
X
Xiaoyu Wang 已提交
828
  code = translateExprList(pCxt, pSelect->pOrderByList);
829
  if (TSDB_CODE_SUCCESS == code) {
830 831 832
    code = checkExprListForGroupBy(pCxt, pSelect->pOrderByList);
  }
  return code;
833 834 835
}

static int32_t translateSelectList(STranslateContext* pCxt, SSelectStmt* pSelect) {
dengyihao's avatar
dengyihao 已提交
836
  bool    isSelectStar = false;
837 838 839 840 841
  int32_t code = translateStar(pCxt, pSelect, &isSelectStar);
  if (TSDB_CODE_SUCCESS == code && !isSelectStar) {
    pCxt->currClause = SQL_CLAUSE_SELECT;
    code = translateExprList(pCxt, pSelect->pProjectionList);
  }
842
  if (TSDB_CODE_SUCCESS == code) {
843 844
    code = checkExprListForGroupBy(pCxt, pSelect->pProjectionList);
  }
845 846 847
  return code;
}

848 849
static int32_t translateHaving(STranslateContext* pCxt, SSelectStmt* pSelect) {
  if (NULL == pSelect->pGroupByList && NULL != pSelect->pHaving) {
850
    return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_GROUPBY_LACK_EXPRESSION);
851
  }
852
  pCxt->currClause = SQL_CLAUSE_HAVING;
853 854 855 856 857
  int32_t code = translateExpr(pCxt, pSelect->pHaving);
  if (TSDB_CODE_SUCCESS == code) {
    code = checkExprForGroupBy(pCxt, pSelect->pHaving);
  }
  return code;
858 859 860 861 862 863 864
}

static int32_t translateGroupBy(STranslateContext* pCxt, SNodeList* pGroupByList) {
  pCxt->currClause = SQL_CLAUSE_GROUP_BY;
  return translateExprList(pCxt, pGroupByList);
}

X
Xiaoyu Wang 已提交
865 866 867 868 869 870 871 872 873 874
static int32_t translateIntervalWindow(STranslateContext* pCxt, SIntervalWindowNode* pInterval) {
  SValueNode* pIntervalVal = (SValueNode*)pInterval->pInterval;
  SValueNode* pIntervalOffset = (SValueNode*)pInterval->pOffset;
  SValueNode* pSliding = (SValueNode*)pInterval->pSliding;
  if (pIntervalVal->datum.i <= 0) {
    return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_INTERVAL_VALUE_TOO_SMALL, pIntervalVal->literal);
  }
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
875
static int32_t doTranslateWindow(STranslateContext* pCxt, SNode* pWindow) {
X
Xiaoyu Wang 已提交
876 877
  switch (nodeType(pWindow)) {
    case QUERY_NODE_INTERVAL_WINDOW:
dengyihao's avatar
dengyihao 已提交
878
      return translateIntervalWindow(pCxt, (SIntervalWindowNode*)pWindow);
X
Xiaoyu Wang 已提交
879 880 881
    default:
      break;
  }
X
Xiaoyu Wang 已提交
882 883 884
  return TSDB_CODE_SUCCESS;
}

885
static int32_t translateWindow(STranslateContext* pCxt, SNode* pWindow) {
X
Xiaoyu Wang 已提交
886 887 888
  if (NULL == pWindow) {
    return TSDB_CODE_SUCCESS;
  }
889
  pCxt->currClause = SQL_CLAUSE_WINDOW;
X
Xiaoyu Wang 已提交
890 891 892 893 894
  int32_t code = translateExpr(pCxt, pWindow);
  if (TSDB_CODE_SUCCESS == code) {
    code = doTranslateWindow(pCxt, pWindow);
  }
  return code;
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
}

static int32_t translatePartitionBy(STranslateContext* pCxt, SNodeList* pPartitionByList) {
  pCxt->currClause = SQL_CLAUSE_PARTITION_BY;
  return translateExprList(pCxt, pPartitionByList);
}

static int32_t translateWhere(STranslateContext* pCxt, SNode* pWhere) {
  pCxt->currClause = SQL_CLAUSE_WHERE;
  return translateExpr(pCxt, pWhere);
}

static int32_t translateFrom(STranslateContext* pCxt, SNode* pTable) {
  pCxt->currClause = SQL_CLAUSE_FROM;
  return translateTable(pCxt, pTable);
}

912
static int32_t translateSelect(STranslateContext* pCxt, SSelectStmt* pSelect) {
913 914
  pCxt->pCurrStmt = pSelect;
  int32_t code = translateFrom(pCxt, pSelect->pFromTable);
915
  if (TSDB_CODE_SUCCESS == code) {
916
    code = translateWhere(pCxt, pSelect->pWhere);
917
  }
918
  if (TSDB_CODE_SUCCESS == code) {
919
    code = translatePartitionBy(pCxt, pSelect->pPartitionByList);
920
  }
921
  if (TSDB_CODE_SUCCESS == code) {
922
    code = translateWindow(pCxt, pSelect->pWindow);
923
  }
924 925 926 927
  if (TSDB_CODE_SUCCESS == code) {
    code = translateGroupBy(pCxt, pSelect->pGroupByList);
  }
  if (TSDB_CODE_SUCCESS == code) {
928
    code = translateHaving(pCxt, pSelect);
929 930 931 932 933
  }
  if (TSDB_CODE_SUCCESS == code) {
    code = translateSelectList(pCxt, pSelect);
  }
  if (TSDB_CODE_SUCCESS == code) {
934
    code = translateOrderBy(pCxt, pSelect);
935
  }
936 937 938
  if (TSDB_CODE_SUCCESS == code) {
    code = checkAggColCoexist(pCxt, pSelect);
  }
939 940 941
  return code;
}

X
Xiaoyu Wang 已提交
942 943 944 945 946 947 948 949
static int32_t buildCreateDbRetentions(const SNodeList* pRetentions, SCreateDbReq* pReq) {
  if (NULL != pRetentions) {
    pReq->pRetensions = taosArrayInit(LIST_LENGTH(pRetentions) / 2, sizeof(SRetention));
    if (NULL == pReq->pRetensions) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
    SValueNode* pFreq = NULL;
    SValueNode* pKeep = NULL;
dengyihao's avatar
dengyihao 已提交
950 951
    SNode*      pNode = NULL;
    int32_t     index = 0;
X
Xiaoyu Wang 已提交
952
    FOREACH(pNode, pRetentions) {
953
      if (0 == ((index++) & 1)) {
X
Xiaoyu Wang 已提交
954 955 956 957
        pFreq = (SValueNode*)pNode;
      } else {
        pKeep = (SValueNode*)pNode;
        SRetention retention = {
dengyihao's avatar
dengyihao 已提交
958
            .freq = pFreq->datum.i, .freqUnit = pFreq->unit, .keep = pKeep->datum.i, .keepUnit = pKeep->unit};
X
Xiaoyu Wang 已提交
959 960 961
        taosArrayPush(pReq->pRetensions, &retention);
      }
    }
962
    pReq->numOfRetensions = taosArrayGetSize(pReq->pRetensions);
X
Xiaoyu Wang 已提交
963 964 965 966 967
  }
  return TSDB_CODE_SUCCESS;
}

static int32_t buildCreateDbReq(STranslateContext* pCxt, SCreateDatabaseStmt* pStmt, SCreateDbReq* pReq) {
968 969 970
  SName name = {0};
  tNameSetDbName(&name, pCxt->pParseCxt->acctId, pStmt->dbName, strlen(pStmt->dbName));
  tNameGetFullDbName(&name, pReq->db);
X
Xiaoyu Wang 已提交
971 972 973 974
  pReq->numOfVgroups = pStmt->pOptions->numOfVgroups;
  pReq->cacheBlockSize = pStmt->pOptions->cacheBlockSize;
  pReq->totalBlocks = pStmt->pOptions->numOfBlocks;
  pReq->daysPerFile = pStmt->pOptions->daysPerFile;
X
Xiaoyu Wang 已提交
975 976 977
  pReq->daysToKeep0 = pStmt->pOptions->keep0;
  pReq->daysToKeep1 = pStmt->pOptions->keep1;
  pReq->daysToKeep2 = pStmt->pOptions->keep2;
X
Xiaoyu Wang 已提交
978 979
  pReq->minRows = pStmt->pOptions->minRowsPerBlock;
  pReq->maxRows = pStmt->pOptions->maxRowsPerBlock;
980
  pReq->commitTime = -1;
X
Xiaoyu Wang 已提交
981 982 983 984 985 986
  pReq->fsyncPeriod = pStmt->pOptions->fsyncPeriod;
  pReq->walLevel = pStmt->pOptions->walLevel;
  pReq->precision = pStmt->pOptions->precision;
  pReq->compression = pStmt->pOptions->compressionLevel;
  pReq->replications = pStmt->pOptions->replica;
  pReq->quorum = pStmt->pOptions->quorum;
987
  pReq->update = -1;
X
Xiaoyu Wang 已提交
988
  pReq->cacheLastRow = pStmt->pOptions->cachelast;
989
  pReq->ignoreExist = pStmt->ignoreExists;
X
Xiaoyu Wang 已提交
990
  pReq->streamMode = pStmt->pOptions->streamMode;
X
Xiaoyu Wang 已提交
991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
  return buildCreateDbRetentions(pStmt->pOptions->pRetentions, pReq);
}

static int32_t checkCreateDatabase(STranslateContext* pCxt, SCreateDatabaseStmt* pStmt) {
  if (NULL != pStmt->pOptions->pRetentions) {
    SNode* pNode = NULL;
    FOREACH(pNode, pStmt->pOptions->pRetentions) {
      if (DEAL_RES_ERROR == translateValue(pCxt, (SValueNode*)pNode)) {
        return pCxt->errCode;
      }
    }
  }
  return TSDB_CODE_SUCCESS;
1004 1005 1006 1007 1008
}

static int32_t translateCreateDatabase(STranslateContext* pCxt, SCreateDatabaseStmt* pStmt) {
  SCreateDbReq createReq = {0};

X
Xiaoyu Wang 已提交
1009 1010 1011
  int32_t code = checkCreateDatabase(pCxt, pStmt);
  if (TSDB_CODE_SUCCESS == code) {
    code = buildCreateDbReq(pCxt, pStmt, &createReq);
1012
  }
X
Xiaoyu Wang 已提交
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026

  if (TSDB_CODE_SUCCESS == code) {
    pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
    if (NULL == pCxt->pCmdMsg) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
    pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
    pCxt->pCmdMsg->msgType = TDMT_MND_CREATE_DB;
    pCxt->pCmdMsg->msgLen = tSerializeSCreateDbReq(NULL, 0, &createReq);
    pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
    if (NULL == pCxt->pCmdMsg->pMsg) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
    tSerializeSCreateDbReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &createReq);
1027 1028
  }

X
Xiaoyu Wang 已提交
1029
  return code;
1030 1031
}

1032 1033
static int32_t translateDropDatabase(STranslateContext* pCxt, SDropDatabaseStmt* pStmt) {
  SDropDbReq dropReq = {0};
dengyihao's avatar
dengyihao 已提交
1034
  SName      name = {0};
1035 1036 1037 1038
  tNameSetDbName(&name, pCxt->pParseCxt->acctId, pStmt->dbName, strlen(pStmt->dbName));
  tNameGetFullDbName(&name, dropReq.db);
  dropReq.ignoreNotExists = pStmt->ignoreNotExists;

wafwerar's avatar
wafwerar 已提交
1039
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1040
  if (NULL == pCxt->pCmdMsg) {
1041 1042 1043 1044 1045
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_DROP_DB;
  pCxt->pCmdMsg->msgLen = tSerializeSDropDbReq(NULL, 0, &dropReq);
wafwerar's avatar
wafwerar 已提交
1046
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1047
  if (NULL == pCxt->pCmdMsg->pMsg) {
1048 1049 1050 1051 1052 1053 1054
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSDropDbReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &dropReq);

  return TSDB_CODE_SUCCESS;
}

1055 1056 1057 1058 1059
static void buildAlterDbReq(STranslateContext* pCxt, SAlterDatabaseStmt* pStmt, SAlterDbReq* pReq) {
  SName name = {0};
  tNameSetDbName(&name, pCxt->pParseCxt->acctId, pStmt->dbName, strlen(pStmt->dbName));
  tNameGetFullDbName(&name, pReq->db);
  pReq->totalBlocks = pStmt->pOptions->numOfBlocks;
X
Xiaoyu Wang 已提交
1060 1061 1062
  pReq->daysToKeep0 = pStmt->pOptions->keep0;
  pReq->daysToKeep1 = pStmt->pOptions->keep1;
  pReq->daysToKeep2 = pStmt->pOptions->keep2;
1063 1064 1065 1066
  pReq->fsyncPeriod = pStmt->pOptions->fsyncPeriod;
  pReq->walLevel = pStmt->pOptions->walLevel;
  pReq->quorum = pStmt->pOptions->quorum;
  pReq->cacheLastRow = pStmt->pOptions->cachelast;
X
Xiaoyu Wang 已提交
1067
  pReq->replications = pStmt->pOptions->replica;
1068 1069 1070 1071 1072 1073 1074
  return;
}

static int32_t translateAlterDatabase(STranslateContext* pCxt, SAlterDatabaseStmt* pStmt) {
  SAlterDbReq alterReq = {0};
  buildAlterDbReq(pCxt, pStmt, &alterReq);

wafwerar's avatar
wafwerar 已提交
1075
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1076 1077 1078 1079 1080 1081
  if (NULL == pCxt->pCmdMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_ALTER_DB;
  pCxt->pCmdMsg->msgLen = tSerializeSAlterDbReq(NULL, 0, &alterReq);
wafwerar's avatar
wafwerar 已提交
1082
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1083 1084 1085 1086 1087 1088 1089 1090
  if (NULL == pCxt->pCmdMsg->pMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSAlterDbReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &alterReq);

  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
static int32_t calcTypeBytes(SDataType dt) {
  if (TSDB_DATA_TYPE_BINARY == dt.type) {
    return dt.bytes + VARSTR_HEADER_SIZE;
  } else if (TSDB_DATA_TYPE_NCHAR == dt.type) {
    return dt.bytes * TSDB_NCHAR_SIZE + VARSTR_HEADER_SIZE;
  } else {
    return dt.bytes;
  }
}

X
Xiaoyu Wang 已提交
1101
static int32_t columnDefNodeToField(SNodeList* pList, SArray** pArray) {
1102 1103 1104 1105
  *pArray = taosArrayInit(LIST_LENGTH(pList), sizeof(SField));
  SNode* pNode;
  FOREACH(pNode, pList) {
    SColumnDefNode* pCol = (SColumnDefNode*)pNode;
dengyihao's avatar
dengyihao 已提交
1106
    SField          field = {.type = pCol->dataType.type, .bytes = calcTypeBytes(pCol->dataType)};
1107 1108 1109 1110 1111 1112
    strcpy(field.name, pCol->colName);
    taosArrayPush(*pArray, &field);
  }
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
1113 1114 1115 1116 1117
static int32_t columnNodeToField(SNodeList* pList, SArray** pArray) {
  *pArray = taosArrayInit(LIST_LENGTH(pList), sizeof(SField));
  SNode* pNode;
  FOREACH(pNode, pList) {
    SColumnNode* pCol = (SColumnNode*)pNode;
dengyihao's avatar
dengyihao 已提交
1118
    SField       field = {.type = pCol->node.resType.type, .bytes = calcTypeBytes(pCol->node.resType)};
X
Xiaoyu Wang 已提交
1119 1120 1121 1122 1123 1124
    strcpy(field.name, pCol->colName);
    taosArrayPush(*pArray, &field);
  }
  return TSDB_CODE_SUCCESS;
}

1125
static SColumnDefNode* findColDef(SNodeList* pCols, const SColumnNode* pCol) {
X
Xiaoyu Wang 已提交
1126 1127 1128 1129 1130 1131 1132 1133 1134
  SNode* pColDef = NULL;
  FOREACH(pColDef, pCols) {
    if (0 == strcmp(pCol->colName, ((SColumnDefNode*)pColDef)->colName)) {
      return (SColumnDefNode*)pColDef;
    }
  }
  return NULL;
}

1135
static int32_t checkCreateTable(STranslateContext* pCxt, SCreateTableStmt* pStmt) {
X
Xiaoyu Wang 已提交
1136 1137
  if (NULL != pStmt->pOptions->pSma) {
    SNode* pNode = NULL;
dengyihao's avatar
dengyihao 已提交
1138
    FOREACH(pNode, pStmt->pCols) { ((SColumnDefNode*)pNode)->sma = false; }
X
Xiaoyu Wang 已提交
1139
    FOREACH(pNode, pStmt->pOptions->pSma) {
dengyihao's avatar
dengyihao 已提交
1140
      SColumnNode*    pSmaCol = (SColumnNode*)pNode;
1141
      SColumnDefNode* pColDef = findColDef(pStmt->pCols, pSmaCol);
X
Xiaoyu Wang 已提交
1142 1143 1144 1145
      if (NULL == pColDef) {
        return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_INVALID_COLUMN, pSmaCol->colName);
      }
      pSmaCol->node.resType = pColDef->dataType;
1146
      pColDef->sma = true;
X
Xiaoyu Wang 已提交
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
    }
  }
  if (NULL != pStmt->pOptions->pFuncs) {
    SFunctionNode* pFunc = nodesListGetNode(pStmt->pOptions->pFuncs, 0);
    if (TSDB_CODE_SUCCESS != fmGetFuncInfo(pFunc->functionName, &pFunc->funcId, &pFunc->funcType)) {
      return generateDealNodeErrMsg(pCxt, TSDB_CODE_PAR_INVALID_FUNTION, pFunc->functionName);
    }
  }
  return TSDB_CODE_SUCCESS;
}

static int32_t getAggregationMethod(SNodeList* pFuncs) {
  if (NULL == pFuncs) {
    return -1;
  }
  return ((SFunctionNode*)nodesListGetNode(pFuncs, 0))->funcId;
}

1165
static int32_t translateCreateSuperTable(STranslateContext* pCxt, SCreateTableStmt* pStmt) {
1166
  int32_t code = checkCreateTable(pCxt, pStmt);
X
Xiaoyu Wang 已提交
1167 1168 1169 1170
  if (TSDB_CODE_SUCCESS != code) {
    return code;
  }

1171 1172
  SMCreateStbReq createReq = {0};
  createReq.igExists = pStmt->ignoreExists;
X
Xiaoyu Wang 已提交
1173 1174 1175 1176 1177
  createReq.aggregationMethod = getAggregationMethod(pStmt->pOptions->pFuncs);
  createReq.xFilesFactor = pStmt->pOptions->filesFactor;
  createReq.delay = pStmt->pOptions->delay;
  columnDefNodeToField(pStmt->pCols, &createReq.pColumns);
  columnDefNodeToField(pStmt->pTags, &createReq.pTags);
1178 1179
  createReq.numOfColumns = LIST_LENGTH(pStmt->pCols);
  createReq.numOfTags = LIST_LENGTH(pStmt->pTags);
1180 1181 1182 1183 1184 1185 1186
  if (NULL == pStmt->pOptions->pSma) {
    columnDefNodeToField(pStmt->pCols, &createReq.pSmas);
    createReq.numOfSmas = createReq.numOfColumns;
  } else {
    columnNodeToField(pStmt->pOptions->pSma, &createReq.pSmas);
    createReq.numOfSmas = LIST_LENGTH(pStmt->pOptions->pSma);
  }
1187

dengyihao's avatar
dengyihao 已提交
1188
  SName tableName = {.type = TSDB_TABLE_NAME_T, .acctId = pCxt->pParseCxt->acctId};
1189 1190 1191 1192
  strcpy(tableName.dbname, pStmt->dbName);
  strcpy(tableName.tname, pStmt->tableName);
  tNameExtractFullName(&tableName, createReq.name);

wafwerar's avatar
wafwerar 已提交
1193
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1194
  if (NULL == pCxt->pCmdMsg) {
X
Xiaoyu Wang 已提交
1195
    tFreeSMCreateStbReq(&createReq);
1196 1197 1198 1199 1200
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_CREATE_STB;
  pCxt->pCmdMsg->msgLen = tSerializeSMCreateStbReq(NULL, 0, &createReq);
wafwerar's avatar
wafwerar 已提交
1201
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1202
  if (NULL == pCxt->pCmdMsg->pMsg) {
X
Xiaoyu Wang 已提交
1203
    tFreeSMCreateStbReq(&createReq);
1204 1205 1206 1207
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSMCreateStbReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &createReq);

X
Xiaoyu Wang 已提交
1208
  tFreeSMCreateStbReq(&createReq);
1209 1210 1211
  return TSDB_CODE_SUCCESS;
}

1212 1213 1214 1215 1216
static int32_t doTranslateDropSuperTable(STranslateContext* pCxt, const SName* pTableName, bool ignoreNotExists) {
  SMDropStbReq dropReq = {0};
  tNameExtractFullName(pTableName, dropReq.name);
  dropReq.igNotExists = ignoreNotExists;

wafwerar's avatar
wafwerar 已提交
1217
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1218
  if (NULL == pCxt->pCmdMsg) {
1219 1220 1221 1222 1223
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_DROP_STB;
  pCxt->pCmdMsg->msgLen = tSerializeSMDropStbReq(NULL, 0, &dropReq);
wafwerar's avatar
wafwerar 已提交
1224
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1225
  if (NULL == pCxt->pCmdMsg->pMsg) {
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSMDropStbReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &dropReq);

  return TSDB_CODE_SUCCESS;
}

static int32_t translateDropTable(STranslateContext* pCxt, SDropTableStmt* pStmt) {
  SDropTableClause* pClause = nodesListGetNode(pStmt->pTables, 0);

  STableMeta* pTableMeta = NULL;
dengyihao's avatar
dengyihao 已提交
1237 1238
  SName       tableName;
  int32_t     code = getTableMetaImpl(
X
Xiaoyu Wang 已提交
1239
      pCxt, toName(pCxt->pParseCxt->acctId, pClause->dbName, pClause->tableName, &tableName), &pTableMeta);
X
Xiaoyu Wang 已提交
1240 1241 1242
  if ((TSDB_CODE_TDB_INVALID_TABLE_ID == code || TSDB_CODE_VND_TB_NOT_EXIST == code) && pClause->ignoreNotExists) {
    return TSDB_CODE_SUCCESS;
  }
1243 1244 1245 1246
  if (TSDB_CODE_SUCCESS == code) {
    if (TSDB_SUPER_TABLE == pTableMeta->tableType) {
      code = doTranslateDropSuperTable(pCxt, &tableName, pClause->ignoreNotExists);
    } else {
X
Xiaoyu Wang 已提交
1247
      // todo : drop normal table or child table
1248 1249
      code = TSDB_CODE_FAILED;
    }
wafwerar's avatar
wafwerar 已提交
1250
    taosMemoryFreeClear(pTableMeta);
1251 1252 1253 1254 1255 1256
  }

  return code;
}

static int32_t translateDropSuperTable(STranslateContext* pCxt, SDropSuperTableStmt* pStmt) {
dengyihao's avatar
dengyihao 已提交
1257
  SName tableName = {.type = TSDB_TABLE_NAME_T, .acctId = pCxt->pParseCxt->acctId};
1258 1259 1260 1261 1262
  strcpy(tableName.dbname, pStmt->dbName);
  strcpy(tableName.tname, pStmt->tableName);
  return doTranslateDropSuperTable(pCxt, &tableName, pStmt->ignoreNotExists);
}

1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
static int32_t setAlterTableField(SAlterTableStmt* pStmt, SMAltertbReq* pAlterReq) {
  pAlterReq->pFields = taosArrayInit(2, sizeof(TAOS_FIELD));
  if (NULL == pAlterReq->pFields) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  switch (pStmt->alterType) {
    case TSDB_ALTER_TABLE_ADD_TAG:
    case TSDB_ALTER_TABLE_DROP_TAG:
    case TSDB_ALTER_TABLE_ADD_COLUMN:
    case TSDB_ALTER_TABLE_DROP_COLUMN:
    case TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES:
    case TSDB_ALTER_TABLE_UPDATE_TAG_BYTES: {
dengyihao's avatar
dengyihao 已提交
1276
      TAOS_FIELD field = {.type = pStmt->dataType.type, .bytes = pStmt->dataType.bytes};
1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
      strcpy(field.name, pStmt->colName);
      taosArrayPush(pAlterReq->pFields, &field);
      break;
    }
    case TSDB_ALTER_TABLE_UPDATE_TAG_NAME:
    case TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME: {
      TAOS_FIELD oldField = {0};
      strcpy(oldField.name, pStmt->colName);
      taosArrayPush(pAlterReq->pFields, &oldField);
      TAOS_FIELD newField = {0};
      strcpy(oldField.name, pStmt->newColName);
      taosArrayPush(pAlterReq->pFields, &newField);
      break;
    }
    default:
      break;
  }

  return TSDB_CODE_SUCCESS;
}

1298 1299
static int32_t translateAlterTable(STranslateContext* pCxt, SAlterTableStmt* pStmt) {
  SMAltertbReq alterReq = {0};
dengyihao's avatar
dengyihao 已提交
1300
  SName        tableName = {.type = TSDB_TABLE_NAME_T, .acctId = pCxt->pParseCxt->acctId};
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312
  strcpy(tableName.dbname, pStmt->dbName);
  strcpy(tableName.tname, pStmt->tableName);
  tNameExtractFullName(&tableName, alterReq.name);
  alterReq.alterType = pStmt->alterType;
  alterReq.numOfFields = 1;
  if (TSDB_ALTER_TABLE_UPDATE_OPTIONS == pStmt->alterType) {
    // todo
  } else {
    if (TSDB_CODE_SUCCESS != setAlterTableField(pStmt, &alterReq)) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }
1313

wafwerar's avatar
wafwerar 已提交
1314
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1315 1316 1317 1318 1319 1320
  if (NULL == pCxt->pCmdMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_ALTER_STB;
  pCxt->pCmdMsg->msgLen = tSerializeSMAlterStbReq(NULL, 0, &alterReq);
wafwerar's avatar
wafwerar 已提交
1321
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1322 1323 1324 1325 1326 1327 1328 1329
  if (NULL == pCxt->pCmdMsg->pMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSMAlterStbReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &alterReq);

  return TSDB_CODE_SUCCESS;
}

1330
static int32_t translateUseDatabase(STranslateContext* pCxt, SUseDatabaseStmt* pStmt) {
X
Xiaoyu Wang 已提交
1331
  SUseDbReq usedbReq = {0};
dengyihao's avatar
dengyihao 已提交
1332
  SName     name = {0};
1333 1334
  tNameSetDbName(&name, pCxt->pParseCxt->acctId, pStmt->dbName, strlen(pStmt->dbName));
  tNameExtractFullName(&name, usedbReq.db);
X
Xiaoyu Wang 已提交
1335
  int32_t code = getDBVgVersion(pCxt, usedbReq.db, &usedbReq.vgVersion, &usedbReq.dbId, &usedbReq.numOfTable);
X
Xiaoyu Wang 已提交
1336 1337 1338
  if (TSDB_CODE_SUCCESS != code) {
    return code;
  }
D
dapan1121 已提交
1339

wafwerar's avatar
wafwerar 已提交
1340
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1341
  if (NULL == pCxt->pCmdMsg) {
1342 1343 1344 1345 1346
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_USE_DB;
  pCxt->pCmdMsg->msgLen = tSerializeSUseDbReq(NULL, 0, &usedbReq);
wafwerar's avatar
wafwerar 已提交
1347
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1348
  if (NULL == pCxt->pCmdMsg->pMsg) {
1349 1350 1351 1352 1353 1354 1355
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSUseDbReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &usedbReq);

  return TSDB_CODE_SUCCESS;
}

1356 1357 1358 1359 1360 1361 1362
static int32_t translateCreateUser(STranslateContext* pCxt, SCreateUserStmt* pStmt) {
  SCreateUserReq createReq = {0};
  strcpy(createReq.user, pStmt->useName);
  createReq.createType = 0;
  createReq.superUser = 0;
  strcpy(createReq.pass, pStmt->password);

wafwerar's avatar
wafwerar 已提交
1363
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1364
  if (NULL == pCxt->pCmdMsg) {
1365 1366 1367 1368 1369
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_CREATE_USER;
  pCxt->pCmdMsg->msgLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
wafwerar's avatar
wafwerar 已提交
1370
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1371
  if (NULL == pCxt->pCmdMsg->pMsg) {
1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSCreateUserReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &createReq);

  return TSDB_CODE_SUCCESS;
}

static int32_t translateAlterUser(STranslateContext* pCxt, SAlterUserStmt* pStmt) {
  SAlterUserReq alterReq = {0};
  strcpy(alterReq.user, pStmt->useName);
  alterReq.alterType = pStmt->alterType;
  alterReq.superUser = 0;
  strcpy(alterReq.pass, pStmt->password);
  if (NULL != pCxt->pParseCxt->db) {
    strcpy(alterReq.dbname, pCxt->pParseCxt->db);
  }

wafwerar's avatar
wafwerar 已提交
1389
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1390
  if (NULL == pCxt->pCmdMsg) {
1391 1392 1393 1394 1395
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_ALTER_USER;
  pCxt->pCmdMsg->msgLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
wafwerar's avatar
wafwerar 已提交
1396
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1397
  if (NULL == pCxt->pCmdMsg->pMsg) {
1398 1399 1400 1401
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSAlterUserReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &alterReq);

dengyihao's avatar
dengyihao 已提交
1402
  return TSDB_CODE_SUCCESS;
1403 1404 1405 1406 1407 1408
}

static int32_t translateDropUser(STranslateContext* pCxt, SDropUserStmt* pStmt) {
  SDropUserReq dropReq = {0};
  strcpy(dropReq.user, pStmt->useName);

wafwerar's avatar
wafwerar 已提交
1409
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1410
  if (NULL == pCxt->pCmdMsg) {
1411 1412 1413 1414 1415
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_DROP_USER;
  pCxt->pCmdMsg->msgLen = tSerializeSDropUserReq(NULL, 0, &dropReq);
wafwerar's avatar
wafwerar 已提交
1416
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1417
  if (NULL == pCxt->pCmdMsg->pMsg) {
1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSDropUserReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &dropReq);

  return TSDB_CODE_SUCCESS;
}

static int32_t translateCreateDnode(STranslateContext* pCxt, SCreateDnodeStmt* pStmt) {
  SCreateDnodeReq createReq = {0};
  strcpy(createReq.fqdn, pStmt->fqdn);
  createReq.port = pStmt->port;

wafwerar's avatar
wafwerar 已提交
1430
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1431
  if (NULL == pCxt->pCmdMsg) {
1432 1433 1434 1435 1436
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_CREATE_DNODE;
  pCxt->pCmdMsg->msgLen = tSerializeSCreateDnodeReq(NULL, 0, &createReq);
wafwerar's avatar
wafwerar 已提交
1437
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1438
  if (NULL == pCxt->pCmdMsg->pMsg) {
1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSCreateDnodeReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &createReq);

  return TSDB_CODE_SUCCESS;
}

static int32_t translateDropDnode(STranslateContext* pCxt, SDropDnodeStmt* pStmt) {
  SDropDnodeReq dropReq = {0};
  dropReq.dnodeId = pStmt->dnodeId;
  strcpy(dropReq.fqdn, pStmt->fqdn);
  dropReq.port = pStmt->port;

wafwerar's avatar
wafwerar 已提交
1452
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1453
  if (NULL == pCxt->pCmdMsg) {
1454 1455 1456 1457 1458
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_DROP_DNODE;
  pCxt->pCmdMsg->msgLen = tSerializeSDropDnodeReq(NULL, 0, &dropReq);
wafwerar's avatar
wafwerar 已提交
1459
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1460
  if (NULL == pCxt->pCmdMsg->pMsg) {
1461 1462 1463 1464 1465 1466 1467
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSDropDnodeReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &dropReq);

  return TSDB_CODE_SUCCESS;
}

1468 1469 1470 1471 1472 1473
static int32_t translateAlterDnode(STranslateContext* pCxt, SAlterDnodeStmt* pStmt) {
  SMCfgDnodeReq cfgReq = {0};
  cfgReq.dnodeId = pStmt->dnodeId;
  strcpy(cfgReq.config, pStmt->config);
  strcpy(cfgReq.value, pStmt->value);

wafwerar's avatar
wafwerar 已提交
1474
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1475 1476 1477 1478 1479 1480
  if (NULL == pCxt->pCmdMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_CONFIG_DNODE;
  pCxt->pCmdMsg->msgLen = tSerializeSMCfgDnodeReq(NULL, 0, &cfgReq);
wafwerar's avatar
wafwerar 已提交
1481
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1482 1483 1484 1485 1486 1487 1488 1489
  if (NULL == pCxt->pCmdMsg->pMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSMCfgDnodeReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &cfgReq);

  return TSDB_CODE_SUCCESS;
}

1490 1491
static int32_t nodeTypeToShowType(ENodeType nt) {
  switch (nt) {
1492
    case QUERY_NODE_SHOW_APPS_STMT:
dengyihao's avatar
dengyihao 已提交
1493
      return 0;  // todo
1494 1495 1496
    case QUERY_NODE_SHOW_CONNECTIONS_STMT:
      return TSDB_MGMT_TABLE_CONNS;
    case QUERY_NODE_SHOW_LICENCE_STMT:
1497
      return TSDB_MGMT_TABLE_GRANTS;
1498 1499 1500
    case QUERY_NODE_SHOW_QUERIES_STMT:
      return TSDB_MGMT_TABLE_QUERIES;
    case QUERY_NODE_SHOW_SCORES_STMT:
dengyihao's avatar
dengyihao 已提交
1501
      return 0;  // todo
1502
    case QUERY_NODE_SHOW_TOPICS_STMT:
dengyihao's avatar
dengyihao 已提交
1503
      return 0;  // todo
1504 1505
    case QUERY_NODE_SHOW_VARIABLE_STMT:
      return TSDB_MGMT_TABLE_VARIABLES;
1506 1507 1508 1509 1510 1511
    default:
      break;
  }
  return 0;
}

1512
static int32_t translateShow(STranslateContext* pCxt, SShowStmt* pStmt) {
dengyihao's avatar
dengyihao 已提交
1513
  SShowReq showReq = {.type = nodeTypeToShowType(nodeType(pStmt))};
1514

wafwerar's avatar
wafwerar 已提交
1515
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1516
  if (NULL == pCxt->pCmdMsg) {
1517 1518 1519 1520 1521
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_SHOW;
  pCxt->pCmdMsg->msgLen = tSerializeSShowReq(NULL, 0, &showReq);
wafwerar's avatar
wafwerar 已提交
1522
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1523
  if (NULL == pCxt->pCmdMsg->pMsg) {
1524 1525 1526 1527 1528 1529 1530
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSShowReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &showReq);

  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
1531 1532
static int32_t getSmaIndexDstVgId(STranslateContext* pCxt, char* pTableName, int32_t* pVgId) {
  SVgroupInfo vg = {0};
dengyihao's avatar
dengyihao 已提交
1533
  int32_t     code = getTableHashVgroup(pCxt, pCxt->pParseCxt->db, pTableName, &vg);
X
Xiaoyu Wang 已提交
1534 1535 1536 1537 1538
  if (TSDB_CODE_SUCCESS == code) {
    *pVgId = vg.vgId;
  }
  return code;
}
X
Xiaoyu Wang 已提交
1539

X
Xiaoyu Wang 已提交
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
static int32_t getSmaIndexSql(STranslateContext* pCxt, char** pSql, int32_t* pLen) {
  *pSql = strdup(pCxt->pParseCxt->pSql);
  if (NULL == *pSql) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  *pLen = pCxt->pParseCxt->sqlLen + 1;
  return TSDB_CODE_SUCCESS;
}

static int32_t getSmaIndexExpr(STranslateContext* pCxt, SCreateIndexStmt* pStmt, char** pExpr, int32_t* pLen) {
  return nodesListToString(pStmt->pOptions->pFuncs, false, pExpr, pLen);
}

static int32_t getSmaIndexBuildAst(STranslateContext* pCxt, SCreateIndexStmt* pStmt, char** pAst, int32_t* pLen) {
  SSelectStmt* pSelect = nodesMakeNode(QUERY_NODE_SELECT_STMT);
  if (NULL == pSelect) {
    return TSDB_CODE_OUT_OF_MEMORY;
X
Xiaoyu Wang 已提交
1557
  }
X
bugfix  
Xiaoyu Wang 已提交
1558
  sprintf(pSelect->stmtName, "%p", pSelect);
X
Xiaoyu Wang 已提交
1559

X
Xiaoyu Wang 已提交
1560 1561 1562 1563 1564 1565 1566 1567
  SRealTableNode* pTable = nodesMakeNode(QUERY_NODE_REAL_TABLE);
  if (NULL == pTable) {
    nodesDestroyNode(pSelect);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  strcpy(pTable->table.dbName, pCxt->pParseCxt->db);
  strcpy(pTable->table.tableName, pStmt->tableName);
  pSelect->pFromTable = (SNode*)pTable;
X
Xiaoyu Wang 已提交
1568

X
Xiaoyu Wang 已提交
1569 1570 1571 1572 1573
  pSelect->pProjectionList = nodesCloneList(pStmt->pOptions->pFuncs);
  if (NULL == pTable) {
    nodesDestroyNode(pSelect);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
X
bugfix  
Xiaoyu Wang 已提交
1574
  SNode* pProject = NULL;
dengyihao's avatar
dengyihao 已提交
1575
  FOREACH(pProject, pSelect->pProjectionList) { sprintf(((SExprNode*)pProject)->aliasName, "#sma_%p", pProject); }
X
Xiaoyu Wang 已提交
1576 1577 1578 1579 1580 1581 1582

  SIntervalWindowNode* pInterval = nodesMakeNode(QUERY_NODE_INTERVAL_WINDOW);
  if (NULL == pInterval) {
    nodesDestroyNode(pSelect);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pSelect->pWindow = (SNode*)pInterval;
X
bugfix  
Xiaoyu Wang 已提交
1583
  pInterval->pCol = nodesMakeNode(QUERY_NODE_COLUMN);
X
Xiaoyu Wang 已提交
1584 1585 1586
  pInterval->pInterval = nodesCloneNode(pStmt->pOptions->pInterval);
  pInterval->pOffset = nodesCloneNode(pStmt->pOptions->pOffset);
  pInterval->pSliding = nodesCloneNode(pStmt->pOptions->pSliding);
dengyihao's avatar
dengyihao 已提交
1587
  if (NULL == pInterval->pCol || NULL == pInterval->pInterval ||
X
bugfix  
Xiaoyu Wang 已提交
1588
      (NULL != pStmt->pOptions->pOffset && NULL == pInterval->pOffset) ||
X
Xiaoyu Wang 已提交
1589 1590 1591 1592
      (NULL != pStmt->pOptions->pSliding && NULL == pInterval->pSliding)) {
    nodesDestroyNode(pSelect);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
X
bugfix  
Xiaoyu Wang 已提交
1593 1594
  ((SColumnNode*)pInterval->pCol)->colId = PRIMARYKEY_TIMESTAMP_COL_ID;
  strcpy(((SColumnNode*)pInterval->pCol)->colName, PK_TS_COL_INTERNAL_NAME);
X
Xiaoyu Wang 已提交
1595 1596 1597 1598 1599 1600 1601 1602 1603 1604

  int32_t code = translateQuery(pCxt, (SNode*)pSelect);
  if (TSDB_CODE_SUCCESS == code) {
    code = nodesNodeToString(pSelect, false, pAst, pLen);
  }
  nodesDestroyNode(pSelect);
  return code;
}

static int32_t buildCreateSmaReq(STranslateContext* pCxt, SCreateIndexStmt* pStmt, SMCreateSmaReq* pReq) {
dengyihao's avatar
dengyihao 已提交
1605
  SName name = {.type = TSDB_TABLE_NAME_T, .acctId = pCxt->pParseCxt->acctId};
X
Xiaoyu Wang 已提交
1606
  strcpy(name.dbname, pCxt->pParseCxt->db);
X
Xiaoyu Wang 已提交
1607 1608
  strcpy(name.tname, pStmt->indexName);
  tNameExtractFullName(&name, pReq->name);
X
Xiaoyu Wang 已提交
1609
  strcpy(name.tname, pStmt->tableName);
X
Xiaoyu Wang 已提交
1610 1611 1612 1613 1614 1615
  name.tname[strlen(pStmt->tableName)] = '\0';
  tNameExtractFullName(&name, pReq->stb);
  pReq->igExists = pStmt->ignoreExists;
  pReq->interval = ((SValueNode*)pStmt->pOptions->pInterval)->datum.i;
  pReq->intervalUnit = ((SValueNode*)pStmt->pOptions->pInterval)->unit;
  pReq->offset = (NULL != pStmt->pOptions->pOffset ? ((SValueNode*)pStmt->pOptions->pOffset)->datum.i : 0);
dengyihao's avatar
dengyihao 已提交
1616 1617 1618 1619
  pReq->sliding =
      (NULL != pStmt->pOptions->pSliding ? ((SValueNode*)pStmt->pOptions->pSliding)->datum.i : pReq->interval);
  pReq->slidingUnit =
      (NULL != pStmt->pOptions->pSliding ? ((SValueNode*)pStmt->pOptions->pSliding)->unit : pReq->intervalUnit);
X
Xiaoyu Wang 已提交
1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636

  int32_t code = getSmaIndexDstVgId(pCxt, pStmt->tableName, &pReq->dstVgId);
  if (TSDB_CODE_SUCCESS == code) {
    code = getSmaIndexSql(pCxt, &pReq->sql, &pReq->sqlLen);
  }
  if (TSDB_CODE_SUCCESS == code) {
    code = getSmaIndexExpr(pCxt, pStmt, &pReq->expr, &pReq->exprLen);
  }
  if (TSDB_CODE_SUCCESS == code) {
    code = getSmaIndexBuildAst(pCxt, pStmt, &pReq->ast, &pReq->astLen);
  }

  return code;
}

static int32_t translateCreateSmaIndex(STranslateContext* pCxt, SCreateIndexStmt* pStmt) {
  if (DEAL_RES_ERROR == translateValue(pCxt, (SValueNode*)pStmt->pOptions->pInterval) ||
dengyihao's avatar
dengyihao 已提交
1637 1638 1639 1640
      (NULL != pStmt->pOptions->pOffset &&
       DEAL_RES_ERROR == translateValue(pCxt, (SValueNode*)pStmt->pOptions->pOffset)) ||
      (NULL != pStmt->pOptions->pSliding &&
       DEAL_RES_ERROR == translateValue(pCxt, (SValueNode*)pStmt->pOptions->pSliding))) {
X
Xiaoyu Wang 已提交
1641
    return pCxt->errCode;
X
Xiaoyu Wang 已提交
1642 1643
  }

X
Xiaoyu Wang 已提交
1644
  SMCreateSmaReq createSmaReq = {0};
dengyihao's avatar
dengyihao 已提交
1645
  int32_t        code = buildCreateSmaReq(pCxt, pStmt, &createSmaReq);
X
Xiaoyu Wang 已提交
1646 1647 1648 1649
  if (TSDB_CODE_SUCCESS != code) {
    return code;
  }

wafwerar's avatar
wafwerar 已提交
1650
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1651
  if (NULL == pCxt->pCmdMsg) {
X
Xiaoyu Wang 已提交
1652 1653 1654
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
C
Cary Xu 已提交
1655
  pCxt->pCmdMsg->msgType = TDMT_MND_CREATE_SMA;
X
Xiaoyu Wang 已提交
1656
  pCxt->pCmdMsg->msgLen = tSerializeSMCreateSmaReq(NULL, 0, &createSmaReq);
wafwerar's avatar
wafwerar 已提交
1657
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1658
  if (NULL == pCxt->pCmdMsg->pMsg) {
X
Xiaoyu Wang 已提交
1659 1660
    return TSDB_CODE_OUT_OF_MEMORY;
  }
X
Xiaoyu Wang 已提交
1661 1662
  tSerializeSMCreateSmaReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &createSmaReq);
  tFreeSMCreateSmaReq(&createSmaReq);
X
Xiaoyu Wang 已提交
1663 1664 1665

  return TSDB_CODE_SUCCESS;
}
dengyihao's avatar
dengyihao 已提交
1666
static int32_t translateCreateFullTextIndex(STranslateContext* pCxt, SCreateIndexStmt* pStmt) {}
X
Xiaoyu Wang 已提交
1667 1668 1669 1670

static int32_t translateCreateIndex(STranslateContext* pCxt, SCreateIndexStmt* pStmt) {
  if (INDEX_TYPE_SMA == pStmt->indexType) {
    return translateCreateSmaIndex(pCxt, pStmt);
dengyihao's avatar
dengyihao 已提交
1671
  } else if (INDEX_TYPE_FULLTEXT == pStmt->indexType) {
X
Xiaoyu Wang 已提交
1672 1673 1674 1675 1676
    // todo fulltext index
    return TSDB_CODE_FAILED;
  }
}

1677 1678 1679 1680
static int32_t translateDropIndex(STranslateContext* pCxt, SDropIndexStmt* pStmt) {
  SVDropTSmaReq dropSmaReq = {0};
  strcpy(dropSmaReq.indexName, pStmt->indexName);

wafwerar's avatar
wafwerar 已提交
1681
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1682 1683 1684 1685 1686 1687
  if (NULL == pCxt->pCmdMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_VND_DROP_SMA;
  pCxt->pCmdMsg->msgLen = tSerializeSVDropTSmaReq(NULL, &dropSmaReq);
wafwerar's avatar
wafwerar 已提交
1688
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1689 1690 1691 1692 1693 1694 1695 1696 1697
  if (NULL == pCxt->pCmdMsg->pMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  void* pBuf = pCxt->pCmdMsg->pMsg;
  tSerializeSVDropTSmaReq(&pBuf, &dropSmaReq);

  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
1698
static int32_t translateCreateQnode(STranslateContext* pCxt, SCreateQnodeStmt* pStmt) {
dengyihao's avatar
dengyihao 已提交
1699
  SMCreateQnodeReq createReq = {.dnodeId = pStmt->dnodeId};
X
Xiaoyu Wang 已提交
1700

wafwerar's avatar
wafwerar 已提交
1701
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
X
Xiaoyu Wang 已提交
1702 1703 1704 1705 1706 1707
  if (NULL == pCxt->pCmdMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_DND_CREATE_QNODE;
  pCxt->pCmdMsg->msgLen = tSerializeSMCreateDropQSBNodeReq(NULL, 0, &createReq);
wafwerar's avatar
wafwerar 已提交
1708
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
X
Xiaoyu Wang 已提交
1709 1710 1711 1712 1713 1714 1715 1716
  if (NULL == pCxt->pCmdMsg->pMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSMCreateDropQSBNodeReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &createReq);

  return TSDB_CODE_SUCCESS;
}

1717
static int32_t translateDropQnode(STranslateContext* pCxt, SDropQnodeStmt* pStmt) {
dengyihao's avatar
dengyihao 已提交
1718
  SDDropQnodeReq dropReq = {.dnodeId = pStmt->dnodeId};
1719

wafwerar's avatar
wafwerar 已提交
1720
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1721 1722 1723 1724 1725 1726
  if (NULL == pCxt->pCmdMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_DND_DROP_QNODE;
  pCxt->pCmdMsg->msgLen = tSerializeSMCreateDropQSBNodeReq(NULL, 0, &dropReq);
wafwerar's avatar
wafwerar 已提交
1727
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739
  if (NULL == pCxt->pCmdMsg->pMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSMCreateDropQSBNodeReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &dropReq);

  return TSDB_CODE_SUCCESS;
}

static int32_t translateCreateTopic(STranslateContext* pCxt, SCreateTopicStmt* pStmt) {
  SCMCreateTopicReq createReq = {0};

  if (NULL != pStmt->pQuery) {
X
Xiaoyu Wang 已提交
1740
    pCxt->pParseCxt->topicQuery = true;
1741 1742 1743 1744
    int32_t code = translateQuery(pCxt, pStmt->pQuery);
    if (TSDB_CODE_SUCCESS == code) {
      code = nodesNodeToString(pStmt->pQuery, false, &createReq.ast, NULL);
    }
dengyihao's avatar
dengyihao 已提交
1745
    if (TSDB_CODE_SUCCESS != code) {
1746 1747 1748 1749 1750
      return code;
    }
  } else {
    strcpy(createReq.subscribeDbName, pStmt->subscribeDbName);
  }
dengyihao's avatar
dengyihao 已提交
1751

1752 1753 1754 1755 1756
  createReq.sql = strdup(pCxt->pParseCxt->pSql);
  if (NULL == createReq.sql) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

dengyihao's avatar
dengyihao 已提交
1757
  SName name = {.type = TSDB_TABLE_NAME_T, .acctId = pCxt->pParseCxt->acctId};
1758 1759 1760 1761 1762
  strcpy(name.dbname, pCxt->pParseCxt->db);
  strcpy(name.tname, pStmt->topicName);
  tNameExtractFullName(&name, createReq.name);
  createReq.igExists = pStmt->ignoreExists;

wafwerar's avatar
wafwerar 已提交
1763
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1764 1765 1766 1767 1768 1769
  if (NULL == pCxt->pCmdMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_CREATE_TOPIC;
  pCxt->pCmdMsg->msgLen = tSerializeSCMCreateTopicReq(NULL, 0, &createReq);
wafwerar's avatar
wafwerar 已提交
1770
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
  if (NULL == pCxt->pCmdMsg->pMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSCMCreateTopicReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &createReq);
  tFreeSCMCreateTopicReq(&createReq);

  return TSDB_CODE_SUCCESS;
}

static int32_t translateDropTopic(STranslateContext* pCxt, SDropTopicStmt* pStmt) {
  SMDropTopicReq dropReq = {0};

dengyihao's avatar
dengyihao 已提交
1783
  SName name = {.type = TSDB_TABLE_NAME_T, .acctId = pCxt->pParseCxt->acctId};
1784 1785 1786 1787 1788
  strcpy(name.dbname, pCxt->pParseCxt->db);
  strcpy(name.tname, pStmt->topicName);
  tNameExtractFullName(&name, dropReq.name);
  dropReq.igNotExists = pStmt->ignoreNotExists;

wafwerar's avatar
wafwerar 已提交
1789
  pCxt->pCmdMsg = taosMemoryMalloc(sizeof(SCmdMsgInfo));
1790 1791 1792 1793 1794 1795
  if (NULL == pCxt->pCmdMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCxt->pCmdMsg->epSet = pCxt->pParseCxt->mgmtEpSet;
  pCxt->pCmdMsg->msgType = TDMT_MND_DROP_TOPIC;
  pCxt->pCmdMsg->msgLen = tSerializeSMDropTopicReq(NULL, 0, &dropReq);
wafwerar's avatar
wafwerar 已提交
1796
  pCxt->pCmdMsg->pMsg = taosMemoryMalloc(pCxt->pCmdMsg->msgLen);
1797 1798 1799 1800 1801 1802 1803 1804
  if (NULL == pCxt->pCmdMsg->pMsg) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  tSerializeSMDropTopicReq(pCxt->pCmdMsg->pMsg, pCxt->pCmdMsg->msgLen, &dropReq);

  return TSDB_CODE_SUCCESS;
}

1805 1806 1807 1808 1809
static int32_t translateAlterLocal(STranslateContext* pCxt, SAlterLocalStmt* pStmt) {
  // todo
  return TSDB_CODE_SUCCESS;
}

1810 1811 1812 1813 1814 1815 1816
static int32_t translateExplain(STranslateContext* pCxt, SExplainStmt* pStmt) {
  if (pStmt->analyze) {
    pCxt->pExplainOpt = pStmt->pOptions;
  }
  return translateQuery(pCxt, pStmt->pQuery);
}

1817 1818 1819 1820
static int32_t translateDescribe(STranslateContext* pCxt, SDescribeStmt* pStmt) {
  return getTableMeta(pCxt, pStmt->dbName, pStmt->tableName, &pStmt->pMeta);
}

1821 1822 1823 1824 1825 1826
static int32_t translateQuery(STranslateContext* pCxt, SNode* pNode) {
  int32_t code = TSDB_CODE_SUCCESS;
  switch (nodeType(pNode)) {
    case QUERY_NODE_SELECT_STMT:
      code = translateSelect(pCxt, (SSelectStmt*)pNode);
      break;
1827 1828 1829
    case QUERY_NODE_CREATE_DATABASE_STMT:
      code = translateCreateDatabase(pCxt, (SCreateDatabaseStmt*)pNode);
      break;
1830 1831 1832
    case QUERY_NODE_DROP_DATABASE_STMT:
      code = translateDropDatabase(pCxt, (SDropDatabaseStmt*)pNode);
      break;
1833 1834 1835
    case QUERY_NODE_ALTER_DATABASE_STMT:
      code = translateAlterDatabase(pCxt, (SAlterDatabaseStmt*)pNode);
      break;
1836
    case QUERY_NODE_CREATE_TABLE_STMT:
1837
      code = translateCreateSuperTable(pCxt, (SCreateTableStmt*)pNode);
1838
      break;
1839 1840 1841 1842 1843 1844
    case QUERY_NODE_DROP_TABLE_STMT:
      code = translateDropTable(pCxt, (SDropTableStmt*)pNode);
      break;
    case QUERY_NODE_DROP_SUPER_TABLE_STMT:
      code = translateDropSuperTable(pCxt, (SDropSuperTableStmt*)pNode);
      break;
1845 1846 1847
    case QUERY_NODE_ALTER_TABLE_STMT:
      code = translateAlterTable(pCxt, (SAlterTableStmt*)pNode);
      break;
1848 1849 1850 1851 1852 1853 1854 1855 1856
    case QUERY_NODE_CREATE_USER_STMT:
      code = translateCreateUser(pCxt, (SCreateUserStmt*)pNode);
      break;
    case QUERY_NODE_ALTER_USER_STMT:
      code = translateAlterUser(pCxt, (SAlterUserStmt*)pNode);
      break;
    case QUERY_NODE_DROP_USER_STMT:
      code = translateDropUser(pCxt, (SDropUserStmt*)pNode);
      break;
1857 1858 1859
    case QUERY_NODE_USE_DATABASE_STMT:
      code = translateUseDatabase(pCxt, (SUseDatabaseStmt*)pNode);
      break;
1860 1861 1862 1863 1864 1865
    case QUERY_NODE_CREATE_DNODE_STMT:
      code = translateCreateDnode(pCxt, (SCreateDnodeStmt*)pNode);
      break;
    case QUERY_NODE_DROP_DNODE_STMT:
      code = translateDropDnode(pCxt, (SDropDnodeStmt*)pNode);
      break;
1866 1867 1868
    case QUERY_NODE_ALTER_DNODE_STMT:
      code = translateAlterDnode(pCxt, (SAlterDnodeStmt*)pNode);
      break;
1869 1870 1871 1872 1873 1874 1875
    case QUERY_NODE_SHOW_APPS_STMT:
    case QUERY_NODE_SHOW_CONNECTIONS_STMT:
    case QUERY_NODE_SHOW_LICENCE_STMT:
    case QUERY_NODE_SHOW_QUERIES_STMT:
    case QUERY_NODE_SHOW_SCORES_STMT:
    case QUERY_NODE_SHOW_TOPICS_STMT:
    case QUERY_NODE_SHOW_VARIABLE_STMT:
1876
      code = translateShow(pCxt, (SShowStmt*)pNode);
1877
      break;
1878 1879 1880 1881
    case QUERY_NODE_SHOW_CREATE_DATABASE_STMT:
    case QUERY_NODE_SHOW_CREATE_TABLE_STMT:
    case QUERY_NODE_SHOW_CREATE_STABLE_STMT:
      // todo
X
Xiaoyu Wang 已提交
1882
      break;
X
Xiaoyu Wang 已提交
1883 1884 1885
    case QUERY_NODE_CREATE_INDEX_STMT:
      code = translateCreateIndex(pCxt, (SCreateIndexStmt*)pNode);
      break;
1886 1887 1888
    case QUERY_NODE_DROP_INDEX_STMT:
      code = translateDropIndex(pCxt, (SDropIndexStmt*)pNode);
      break;
X
Xiaoyu Wang 已提交
1889 1890 1891
    case QUERY_NODE_CREATE_QNODE_STMT:
      code = translateCreateQnode(pCxt, (SCreateQnodeStmt*)pNode);
      break;
1892 1893 1894 1895 1896 1897 1898 1899 1900
    case QUERY_NODE_DROP_QNODE_STMT:
      code = translateDropQnode(pCxt, (SDropQnodeStmt*)pNode);
      break;
    case QUERY_NODE_CREATE_TOPIC_STMT:
      code = translateCreateTopic(pCxt, (SCreateTopicStmt*)pNode);
      break;
    case QUERY_NODE_DROP_TOPIC_STMT:
      code = translateDropTopic(pCxt, (SDropTopicStmt*)pNode);
      break;
1901 1902 1903
    case QUERY_NODE_ALTER_LOCAL_STMT:
      code = translateAlterLocal(pCxt, (SAlterLocalStmt*)pNode);
      break;
1904 1905 1906
    case QUERY_NODE_EXPLAIN_STMT:
      code = translateExplain(pCxt, (SExplainStmt*)pNode);
      break;
1907 1908 1909
    case QUERY_NODE_DESCRIBE_STMT:
      code = translateDescribe(pCxt, (SDescribeStmt*)pNode);
      break;
1910 1911 1912 1913 1914 1915 1916 1917
    default:
      break;
  }
  return code;
}

static int32_t translateSubquery(STranslateContext* pCxt, SNode* pNode) {
  ++(pCxt->currLevel);
dengyihao's avatar
dengyihao 已提交
1918
  ESqlClause   currClause = pCxt->currClause;
1919
  SSelectStmt* pCurrStmt = pCxt->pCurrStmt;
dengyihao's avatar
dengyihao 已提交
1920
  int32_t      code = translateQuery(pCxt, pNode);
1921
  --(pCxt->currLevel);
1922
  pCxt->currClause = currClause;
1923
  pCxt->pCurrStmt = pCurrStmt;
1924 1925 1926
  return code;
}

1927 1928 1929 1930 1931
static int32_t extractSelectResultSchema(const SSelectStmt* pSelect, int32_t* numOfCols, SSchema** pSchema) {
  *numOfCols = LIST_LENGTH(pSelect->pProjectionList);
  *pSchema = taosMemoryCalloc((*numOfCols), sizeof(SSchema));
  if (NULL == (*pSchema)) {
    return TSDB_CODE_OUT_OF_MEMORY;
1932 1933
  }

dengyihao's avatar
dengyihao 已提交
1934
  SNode*  pNode;
1935 1936 1937 1938 1939 1940 1941
  int32_t index = 0;
  FOREACH(pNode, pSelect->pProjectionList) {
    SExprNode* pExpr = (SExprNode*)pNode;
    (*pSchema)[index].type = pExpr->resType.type;
    (*pSchema)[index].bytes = pExpr->resType.bytes;
    (*pSchema)[index].colId = index + 1;
    strcpy((*pSchema)[index].name, pExpr->aliasName);
dengyihao's avatar
dengyihao 已提交
1942
    index += 1;
1943
  }
1944

1945 1946 1947 1948 1949 1950 1951 1952
  return TSDB_CODE_SUCCESS;
}

static int32_t extractExplainResultSchema(int32_t* numOfCols, SSchema** pSchema) {
  *numOfCols = 1;
  *pSchema = taosMemoryCalloc((*numOfCols), sizeof(SSchema));
  if (NULL == (*pSchema)) {
    return TSDB_CODE_OUT_OF_MEMORY;
X
Xiaoyu Wang 已提交
1953
  }
1954 1955
  (*pSchema)[0].type = TSDB_DATA_TYPE_BINARY;
  (*pSchema)[0].bytes = TSDB_EXPLAIN_RESULT_ROW_SIZE;
1956
  strcpy((*pSchema)[0].name, TSDB_EXPLAIN_RESULT_COLUMN_NAME);
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981
  return TSDB_CODE_SUCCESS;
}

static int32_t extractDescribeResultSchema(int32_t* numOfCols, SSchema** pSchema) {
  *numOfCols = DESCRIBE_RESULT_COLS;
  *pSchema = taosMemoryCalloc((*numOfCols), sizeof(SSchema));
  if (NULL == (*pSchema)) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  (*pSchema)[0].type = TSDB_DATA_TYPE_BINARY;
  (*pSchema)[0].bytes = DESCRIBE_RESULT_FIELD_LEN;
  strcpy((*pSchema)[0].name, "Field");

  (*pSchema)[1].type = TSDB_DATA_TYPE_BINARY;
  (*pSchema)[1].bytes = DESCRIBE_RESULT_TYPE_LEN;
  strcpy((*pSchema)[1].name, "Type");

  (*pSchema)[2].type = TSDB_DATA_TYPE_INT;
  (*pSchema)[2].bytes = tDataTypes[TSDB_DATA_TYPE_INT].bytes;
  strcpy((*pSchema)[2].name, "Length");

  (*pSchema)[3].type = TSDB_DATA_TYPE_BINARY;
  (*pSchema)[3].bytes = DESCRIBE_RESULT_NOTE_LEN;
  strcpy((*pSchema)[3].name, "Note");
1982

X
Xiaoyu Wang 已提交
1983 1984 1985
  return TSDB_CODE_SUCCESS;
}

1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
int32_t extractResultSchema(const SNode* pRoot, int32_t* numOfCols, SSchema** pSchema) {
  if (NULL == pRoot) {
    return TSDB_CODE_SUCCESS;
  }

  switch (nodeType(pRoot)) {
    case QUERY_NODE_SELECT_STMT:
      return extractSelectResultSchema((SSelectStmt*)pRoot, numOfCols, pSchema);
    case QUERY_NODE_EXPLAIN_STMT:
      return extractExplainResultSchema(numOfCols, pSchema);
    case QUERY_NODE_DESCRIBE_STMT:
      return extractDescribeResultSchema(numOfCols, pSchema);
    default:
      break;
  }

  return TSDB_CODE_FAILED;
}

2005
static void destroyTranslateContext(STranslateContext* pCxt) {
X
Xiaoyu Wang 已提交
2006
  if (NULL != pCxt->pNsLevel) {
X
Xiaoyu Wang 已提交
2007 2008 2009 2010 2011
    size_t size = taosArrayGetSize(pCxt->pNsLevel);
    for (size_t i = 0; i < size; ++i) {
      taosArrayDestroy(taosArrayGetP(pCxt->pNsLevel, i));
    }
    taosArrayDestroy(pCxt->pNsLevel);
X
Xiaoyu Wang 已提交
2012 2013
  }

2014
  if (NULL != pCxt->pCmdMsg) {
wafwerar's avatar
wafwerar 已提交
2015 2016
    taosMemoryFreeClear(pCxt->pCmdMsg->pMsg);
    taosMemoryFreeClear(pCxt->pCmdMsg);
2017
  }
X
Xiaoyu Wang 已提交
2018 2019 2020

  taosHashCleanup(pCxt->pDbs);
  taosHashCleanup(pCxt->pTables);
2021 2022
}

X
Xiaoyu Wang 已提交
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057
static const char* getSysTableName(ENodeType type) {
  switch (type) {
    case QUERY_NODE_SHOW_DATABASES_STMT:
      return TSDB_INS_TABLE_USER_DATABASES;
    case QUERY_NODE_SHOW_TABLES_STMT:
      return TSDB_INS_TABLE_USER_TABLES;
    case QUERY_NODE_SHOW_STABLES_STMT:
      return TSDB_INS_TABLE_USER_STABLES;
    case QUERY_NODE_SHOW_USERS_STMT:
      return TSDB_INS_TABLE_USER_USERS;
    case QUERY_NODE_SHOW_DNODES_STMT:
      return TSDB_INS_TABLE_DNODES;
    case QUERY_NODE_SHOW_VGROUPS_STMT:
      return TSDB_INS_TABLE_VGROUPS;
    case QUERY_NODE_SHOW_MNODES_STMT:
      return TSDB_INS_TABLE_MNODES;
    case QUERY_NODE_SHOW_MODULES_STMT:
      return TSDB_INS_TABLE_MODULES;
    case QUERY_NODE_SHOW_QNODES_STMT:
      return TSDB_INS_TABLE_QNODES;
    case QUERY_NODE_SHOW_FUNCTIONS_STMT:
      return TSDB_INS_TABLE_USER_FUNCTIONS;
    case QUERY_NODE_SHOW_INDEXES_STMT:
      return TSDB_INS_TABLE_USER_INDEXES;
    case QUERY_NODE_SHOW_STREAMS_STMT:
      return TSDB_INS_TABLE_USER_STREAMS;
    default:
      break;
  }
  return NULL;
}

static int32_t createSelectStmtForShow(ENodeType showType, SSelectStmt** pStmt) {
  SSelectStmt* pSelect = nodesMakeNode(QUERY_NODE_SELECT_STMT);
  if (NULL == pSelect) {
X
Xiaoyu Wang 已提交
2058 2059
    return TSDB_CODE_OUT_OF_MEMORY;
  }
X
Xiaoyu Wang 已提交
2060
  sprintf(pSelect->stmtName, "%p", pSelect);
X
Xiaoyu Wang 已提交
2061

X
Xiaoyu Wang 已提交
2062 2063
  SRealTableNode* pTable = nodesMakeNode(QUERY_NODE_REAL_TABLE);
  if (NULL == pTable) {
X
Xiaoyu Wang 已提交
2064
    nodesDestroyNode(pSelect);
X
Xiaoyu Wang 已提交
2065 2066 2067
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  strcpy(pTable->table.dbName, TSDB_INFORMATION_SCHEMA_DB);
X
Xiaoyu Wang 已提交
2068
  strcpy(pTable->table.tableName, getSysTableName(showType));
X
Xiaoyu Wang 已提交
2069
  strcpy(pTable->table.tableAlias, pTable->table.tableName);
X
Xiaoyu Wang 已提交
2070 2071 2072
  pSelect->pFromTable = (SNode*)pTable;

  *pStmt = pSelect;
X
Xiaoyu Wang 已提交
2073 2074 2075 2076

  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
2077 2078 2079 2080 2081 2082 2083 2084 2085 2086
static int32_t createOperatorNode(EOperatorType opType, const char* pColName, SNode* pRight, SNode** pOp) {
  if (NULL == pRight) {
    return TSDB_CODE_SUCCESS;
  }

  SOperatorNode* pOper = nodesMakeNode(QUERY_NODE_OPERATOR);
  if (NULL == pOper) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

X
Xiaoyu Wang 已提交
2087
  pOper->opType = opType;
X
Xiaoyu Wang 已提交
2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128
  pOper->pLeft = nodesMakeNode(QUERY_NODE_COLUMN);
  pOper->pRight = nodesCloneNode(pRight);
  if (NULL == pOper->pLeft || NULL == pOper->pRight) {
    nodesDestroyNode(pOper);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  strcpy(((SColumnNode*)pOper->pLeft)->colName, pColName);

  *pOp = (SNode*)pOper;
  return TSDB_CODE_SUCCESS;
}

static const char* getTbNameColName(ENodeType type) {
  return (QUERY_NODE_SHOW_STABLES_STMT == type ? "stable_name" : "table_name");
}

static int32_t createLogicCondNode(SNode* pCond1, SNode* pCond2, SNode** pCond) {
  SLogicConditionNode* pCondition = nodesMakeNode(QUERY_NODE_LOGIC_CONDITION);
  if (NULL == pCondition) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pCondition->condType = LOGIC_COND_TYPE_AND;
  pCondition->pParameterList = nodesMakeList();
  if (NULL == pCondition->pParameterList) {
    nodesDestroyNode(pCondition);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  if (TSDB_CODE_SUCCESS != nodesListAppend(pCondition->pParameterList, pCond1) ||
      TSDB_CODE_SUCCESS != nodesListAppend(pCondition->pParameterList, pCond2)) {
    nodesDestroyNode(pCondition);
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  *pCond = (SNode*)pCondition;
  return TSDB_CODE_SUCCESS;
}

static int32_t createShowCondition(const SShowStmt* pShow, SSelectStmt* pSelect) {
  SNode* pDbCond = NULL;
  SNode* pTbCond = NULL;
  if (TSDB_CODE_SUCCESS != createOperatorNode(OP_TYPE_EQUAL, "db_name", pShow->pDbName, &pDbCond) ||
dengyihao's avatar
dengyihao 已提交
2129 2130
      TSDB_CODE_SUCCESS !=
          createOperatorNode(OP_TYPE_LIKE, getTbNameColName(nodeType(pShow)), pShow->pTbNamePattern, &pTbCond)) {
X
Xiaoyu Wang 已提交
2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145
    nodesDestroyNode(pDbCond);
    nodesDestroyNode(pTbCond);
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  if (NULL != pDbCond && NULL != pTbCond) {
    if (TSDB_CODE_SUCCESS != createLogicCondNode(pDbCond, pTbCond, &pSelect->pWhere)) {
      nodesDestroyNode(pDbCond);
      nodesDestroyNode(pTbCond);
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  } else {
    pSelect->pWhere = (NULL == pDbCond ? pTbCond : pDbCond);
  }

X
Xiaoyu Wang 已提交
2146 2147 2148 2149
  if (NULL != pShow->pDbName) {
    strcpy(((SRealTableNode*)pSelect->pFromTable)->useDbName, ((SValueNode*)pShow->pDbName)->literal);
  }

X
Xiaoyu Wang 已提交
2150 2151 2152 2153 2154
  return TSDB_CODE_SUCCESS;
}

static int32_t rewriteShow(STranslateContext* pCxt, SQuery* pQuery) {
  SSelectStmt* pStmt = NULL;
dengyihao's avatar
dengyihao 已提交
2155
  int32_t      code = createSelectStmtForShow(nodeType(pQuery->pRoot), &pStmt);
X
Xiaoyu Wang 已提交
2156 2157 2158 2159
  if (TSDB_CODE_SUCCESS == code) {
    code = createShowCondition((SShowStmt*)pQuery->pRoot, pStmt);
  }
  if (TSDB_CODE_SUCCESS == code) {
D
dapan1121 已提交
2160
    pQuery->showRewrite = true;
X
Xiaoyu Wang 已提交
2161 2162 2163 2164
    nodesDestroyNode(pQuery->pRoot);
    pQuery->pRoot = (SNode*)pStmt;
  }
  return code;
2165 2166
}

2167 2168 2169
typedef struct SVgroupTablesBatch {
  SVCreateTbBatchReq req;
  SVgroupInfo        info;
D
dapan1121 已提交
2170
  char               dbName[TSDB_DB_NAME_LEN];
2171 2172
} SVgroupTablesBatch;

2173
static void toSchemaEx(const SColumnDefNode* pCol, col_id_t colId, SSchemaEx* pSchema) {
2174 2175
  pSchema->colId = colId;
  pSchema->type = pCol->dataType.type;
X
Xiaoyu Wang 已提交
2176
  pSchema->bytes = calcTypeBytes(pCol->dataType);
2177
  pSchema->sma = pCol->sma ? TSDB_BSMA_TYPE_LATEST : TSDB_BSMA_TYPE_NONE;
2178 2179 2180
  strcpy(pSchema->name, pCol->colName);
}

X
Xiaoyu Wang 已提交
2181
static void destroyCreateTbReq(SVCreateTbReq* pReq) {
wafwerar's avatar
wafwerar 已提交
2182 2183 2184
  taosMemoryFreeClear(pReq->dbFName);
  taosMemoryFreeClear(pReq->name);
  taosMemoryFreeClear(pReq->ntbCfg.pSchema);
X
Xiaoyu Wang 已提交
2185 2186
}

2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203
static int32_t buildSmaParam(STableOptions* pOptions, SVCreateTbReq* pReq) {
  if (0 == LIST_LENGTH(pOptions->pFuncs)) {
    return TSDB_CODE_SUCCESS;
  }

  pReq->ntbCfg.pRSmaParam = taosMemoryCalloc(1, sizeof(SRSmaParam));
  if (NULL == pReq->ntbCfg.pRSmaParam) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pReq->ntbCfg.pRSmaParam->delay = pOptions->delay;
  pReq->ntbCfg.pRSmaParam->xFilesFactor = pOptions->filesFactor;
  pReq->ntbCfg.pRSmaParam->nFuncIds = LIST_LENGTH(pOptions->pFuncs);
  pReq->ntbCfg.pRSmaParam->pFuncIds = taosMemoryCalloc(pReq->ntbCfg.pRSmaParam->nFuncIds, sizeof(func_id_t));
  if (NULL == pReq->ntbCfg.pRSmaParam->pFuncIds) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  int32_t index = 0;
dengyihao's avatar
dengyihao 已提交
2204 2205
  SNode*  pFunc = NULL;
  FOREACH(pFunc, pOptions->pFuncs) { pReq->ntbCfg.pRSmaParam->pFuncIds[index++] = ((SFunctionNode*)pFunc)->funcId; }
2206 2207 2208 2209

  return TSDB_CODE_SUCCESS;
}

dengyihao's avatar
dengyihao 已提交
2210 2211 2212 2213
static int32_t buildNormalTableBatchReq(int32_t acctId, const SCreateTableStmt* pStmt, const SVgroupInfo* pVgroupInfo,
                                        SVgroupTablesBatch* pBatch) {
  char  dbFName[TSDB_DB_FNAME_LEN] = {0};
  SName name = {.type = TSDB_DB_NAME_T, .acctId = acctId};
2214
  strcpy(name.dbname, pStmt->dbName);
X
Xiaoyu Wang 已提交
2215 2216
  tNameGetFullDbName(&name, dbFName);

2217 2218
  SVCreateTbReq req = {0};
  req.type = TD_NORMAL_TABLE;
X
Xiaoyu Wang 已提交
2219
  req.dbFName = strdup(dbFName);
2220 2221
  req.name = strdup(pStmt->tableName);
  req.ntbCfg.nCols = LIST_LENGTH(pStmt->pCols);
C
Cary Xu 已提交
2222
  req.ntbCfg.pSchema = taosMemoryCalloc(req.ntbCfg.nCols, sizeof(SSchemaEx));
2223
  if (NULL == req.name || NULL == req.ntbCfg.pSchema) {
X
Xiaoyu Wang 已提交
2224
    destroyCreateTbReq(&req);
2225 2226
    return TSDB_CODE_OUT_OF_MEMORY;
  }
dengyihao's avatar
dengyihao 已提交
2227
  SNode*   pCol;
2228 2229 2230
  col_id_t index = 0;
  FOREACH(pCol, pStmt->pCols) {
    toSchemaEx((SColumnDefNode*)pCol, index + 1, req.ntbCfg.pSchema + index);
2231
    ++index;
2232
  }
2233 2234 2235 2236
  if (TSDB_CODE_SUCCESS != buildSmaParam(pStmt->pOptions, &req)) {
    destroyCreateTbReq(&req);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
2237 2238

  pBatch->info = *pVgroupInfo;
2239
  strcpy(pBatch->dbName, pStmt->dbName);
2240
  pBatch->req.pArray = taosArrayInit(1, sizeof(struct SVCreateTbReq));
2241
  if (NULL == pBatch->req.pArray) {
X
Xiaoyu Wang 已提交
2242
    destroyCreateTbReq(&req);
2243
    return TSDB_CODE_OUT_OF_MEMORY;
2244 2245
  }
  taosArrayPush(pBatch->req.pArray, &req);
2246

2247 2248 2249
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
2250
static int32_t serializeVgroupTablesBatch(SVgroupTablesBatch* pTbBatch, SArray* pBufArray) {
dengyihao's avatar
dengyihao 已提交
2251
  int   tlen = sizeof(SMsgHead) + tSerializeSVCreateTbBatchReq(NULL, &(pTbBatch->req));
wafwerar's avatar
wafwerar 已提交
2252
  void* buf = taosMemoryMalloc(tlen);
2253
  if (NULL == buf) {
2254
    return TSDB_CODE_OUT_OF_MEMORY;
2255 2256 2257 2258 2259 2260
  }
  ((SMsgHead*)buf)->vgId = htonl(pTbBatch->info.vgId);
  ((SMsgHead*)buf)->contLen = htonl(tlen);
  void* pBuf = POINTER_SHIFT(buf, sizeof(SMsgHead));
  tSerializeSVCreateTbBatchReq(&pBuf, &(pTbBatch->req));

wafwerar's avatar
wafwerar 已提交
2261
  SVgDataBlocks* pVgData = taosMemoryCalloc(1, sizeof(SVgDataBlocks));
2262 2263 2264
  if (NULL == pVgData) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
dengyihao's avatar
dengyihao 已提交
2265
  pVgData->vg = pTbBatch->info;
2266
  pVgData->pData = buf;
dengyihao's avatar
dengyihao 已提交
2267 2268
  pVgData->size = tlen;
  pVgData->numOfTables = (int32_t)taosArrayGetSize(pTbBatch->req.pArray);
2269
  taosArrayPush(pBufArray, &pVgData);
2270 2271

  return TSDB_CODE_SUCCESS;
2272 2273 2274 2275
}

static void destroyCreateTbReqBatch(SVgroupTablesBatch* pTbBatch) {
  size_t size = taosArrayGetSize(pTbBatch->req.pArray);
dengyihao's avatar
dengyihao 已提交
2276
  for (int32_t i = 0; i < size; ++i) {
2277
    SVCreateTbReq* pTableReq = taosArrayGet(pTbBatch->req.pArray, i);
wafwerar's avatar
wafwerar 已提交
2278 2279
    taosMemoryFreeClear(pTableReq->dbFName);
    taosMemoryFreeClear(pTableReq->name);
2280 2281

    if (pTableReq->type == TSDB_NORMAL_TABLE) {
wafwerar's avatar
wafwerar 已提交
2282
      taosMemoryFreeClear(pTableReq->ntbCfg.pSchema);
2283
    } else if (pTableReq->type == TSDB_CHILD_TABLE) {
wafwerar's avatar
wafwerar 已提交
2284
      taosMemoryFreeClear(pTableReq->ctbCfg.pTag);
2285 2286 2287 2288 2289 2290
    }
  }

  taosArrayDestroy(pTbBatch->req.pArray);
}

2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302
static int32_t rewriteToVnodeModifOpStmt(SQuery* pQuery, SArray* pBufArray) {
  SVnodeModifOpStmt* pNewStmt = nodesMakeNode(QUERY_NODE_VNODE_MODIF_STMT);
  if (pNewStmt == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  pNewStmt->sqlNodeType = nodeType(pQuery->pRoot);
  pNewStmt->pDataBlocks = pBufArray;
  nodesDestroyNode(pQuery->pRoot);
  pQuery->pRoot = (SNode*)pNewStmt;
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
2303 2304 2305 2306
static void destroyCreateTbReqArray(SArray* pArray) {
  size_t size = taosArrayGetSize(pArray);
  for (size_t i = 0; i < size; ++i) {
    SVgDataBlocks* pVg = taosArrayGetP(pArray, i);
wafwerar's avatar
wafwerar 已提交
2307 2308
    taosMemoryFreeClear(pVg->pData);
    taosMemoryFreeClear(pVg);
X
Xiaoyu Wang 已提交
2309 2310 2311 2312
  }
  taosArrayDestroy(pArray);
}

dengyihao's avatar
dengyihao 已提交
2313 2314
static int32_t buildCreateTableDataBlock(int32_t acctId, const SCreateTableStmt* pStmt, const SVgroupInfo* pInfo,
                                         SArray** pBufArray) {
X
Xiaoyu Wang 已提交
2315 2316 2317 2318 2319
  *pBufArray = taosArrayInit(1, POINTER_BYTES);
  if (NULL == *pBufArray) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

2320
  SVgroupTablesBatch tbatch = {0};
dengyihao's avatar
dengyihao 已提交
2321
  int32_t            code = buildNormalTableBatchReq(acctId, pStmt, pInfo, &tbatch);
2322
  if (TSDB_CODE_SUCCESS == code) {
X
Xiaoyu Wang 已提交
2323
    code = serializeVgroupTablesBatch(&tbatch, *pBufArray);
2324
  }
X
Xiaoyu Wang 已提交
2325

2326
  destroyCreateTbReqBatch(&tbatch);
X
Xiaoyu Wang 已提交
2327
  if (TSDB_CODE_SUCCESS != code) {
X
Xiaoyu Wang 已提交
2328
    destroyCreateTbReqArray(*pBufArray);
X
Xiaoyu Wang 已提交
2329
  }
2330 2331 2332 2333 2334 2335
  return code;
}

static int32_t rewriteCreateTable(STranslateContext* pCxt, SQuery* pQuery) {
  SCreateTableStmt* pStmt = (SCreateTableStmt*)pQuery->pRoot;

dengyihao's avatar
dengyihao 已提交
2336
  int32_t     code = checkCreateTable(pCxt, pStmt);
2337
  SVgroupInfo info = {0};
2338 2339 2340
  if (TSDB_CODE_SUCCESS == code) {
    code = getTableHashVgroup(pCxt, pStmt->dbName, pStmt->tableName, &info);
  }
X
Xiaoyu Wang 已提交
2341
  SArray* pBufArray = NULL;
2342
  if (TSDB_CODE_SUCCESS == code) {
D
dapan1121 已提交
2343
    code = buildCreateTableDataBlock(pCxt->pParseCxt->acctId, pStmt, &info, &pBufArray);
2344 2345 2346
  }
  if (TSDB_CODE_SUCCESS == code) {
    code = rewriteToVnodeModifOpStmt(pQuery, pBufArray);
X
Xiaoyu Wang 已提交
2347 2348 2349
    if (TSDB_CODE_SUCCESS != code) {
      destroyCreateTbReqArray(pBufArray);
    }
2350 2351 2352 2353 2354
  }

  return code;
}

dengyihao's avatar
dengyihao 已提交
2355 2356 2357 2358
static void addCreateTbReqIntoVgroup(int32_t acctId, SHashObj* pVgroupHashmap, const char* pDbName,
                                     const char* pTableName, SKVRow row, uint64_t suid, SVgroupInfo* pVgInfo) {
  char  dbFName[TSDB_DB_FNAME_LEN] = {0};
  SName name = {.type = TSDB_DB_NAME_T, .acctId = acctId};
X
Xiaoyu Wang 已提交
2359 2360 2361
  strcpy(name.dbname, pDbName);
  tNameGetFullDbName(&name, dbFName);

2362
  struct SVCreateTbReq req = {0};
dengyihao's avatar
dengyihao 已提交
2363 2364 2365
  req.type = TD_CHILD_TABLE;
  req.dbFName = strdup(dbFName);
  req.name = strdup(pTableName);
2366 2367 2368 2369 2370 2371 2372
  req.ctbCfg.suid = suid;
  req.ctbCfg.pTag = row;

  SVgroupTablesBatch* pTableBatch = taosHashGet(pVgroupHashmap, &pVgInfo->vgId, sizeof(pVgInfo->vgId));
  if (pTableBatch == NULL) {
    SVgroupTablesBatch tBatch = {0};
    tBatch.info = *pVgInfo;
D
dapan1121 已提交
2373
    strcpy(tBatch.dbName, pDbName);
2374 2375 2376 2377 2378 2379 2380 2381 2382 2383

    tBatch.req.pArray = taosArrayInit(4, sizeof(struct SVCreateTbReq));
    taosArrayPush(tBatch.req.pArray, &req);

    taosHashPut(pVgroupHashmap, &pVgInfo->vgId, sizeof(pVgInfo->vgId), &tBatch, sizeof(tBatch));
  } else {  // add to the correct vgroup
    taosArrayPush(pTableBatch->req.pArray, &req);
  }
}

dengyihao's avatar
dengyihao 已提交
2384 2385
static int32_t addValToKVRow(STranslateContext* pCxt, SValueNode* pVal, const SSchema* pSchema,
                             SKVRowBuilder* pBuilder) {
2386 2387 2388 2389 2390
  if (DEAL_RES_ERROR == translateValue(pCxt, pVal)) {
    return pCxt->errCode;
  }
  SVariant var;
  valueNodeToVariant(pVal, &var);
dengyihao's avatar
dengyihao 已提交
2391
  char    tagVal[TSDB_MAX_TAGS_LEN] = {0};
2392 2393 2394 2395 2396 2397 2398
  int32_t code = taosVariantDump(&var, tagVal, pSchema->type, true);
  if (TSDB_CODE_SUCCESS == code) {
    tdAddColToKVRow(pBuilder, pSchema->colId, pSchema->type, tagVal);
  }
  return code;
}

dengyihao's avatar
dengyihao 已提交
2399 2400
static int32_t buildKVRowForBindTags(STranslateContext* pCxt, SCreateSubTableClause* pStmt, STableMeta* pSuperTableMeta,
                                     SKVRowBuilder* pBuilder) {
2401
  int32_t numOfTags = getNumOfTags(pSuperTableMeta);
dengyihao's avatar
dengyihao 已提交
2402 2403
  if (LIST_LENGTH(pStmt->pValsOfTags) != LIST_LENGTH(pStmt->pSpecificTags) ||
      numOfTags < LIST_LENGTH(pStmt->pValsOfTags)) {
2404
    return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_TAGS_NOT_MATCHED);
2405
  }
2406

2407
  SSchema* pTagSchema = getTableTagSchema(pSuperTableMeta);
dengyihao's avatar
dengyihao 已提交
2408
  SNode *  pTag, *pVal;
2409 2410
  FORBOTH(pTag, pStmt->pSpecificTags, pVal, pStmt->pValsOfTags) {
    SColumnNode* pCol = (SColumnNode*)pTag;
dengyihao's avatar
dengyihao 已提交
2411
    SSchema*     pSchema = NULL;
2412 2413
    for (int32_t i = 0; i < numOfTags; ++i) {
      if (0 == strcmp(pCol->colName, pTagSchema[i].name)) {
dengyihao's avatar
dengyihao 已提交
2414 2415
        pSchema = pTagSchema + i;
        break;
2416 2417 2418
      }
    }
    if (NULL == pSchema) {
2419
      return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_INVALID_TAG_NAME, pCol->colName);
2420
    }
2421 2422 2423 2424 2425
    int32_t code = addValToKVRow(pCxt, (SValueNode*)pVal, pSchema, pBuilder);
    if (TSDB_CODE_SUCCESS != code) {
      return code;
    }
  }
2426

2427 2428
  return TSDB_CODE_SUCCESS;
}
2429

dengyihao's avatar
dengyihao 已提交
2430 2431
static int32_t buildKVRowForAllTags(STranslateContext* pCxt, SCreateSubTableClause* pStmt, STableMeta* pSuperTableMeta,
                                    SKVRowBuilder* pBuilder) {
2432
  if (getNumOfTags(pSuperTableMeta) != LIST_LENGTH(pStmt->pValsOfTags)) {
2433
    return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_TAGS_NOT_MATCHED);
2434 2435 2436
  }

  SSchema* pTagSchema = getTableTagSchema(pSuperTableMeta);
dengyihao's avatar
dengyihao 已提交
2437 2438
  SNode*   pVal;
  int32_t  index = 0;
2439 2440 2441 2442
  FOREACH(pVal, pStmt->pValsOfTags) {
    int32_t code = addValToKVRow(pCxt, (SValueNode*)pVal, pTagSchema + index++, pBuilder);
    if (TSDB_CODE_SUCCESS != code) {
      return code;
2443
    }
2444
  }
2445

2446 2447 2448
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
2449 2450
static int32_t checkCreateSubTable(STranslateContext* pCxt, SCreateSubTableClause* pStmt) {
  if (0 != strcmp(pStmt->dbName, pStmt->useDbName)) {
dengyihao's avatar
dengyihao 已提交
2451 2452
    return generateSyntaxErrMsg(&pCxt->msgBuf, TSDB_CODE_PAR_CORRESPONDING_STABLE_ERR);
    ;
X
Xiaoyu Wang 已提交
2453 2454 2455
  }
  return TSDB_CODE_SUCCESS;
}
2456
static int32_t rewriteCreateSubTable(STranslateContext* pCxt, SCreateSubTableClause* pStmt, SHashObj* pVgroupHashmap) {
X
Xiaoyu Wang 已提交
2457 2458
  int32_t code = checkCreateSubTable(pCxt, pStmt);

2459
  STableMeta* pSuperTableMeta = NULL;
X
Xiaoyu Wang 已提交
2460 2461 2462
  if (TSDB_CODE_SUCCESS == code) {
    code = getTableMeta(pCxt, pStmt->useDbName, pStmt->useTableName, &pSuperTableMeta);
  }
X
Xiaoyu Wang 已提交
2463

2464 2465 2466 2467 2468 2469 2470
  SKVRowBuilder kvRowBuilder = {0};
  if (TSDB_CODE_SUCCESS == code) {
    code = tdInitKVRowBuilder(&kvRowBuilder);
  }

  if (TSDB_CODE_SUCCESS == code) {
    if (NULL != pStmt->pSpecificTags) {
dengyihao's avatar
dengyihao 已提交
2471
      code = buildKVRowForBindTags(pCxt, pStmt, pSuperTableMeta, &kvRowBuilder);
2472
    } else {
dengyihao's avatar
dengyihao 已提交
2473
      code = buildKVRowForAllTags(pCxt, pStmt, pSuperTableMeta, &kvRowBuilder);
2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484
    }
  }

  SKVRow row = NULL;
  if (TSDB_CODE_SUCCESS == code) {
    row = tdGetKVRowFromBuilder(&kvRowBuilder);
    if (NULL == row) {
      code = TSDB_CODE_OUT_OF_MEMORY;
    } else {
      tdSortKVRowByColIdx(row);
    }
dengyihao's avatar
dengyihao 已提交
2485
  }
2486 2487 2488

  SVgroupInfo info = {0};
  if (TSDB_CODE_SUCCESS == code) {
X
Xiaoyu Wang 已提交
2489
    code = getTableHashVgroup(pCxt, pStmt->dbName, pStmt->tableName, &info);
2490 2491
  }
  if (TSDB_CODE_SUCCESS == code) {
dengyihao's avatar
dengyihao 已提交
2492 2493
    addCreateTbReqIntoVgroup(pCxt->pParseCxt->acctId, pVgroupHashmap, pStmt->dbName, pStmt->tableName, row,
                             pSuperTableMeta->uid, &info);
2494 2495
  }

wafwerar's avatar
wafwerar 已提交
2496
  taosMemoryFreeClear(pSuperTableMeta);
2497 2498 2499 2500
  tdDestroyKVRowBuilder(&kvRowBuilder);
  return code;
}

D
dapan1121 已提交
2501
static SArray* serializeVgroupsTablesBatch(int32_t acctId, SHashObj* pVgroupHashmap) {
2502 2503 2504 2505 2506
  SArray* pBufArray = taosArrayInit(taosHashGetSize(pVgroupHashmap), sizeof(void*));
  if (NULL == pBufArray) {
    return NULL;
  }

dengyihao's avatar
dengyihao 已提交
2507
  int32_t             code = TSDB_CODE_SUCCESS;
2508 2509 2510 2511 2512 2513 2514
  SVgroupTablesBatch* pTbBatch = NULL;
  do {
    pTbBatch = taosHashIterate(pVgroupHashmap, pTbBatch);
    if (pTbBatch == NULL) {
      break;
    }

X
Xiaoyu Wang 已提交
2515
    serializeVgroupTablesBatch(pTbBatch, pBufArray);
2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530
    destroyCreateTbReqBatch(pTbBatch);
  } while (true);

  return pBufArray;
}

static int32_t rewriteCreateMultiTable(STranslateContext* pCxt, SQuery* pQuery) {
  SCreateMultiTableStmt* pStmt = (SCreateMultiTableStmt*)pQuery->pRoot;

  SHashObj* pVgroupHashmap = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), false, HASH_NO_LOCK);
  if (NULL == pVgroupHashmap) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  int32_t code = TSDB_CODE_SUCCESS;
dengyihao's avatar
dengyihao 已提交
2531
  SNode*  pNode;
2532 2533 2534 2535 2536 2537 2538 2539
  FOREACH(pNode, pStmt->pSubTables) {
    code = rewriteCreateSubTable(pCxt, (SCreateSubTableClause*)pNode, pVgroupHashmap);
    if (TSDB_CODE_SUCCESS != code) {
      taosHashCleanup(pVgroupHashmap);
      return code;
    }
  }

D
dapan1121 已提交
2540
  SArray* pBufArray = serializeVgroupsTablesBatch(pCxt->pParseCxt->acctId, pVgroupHashmap);
X
Xiaoyu Wang 已提交
2541
  taosHashCleanup(pVgroupHashmap);
2542 2543 2544 2545 2546 2547 2548
  if (NULL == pBufArray) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  return rewriteToVnodeModifOpStmt(pQuery, pBufArray);
}

2549 2550 2551 2552 2553
static int32_t rewriteAlterTable(STranslateContext* pCxt, SQuery* pQuery) {
  // todo
  return TSDB_CODE_SUCCESS;
}

2554 2555 2556
static int32_t rewriteQuery(STranslateContext* pCxt, SQuery* pQuery) {
  int32_t code = TSDB_CODE_SUCCESS;
  switch (nodeType(pQuery->pRoot)) {
X
Xiaoyu Wang 已提交
2557
    case QUERY_NODE_SHOW_DATABASES_STMT:
X
Xiaoyu Wang 已提交
2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569
    case QUERY_NODE_SHOW_TABLES_STMT:
    case QUERY_NODE_SHOW_STABLES_STMT:
    case QUERY_NODE_SHOW_USERS_STMT:
    case QUERY_NODE_SHOW_DNODES_STMT:
    case QUERY_NODE_SHOW_VGROUPS_STMT:
    case QUERY_NODE_SHOW_MNODES_STMT:
    case QUERY_NODE_SHOW_MODULES_STMT:
    case QUERY_NODE_SHOW_QNODES_STMT:
    case QUERY_NODE_SHOW_FUNCTIONS_STMT:
    case QUERY_NODE_SHOW_INDEXES_STMT:
    case QUERY_NODE_SHOW_STREAMS_STMT:
      code = rewriteShow(pCxt, pQuery);
X
Xiaoyu Wang 已提交
2570
      break;
2571 2572 2573 2574 2575 2576 2577 2578
    case QUERY_NODE_CREATE_TABLE_STMT:
      if (NULL == ((SCreateTableStmt*)pQuery->pRoot)->pTags) {
        code = rewriteCreateTable(pCxt, pQuery);
      }
      break;
    case QUERY_NODE_CREATE_MULTI_TABLE_STMT:
      code = rewriteCreateMultiTable(pCxt, pQuery);
      break;
2579 2580 2581 2582 2583
    case QUERY_NODE_ALTER_TABLE_STMT:
      if (TSDB_ALTER_TABLE_UPDATE_TAG_VAL == ((SAlterTableStmt*)pQuery->pRoot)->alterType) {
        code = rewriteAlterTable(pCxt, pQuery);
      }
      break;
2584 2585 2586 2587 2588 2589
    default:
      break;
  }
  return code;
}

2590 2591 2592
static int32_t setQuery(STranslateContext* pCxt, SQuery* pQuery) {
  switch (nodeType(pQuery->pRoot)) {
    case QUERY_NODE_SELECT_STMT:
2593
    case QUERY_NODE_EXPLAIN_STMT:
2594 2595 2596 2597 2598 2599
      pQuery->haveResultSet = true;
      pQuery->msgType = TDMT_VND_QUERY;
      break;
    case QUERY_NODE_VNODE_MODIF_STMT:
      pQuery->msgType = TDMT_VND_CREATE_TABLE;
      break;
2600 2601 2602 2603 2604 2605 2606
    case QUERY_NODE_DESCRIBE_STMT:
      pQuery->localCmd = true;
      pQuery->haveResultSet = true;
      break;
    case QUERY_NODE_RESET_QUERY_CACHE_STMT:
      pQuery->localCmd = true;
      break;
2607 2608
    default:
      pQuery->directRpc = true;
X
Xiaoyu Wang 已提交
2609 2610 2611 2612
      if (NULL != pCxt->pCmdMsg) {
        TSWAP(pQuery->pCmdMsg, pCxt->pCmdMsg, SCmdMsgInfo*);
        pQuery->msgType = pQuery->pCmdMsg->msgType;
      }
2613 2614
      break;
  }
2615 2616 2617 2618 2619 2620

  if (pQuery->haveResultSet) {
    if (TSDB_CODE_SUCCESS != extractResultSchema(pQuery->pRoot, &pQuery->numOfResCols, &pQuery->pResSchema)) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }
dengyihao's avatar
dengyihao 已提交
2621

X
Xiaoyu Wang 已提交
2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645
  if (NULL != pCxt->pDbs) {
    pQuery->pDbList = taosArrayInit(taosHashGetSize(pCxt->pDbs), TSDB_DB_FNAME_LEN);
    if (NULL == pQuery->pDbList) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
    SFullDatabaseName* pDb = taosHashIterate(pCxt->pDbs, NULL);
    while (NULL != pDb) {
      taosArrayPush(pQuery->pDbList, pDb->fullDbName);
      pDb = taosHashIterate(pCxt->pDbs, pDb);
    }
  }

  if (NULL != pCxt->pTables) {
    pQuery->pTableList = taosArrayInit(taosHashGetSize(pCxt->pTables), sizeof(SName));
    if (NULL == pQuery->pTableList) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
    SName* pTable = taosHashIterate(pCxt->pTables, NULL);
    while (NULL != pTable) {
      taosArrayPush(pQuery->pTableList, pTable);
      pTable = taosHashIterate(pCxt->pTables, pTable);
    }
  }

X
bugfix  
Xiaoyu Wang 已提交
2646
  return TSDB_CODE_SUCCESS;
2647 2648
}

X
Xiaoyu Wang 已提交
2649
int32_t translate(SParseContext* pParseCxt, SQuery* pQuery) {
2650
  STranslateContext cxt = {
dengyihao's avatar
dengyihao 已提交
2651 2652 2653 2654 2655 2656 2657 2658
      .pParseCxt = pParseCxt,
      .errCode = TSDB_CODE_SUCCESS,
      .msgBuf = {.buf = pParseCxt->pMsg, .len = pParseCxt->msgLen},
      .pNsLevel = taosArrayInit(TARRAY_MIN_SIZE, POINTER_BYTES),
      .currLevel = 0,
      .currClause = 0,
      .pDbs = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_NO_LOCK),
      .pTables = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_NO_LOCK)};
X
Xiaoyu Wang 已提交
2659 2660 2661
  if (NULL == cxt.pNsLevel) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
2662
  int32_t code = fmFuncMgtInit();
2663 2664 2665
  if (TSDB_CODE_SUCCESS == code) {
    code = rewriteQuery(&cxt, pQuery);
  }
X
Xiaoyu Wang 已提交
2666 2667
  if (TSDB_CODE_SUCCESS == code) {
    code = translateQuery(&cxt, pQuery->pRoot);
2668
  }
2669
  if (TSDB_CODE_SUCCESS == code) {
2670
    code = setQuery(&cxt, pQuery);
2671
  }
2672
  destroyTranslateContext(&cxt);
X
Xiaoyu Wang 已提交
2673
  return code;
2674
}