parInsert.c 92.4 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/>.
 */

wafwerar's avatar
wafwerar 已提交
16
#include "os.h"
X
Xiaoyu Wang 已提交
17 18 19
#include "parInsertData.h"
#include "parInt.h"
#include "parToken.h"
H
refact  
Hongze Cheng 已提交
20
#include "parUtil.h"
X
Xiaoyu Wang 已提交
21
#include "query.h"
22 23 24 25
#include "tglobal.h"
#include "ttime.h"
#include "ttypes.h"

H
refact  
Hongze Cheng 已提交
26 27 28
#define NEXT_TOKEN(pSql, sToken)                \
  do {                                          \
    int32_t index = 0;                          \
29
    sToken = tStrGetToken(pSql, &index, false); \
H
refact  
Hongze Cheng 已提交
30
    pSql += index;                              \
31 32
  } while (0)

H
refact  
Hongze Cheng 已提交
33 34 35
#define NEXT_TOKEN_WITH_PREV(pSql, sToken)     \
  do {                                         \
    int32_t index = 0;                         \
X
Xiaoyu Wang 已提交
36
    sToken = tStrGetToken(pSql, &index, true); \
H
refact  
Hongze Cheng 已提交
37
    pSql += index;                             \
X
Xiaoyu Wang 已提交
38 39
  } while (0)

40
#define NEXT_TOKEN_KEEP_SQL(pSql, sToken, index) \
H
refact  
Hongze Cheng 已提交
41 42
  do {                                           \
    sToken = tStrGetToken(pSql, &index, false);  \
43 44
  } while (0)

45 46 47 48 49 50 51
#define NEXT_VALID_TOKEN(pSql, sToken)        \
  do {                                        \
    sToken.n = tGetToken(pSql, &sToken.type); \
    sToken.z = pSql;                          \
    pSql += sToken.n;                         \
  } while (TK_NK_SPACE == sToken.type)

52 53 54 55 56 57
typedef struct SInsertParseBaseContext {
  SParseContext* pComCxt;
  char*          pSql;
  SMsgBuf        msg;
} SInsertParseBaseContext;

58
typedef struct SInsertParseContext {
X
Xiaoyu Wang 已提交
59 60 61 62 63 64 65 66 67 68
  SParseContext*     pComCxt;             // input
  char*              pSql;                // input
  SMsgBuf            msg;                 // input
  STableMeta*        pTableMeta;          // each table
  SParsedDataColInfo tags;                // each table
  SVCreateTbReq      createTblReq;        // each table
  SHashObj*          pVgroupsHashObj;     // global
  SHashObj*          pTableBlockHashObj;  // global
  SHashObj*          pSubTableHashObj;    // global
  SArray*            pVgDataBlocks;       // global
X
Xiaoyu Wang 已提交
69
  SHashObj*          pTableNameHashObj;   // global
D
dapan1121 已提交
70
  SHashObj*          pDbFNameHashObj;     // global
X
Xiaoyu Wang 已提交
71
  int32_t            totalNum;
X
Xiaoyu Wang 已提交
72
  SVnodeModifOpStmt* pOutput;
X
Xiaoyu Wang 已提交
73
  SStmtCallback*     pStmtCb;
74
  SParseMetaCache*   pMetaCache;
wmmhello's avatar
wmmhello 已提交
75
  char               sTableName[TSDB_TABLE_NAME_LEN];
X
Xiaoyu Wang 已提交
76 77 78
  char               tmpTokenBuf[TSDB_MAX_BYTES_PER_ROW];
  int64_t            memElapsed;
  int64_t            parRowElapsed;
79 80
} SInsertParseContext;

81 82 83 84 85 86 87
typedef struct SInsertParseSyntaxCxt {
  SParseContext*   pComCxt;
  char*            pSql;
  SMsgBuf          msg;
  SParseMetaCache* pMetaCache;
} SInsertParseSyntaxCxt;

H
refact  
Hongze Cheng 已提交
88
typedef int32_t (*_row_append_fn_t)(SMsgBuf* pMsgBuf, const void* value, int32_t len, void* param);
X
Xiaoyu Wang 已提交
89 90 91 92

static uint8_t TRUE_VALUE = (uint8_t)TSDB_TRUE;
static uint8_t FALSE_VALUE = (uint8_t)TSDB_FALSE;

D
stmt  
dapan1121 已提交
93
typedef struct SKvParam {
C
Cary Xu 已提交
94
  int16_t  pos;
C
Cary Xu 已提交
95
  SArray*  pTagVals;
C
Cary Xu 已提交
96 97
  SSchema* schema;
  char     buf[TSDB_MAX_TAGS_LEN];
D
stmt  
dapan1121 已提交
98 99 100 101 102 103 104 105 106
} SKvParam;

typedef struct SMemParam {
  SRowBuilder* rb;
  SSchema*     schema;
  int32_t      toffset;
  col_id_t     colIdx;
} SMemParam;

X
Xiaoyu Wang 已提交
107 108 109
#define CHECK_CODE(expr)             \
  do {                               \
    int32_t code = expr;             \
D
stmt  
dapan1121 已提交
110
    if (TSDB_CODE_SUCCESS != code) { \
X
Xiaoyu Wang 已提交
111 112
      return code;                   \
    }                                \
D
stmt  
dapan1121 已提交
113 114
  } while (0)

115
static int32_t skipInsertInto(char** pSql, SMsgBuf* pMsg) {
116
  SToken sToken;
117
  NEXT_TOKEN(*pSql, sToken);
118
  if (TK_INSERT != sToken.type && TK_IMPORT != sToken.type) {
119
    return buildSyntaxErrMsg(pMsg, "keyword INSERT is expected", sToken.z);
120
  }
121
  NEXT_TOKEN(*pSql, sToken);
122
  if (TK_INTO != sToken.type) {
123
    return buildSyntaxErrMsg(pMsg, "keyword INTO is expected", sToken.z);
124 125 126 127
  }
  return TSDB_CODE_SUCCESS;
}

128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
static char* tableNameGetPosition(SToken* pToken, char target) {
  bool inEscape = false;
  bool inQuote = false;
  char quotaStr = 0;

  for (uint32_t i = 0; i < pToken->n; ++i) {
    if (*(pToken->z + i) == target && (!inEscape) && (!inQuote)) {
      return pToken->z + i;
    }

    if (*(pToken->z + i) == TS_ESCAPE_CHAR) {
      if (!inQuote) {
        inEscape = !inEscape;
      }
    }

    if (*(pToken->z + i) == '\'' || *(pToken->z + i) == '"') {
      if (!inEscape) {
        if (!inQuote) {
          quotaStr = *(pToken->z + i);
          inQuote = !inQuote;
        } else if (quotaStr == *(pToken->z + i)) {
          inQuote = !inQuote;
        }
      }
    }
  }

  return NULL;
}

D
stmt  
dapan1121 已提交
159
static int32_t createSName(SName* pName, SToken* pTableName, int32_t acctId, const char* dbName, SMsgBuf* pMsgBuf) {
X
Xiaoyu Wang 已提交
160 161 162
  const char* msg1 = "name too long";
  const char* msg2 = "invalid database name";
  const char* msg3 = "db is not specified";
163
  const char* msg4 = "invalid table name";
X
Xiaoyu Wang 已提交
164

H
refact  
Hongze Cheng 已提交
165
  int32_t code = TSDB_CODE_SUCCESS;
166
  char*   p = tableNameGetPosition(pTableName, TS_PATH_DELIMITER[0]);
X
Xiaoyu Wang 已提交
167

H
refact  
Hongze Cheng 已提交
168
  if (p != NULL) {  // db has been specified in sql string so we ignore current db path
X
Xiaoyu Wang 已提交
169 170 171
    assert(*p == TS_PATH_DELIMITER[0]);

    int32_t dbLen = p - pTableName->z;
X
Xiaoyu Wang 已提交
172 173 174 175
    if (dbLen <= 0) {
      return buildInvalidOperationMsg(pMsgBuf, msg2);
    }
    char name[TSDB_DB_FNAME_LEN] = {0};
X
Xiaoyu Wang 已提交
176
    strncpy(name, pTableName->z, dbLen);
177
    int32_t actualDbLen = strdequote(name);
X
Xiaoyu Wang 已提交
178

179
    code = tNameSetDbName(pName, acctId, name, actualDbLen);
X
Xiaoyu Wang 已提交
180 181 182 183 184
    if (code != TSDB_CODE_SUCCESS) {
      return buildInvalidOperationMsg(pMsgBuf, msg1);
    }

    int32_t tbLen = pTableName->n - dbLen - 1;
185 186 187 188
    if (tbLen <= 0) {
      return buildInvalidOperationMsg(pMsgBuf, msg4);
    }

189
    char tbname[TSDB_TABLE_FNAME_LEN] = {0};
X
Xiaoyu Wang 已提交
190
    strncpy(tbname, p + 1, tbLen);
H
refact  
Hongze Cheng 已提交
191
    /*tbLen = */ strdequote(tbname);
X
Xiaoyu Wang 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207

    code = tNameFromString(pName, tbname, T_NAME_TABLE);
    if (code != 0) {
      return buildInvalidOperationMsg(pMsgBuf, msg1);
    }
  } else {  // get current DB name first, and then set it into path
    if (pTableName->n >= TSDB_TABLE_NAME_LEN) {
      return buildInvalidOperationMsg(pMsgBuf, msg1);
    }

    assert(pTableName->n < TSDB_TABLE_FNAME_LEN);

    char name[TSDB_TABLE_FNAME_LEN] = {0};
    strncpy(name, pTableName->z, pTableName->n);
    strdequote(name);

D
stmt  
dapan1121 已提交
208
    if (dbName == NULL) {
X
Xiaoyu Wang 已提交
209 210 211
      return buildInvalidOperationMsg(pMsgBuf, msg3);
    }

D
stmt  
dapan1121 已提交
212
    code = tNameSetDbName(pName, acctId, dbName, strlen(dbName));
X
Xiaoyu Wang 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226
    if (code != TSDB_CODE_SUCCESS) {
      code = buildInvalidOperationMsg(pMsgBuf, msg2);
      return code;
    }

    code = tNameFromString(pName, name, T_NAME_TABLE);
    if (code != 0) {
      code = buildInvalidOperationMsg(pMsgBuf, msg1);
    }
  }

  return code;
}

227 228
static int32_t checkAuth(SInsertParseContext* pCxt, char* pDbFname, bool* pPass) {
  SParseContext* pBasicCtx = pCxt->pComCxt;
X
Xiaoyu Wang 已提交
229
  if (pBasicCtx->async) {
230 231
    return getUserAuthFromCache(pCxt->pMetaCache, pBasicCtx->pUser, pDbFname, AUTH_TYPE_WRITE, pPass);
  }
X
Xiaoyu Wang 已提交
232
  SRequestConnInfo conn = {.pTrans = pBasicCtx->pTransporter,
D
dapan1121 已提交
233 234 235 236 237
                           .requestId = pBasicCtx->requestId,
                           .requestObjRefId = pBasicCtx->requestRid,
                           .mgmtEps = pBasicCtx->mgmtEpSet};

  return catalogChkAuth(pBasicCtx->pCatalog, &conn, pBasicCtx->pUser, pDbFname, AUTH_TYPE_WRITE, pPass);
238 239
}

X
Xiaoyu Wang 已提交
240 241
static int32_t getTableSchema(SInsertParseContext* pCxt, int32_t tbNo, SName* pTbName, bool isStb,
                              STableMeta** pTableMeta) {
242
  SParseContext* pBasicCtx = pCxt->pComCxt;
X
Xiaoyu Wang 已提交
243
  if (pBasicCtx->async) {
X
Xiaoyu Wang 已提交
244
    return getTableMetaFromCacheForInsert(pBasicCtx->pTableMetaPos, pCxt->pMetaCache, tbNo, pTableMeta);
245
  }
X
Xiaoyu Wang 已提交
246
  SRequestConnInfo conn = {.pTrans = pBasicCtx->pTransporter,
D
dapan1121 已提交
247 248 249
                           .requestId = pBasicCtx->requestId,
                           .requestObjRefId = pBasicCtx->requestRid,
                           .mgmtEps = pBasicCtx->mgmtEpSet};
X
Xiaoyu Wang 已提交
250

251
  if (isStb) {
D
dapan1121 已提交
252
    return catalogGetSTableMeta(pBasicCtx->pCatalog, &conn, pTbName, pTableMeta);
253
  }
D
dapan1121 已提交
254
  return catalogGetTableMeta(pBasicCtx->pCatalog, &conn, pTbName, pTableMeta);
255 256
}

X
Xiaoyu Wang 已提交
257
static int32_t getTableVgroup(SInsertParseContext* pCxt, int32_t tbNo, SName* pTbName, SVgroupInfo* pVg) {
H
Haojun Liao 已提交
258
  SParseContext* pBasicCtx = pCxt->pComCxt;
X
Xiaoyu Wang 已提交
259
  if (pBasicCtx->async) {
X
Xiaoyu Wang 已提交
260
    return getTableVgroupFromCacheForInsert(pBasicCtx->pTableVgroupPos, pCxt->pMetaCache, tbNo, pVg);
261
  }
X
Xiaoyu Wang 已提交
262
  SRequestConnInfo conn = {.pTrans = pBasicCtx->pTransporter,
D
dapan1121 已提交
263 264 265 266
                           .requestId = pBasicCtx->requestId,
                           .requestObjRefId = pBasicCtx->requestRid,
                           .mgmtEps = pBasicCtx->mgmtEpSet};
  return catalogGetTableHashVgroup(pBasicCtx->pCatalog, &conn, pTbName, pVg);
267
}
D
dapan 已提交
268

269
static int32_t getTableMetaImpl(SInsertParseContext* pCxt, int32_t tbNo, SName* name, bool isStb) {
X
Xiaoyu Wang 已提交
270
  CHECK_CODE(getTableSchema(pCxt, tbNo, name, isStb, &pCxt->pTableMeta));
271
  if (!isStb) {
X
Xiaoyu Wang 已提交
272
    SVgroupInfo vg;
X
Xiaoyu Wang 已提交
273
    CHECK_CODE(getTableVgroup(pCxt, tbNo, name, &vg));
X
Xiaoyu Wang 已提交
274
    CHECK_CODE(taosHashPut(pCxt->pVgroupsHashObj, (const char*)&vg.vgId, sizeof(vg.vgId), (char*)&vg, sizeof(vg)));
D
stmt  
dapan1121 已提交
275
  }
H
refact  
Hongze Cheng 已提交
276
  return TSDB_CODE_SUCCESS;
D
stmt  
dapan1121 已提交
277 278
}

279 280
static int32_t getTableMeta(SInsertParseContext* pCxt, int32_t tbNo, SName* name) {
  return getTableMetaImpl(pCxt, tbNo, name, false);
X
Xiaoyu Wang 已提交
281
}
D
stmt  
dapan1121 已提交
282

283 284
static int32_t getSTableMeta(SInsertParseContext* pCxt, int32_t tbNo, SName* name) {
  return getTableMetaImpl(pCxt, tbNo, name, true);
X
Xiaoyu Wang 已提交
285
}
D
stmt  
dapan1121 已提交
286

X
Xiaoyu Wang 已提交
287 288 289 290 291
static int32_t getDBCfg(SInsertParseContext* pCxt, const char* pDbFName, SDbCfgInfo* pInfo) {
  SParseContext* pBasicCtx = pCxt->pComCxt;
  if (pBasicCtx->async) {
    CHECK_CODE(getDbCfgFromCache(pCxt->pMetaCache, pDbFName, pInfo));
  } else {
X
Xiaoyu Wang 已提交
292
    SRequestConnInfo conn = {.pTrans = pBasicCtx->pTransporter,
D
dapan1121 已提交
293 294 295 296
                             .requestId = pBasicCtx->requestId,
                             .requestObjRefId = pBasicCtx->requestRid,
                             .mgmtEps = pBasicCtx->mgmtEpSet};
    CHECK_CODE(catalogGetDBCfg(pBasicCtx->pCatalog, &conn, pDbFName, pInfo));
X
Xiaoyu Wang 已提交
297 298 299 300
  }
  return TSDB_CODE_SUCCESS;
}

301 302 303 304 305 306 307 308 309 310
static int32_t findCol(SToken* pColname, int32_t start, int32_t end, SSchema* pSchema) {
  while (start < end) {
    if (strlen(pSchema[start].name) == pColname->n && strncmp(pColname->z, pSchema[start].name, pColname->n) == 0) {
      return start;
    }
    ++start;
  }
  return -1;
}

D
dapan1121 已提交
311
static void buildMsgHeader(STableDataBlocks* src, SVgDataBlocks* blocks) {
H
refact  
Hongze Cheng 已提交
312 313 314 315 316 317 318 319 320
  SSubmitReq* submit = (SSubmitReq*)blocks->pData;
  submit->header.vgId = htonl(blocks->vg.vgId);
  submit->header.contLen = htonl(blocks->size);
  submit->length = submit->header.contLen;
  submit->numOfBlocks = htonl(blocks->numOfTables);
  SSubmitBlk* blk = (SSubmitBlk*)(submit + 1);
  int32_t     numOfBlocks = blocks->numOfTables;
  while (numOfBlocks--) {
    int32_t dataLen = blk->dataLen;
321
    int32_t schemaLen = blk->schemaLen;
H
refact  
Hongze Cheng 已提交
322 323 324 325 326
    blk->uid = htobe64(blk->uid);
    blk->suid = htobe64(blk->suid);
    blk->sversion = htonl(blk->sversion);
    blk->dataLen = htonl(blk->dataLen);
    blk->schemaLen = htonl(blk->schemaLen);
327
    blk->numOfRows = htonl(blk->numOfRows);
328
    blk = (SSubmitBlk*)(blk->data + schemaLen + dataLen);
H
refact  
Hongze Cheng 已提交
329
  }
330 331 332 333 334 335 336 337 338 339
}

static int32_t buildOutput(SInsertParseContext* pCxt) {
  size_t numOfVg = taosArrayGetSize(pCxt->pVgDataBlocks);
  pCxt->pOutput->pDataBlocks = taosArrayInit(numOfVg, POINTER_BYTES);
  if (NULL == pCxt->pOutput->pDataBlocks) {
    return TSDB_CODE_TSC_OUT_OF_MEMORY;
  }
  for (size_t i = 0; i < numOfVg; ++i) {
    STableDataBlocks* src = taosArrayGetP(pCxt->pVgDataBlocks, i);
H
refact  
Hongze Cheng 已提交
340
    SVgDataBlocks*    dst = taosMemoryCalloc(1, sizeof(SVgDataBlocks));
341 342 343
    if (NULL == dst) {
      return TSDB_CODE_TSC_OUT_OF_MEMORY;
    }
H
Haojun Liao 已提交
344
    taosHashGetDup(pCxt->pVgroupsHashObj, (const char*)&src->vgId, sizeof(src->vgId), &dst->vg);
345 346
    dst->numOfTables = src->numOfTables;
    dst->size = src->size;
wafwerar's avatar
wafwerar 已提交
347
    TSWAP(dst->pData, src->pData);
D
dapan1121 已提交
348
    buildMsgHeader(src, dst);
349 350 351 352 353
    taosArrayPush(pCxt->pOutput->pDataBlocks, &dst);
  }
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
354
int32_t checkTimestamp(STableDataBlocks* pDataBlocks, const char* start) {
355 356 357 358 359
  // once the data block is disordered, we do NOT keep previous timestamp any more
  if (!pDataBlocks->ordered) {
    return TSDB_CODE_SUCCESS;
  }

H
refact  
Hongze Cheng 已提交
360
  TSKEY k = *(TSKEY*)start;
361
  if (k <= pDataBlocks->prevTS) {
362 363 364 365 366 367 368
    pDataBlocks->ordered = false;
  }

  pDataBlocks->prevTS = k;
  return TSDB_CODE_SUCCESS;
}

H
refact  
Hongze Cheng 已提交
369 370 371 372 373 374
static int parseTime(char** end, SToken* pToken, int16_t timePrec, int64_t* time, SMsgBuf* pMsgBuf) {
  int32_t index = 0;
  SToken  sToken;
  int64_t interval;
  int64_t ts = 0;
  char*   pTokenEnd = *end;
375 376

  if (pToken->type == TK_NOW) {
377
    ts = taosGetTimestamp(timePrec);
378 379
  } else if (pToken->type == TK_TODAY) {
    ts = taosGetTimestampToday(timePrec);
380
  } else if (pToken->type == TK_NK_INTEGER) {
X
Xiaoyu Wang 已提交
381
    toInteger(pToken->z, pToken->n, 10, &ts);
H
refact  
Hongze Cheng 已提交
382
  } else {  // parse the RFC-3339/ISO-8601 timestamp format string
S
os env  
Shengliang Guan 已提交
383
    if (taosParseTime(pToken->z, time, pToken->n, timePrec, tsDaylight) != TSDB_CODE_SUCCESS) {
384
      return buildSyntaxErrMsg(pMsgBuf, "invalid timestamp format", pToken->z);
385 386 387 388 389 390 391
    }

    return TSDB_CODE_SUCCESS;
  }

  for (int k = pToken->n; pToken->z[k] != '\0'; k++) {
    if (pToken->z[k] == ' ' || pToken->z[k] == '\t') continue;
H
refact  
Hongze Cheng 已提交
392
    if (pToken->z[k] == '(' && pToken->z[k + 1] == ')') {  // for insert NOW()/TODAY()
393 394 395 396
      *end = pTokenEnd = &pToken->z[k + 2];
      k++;
      continue;
    }
397
    if (pToken->z[k] == ',') {
398 399
      *end = pTokenEnd;
      *time = ts;
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
      return 0;
    }

    break;
  }

  /*
   * time expression:
   * e.g., now+12a, now-5h
   */
  SToken valueToken;
  index = 0;
  sToken = tStrGetToken(pTokenEnd, &index, false);
  pTokenEnd += index;

X
Xiaoyu Wang 已提交
415
  if (sToken.type == TK_NK_MINUS || sToken.type == TK_NK_PLUS) {
416 417 418 419 420
    index = 0;
    valueToken = tStrGetToken(pTokenEnd, &index, false);
    pTokenEnd += index;

    if (valueToken.n < 2) {
421
      return buildSyntaxErrMsg(pMsgBuf, "value expected in timestamp", sToken.z);
422 423 424 425 426 427 428
    }

    char unit = 0;
    if (parseAbsoluteDuration(valueToken.z, valueToken.n, &interval, &unit, timePrec) != TSDB_CODE_SUCCESS) {
      return TSDB_CODE_TSC_INVALID_OPERATION;
    }

429
    if (sToken.type == TK_NK_PLUS) {
430
      ts += interval;
431
    } else {
432
      ts = ts - interval;
433 434
    }

435
    *end = pTokenEnd;
436 437
  }

438
  *time = ts;
439 440
  return TSDB_CODE_SUCCESS;
}
441

wmmhello's avatar
wmmhello 已提交
442
static FORCE_INLINE int32_t checkAndTrimValue(SToken* pToken, char* tmpTokenBuf, SMsgBuf* pMsgBuf) {
H
refact  
Hongze Cheng 已提交
443 444 445 446
  if ((pToken->type != TK_NOW && pToken->type != TK_TODAY && pToken->type != TK_NK_INTEGER &&
       pToken->type != TK_NK_STRING && pToken->type != TK_NK_FLOAT && pToken->type != TK_NK_BOOL &&
       pToken->type != TK_NULL && pToken->type != TK_NK_HEX && pToken->type != TK_NK_OCT &&
       pToken->type != TK_NK_BIN) ||
447
      (pToken->n == 0) || (pToken->type == TK_NK_RP)) {
X
Xiaoyu Wang 已提交
448 449 450 451
    return buildSyntaxErrMsg(pMsgBuf, "invalid data or symbol", pToken->z);
  }

  // Remove quotation marks
X
Xiaoyu Wang 已提交
452
  if (TK_NK_STRING == pToken->type) {
X
Xiaoyu Wang 已提交
453 454 455 456
    if (pToken->n >= TSDB_MAX_BYTES_PER_ROW) {
      return buildSyntaxErrMsg(pMsgBuf, "too long string", pToken->z);
    }

457
    int32_t len = trimString(pToken->z, pToken->n, tmpTokenBuf, TSDB_MAX_BYTES_PER_ROW);
X
Xiaoyu Wang 已提交
458
    pToken->z = tmpTokenBuf;
459
    pToken->n = len;
X
Xiaoyu Wang 已提交
460 461 462 463 464
  }

  return TSDB_CODE_SUCCESS;
}

H
refact  
Hongze Cheng 已提交
465
static bool isNullStr(SToken* pToken) {
466
  return ((pToken->type == TK_NK_STRING) && (strlen(TSDB_DATA_NULL_STR_L) == pToken->n) &&
467
          (strncasecmp(TSDB_DATA_NULL_STR_L, pToken->z, pToken->n) == 0));
X
Xiaoyu Wang 已提交
468 469
}

470 471
static bool isNullValue(int8_t dataType, SToken* pToken) {
  return TK_NULL == pToken->type || (!IS_STR_DATA_TYPE(dataType) && isNullStr(pToken));
X
Xiaoyu Wang 已提交
472 473
}

H
refact  
Hongze Cheng 已提交
474
static FORCE_INLINE int32_t toDouble(SToken* pToken, double* value, char** endPtr) {
X
Xiaoyu Wang 已提交
475
  errno = 0;
wafwerar's avatar
wafwerar 已提交
476
  *value = taosStr2Double(pToken->z, endPtr);
X
Xiaoyu Wang 已提交
477 478 479

  // not a valid integer number, return error
  if ((*endPtr - pToken->z) != pToken->n) {
480
    return TK_NK_ILLEGAL;
X
Xiaoyu Wang 已提交
481 482 483 484 485
  }

  return pToken->type;
}

H
refact  
Hongze Cheng 已提交
486 487
static int32_t parseValueToken(char** end, SToken* pToken, SSchema* pSchema, int16_t timePrec, char* tmpTokenBuf,
                               _row_append_fn_t func, void* param, SMsgBuf* pMsgBuf) {
X
Xiaoyu Wang 已提交
488 489 490
  int64_t  iv;
  uint64_t uv;
  char*    endptr = NULL;
X
Xiaoyu Wang 已提交
491

wmmhello's avatar
wmmhello 已提交
492
  int32_t code = checkAndTrimValue(pToken, tmpTokenBuf, pMsgBuf);
X
Xiaoyu Wang 已提交
493 494 495 496
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

497
  if (isNullValue(pSchema->type, pToken)) {
X
Xiaoyu Wang 已提交
498
    if (TSDB_DATA_TYPE_TIMESTAMP == pSchema->type && PRIMARYKEY_TIMESTAMP_COL_ID == pSchema->colId) {
D
stmt  
dapan1121 已提交
499
      return buildSyntaxErrMsg(pMsgBuf, "primary timestamp should not be null", pToken->z);
X
Xiaoyu Wang 已提交
500 501
    }

X
Xiaoyu Wang 已提交
502
    return func(pMsgBuf, NULL, 0, param);
X
Xiaoyu Wang 已提交
503 504
  }

X
Xiaoyu Wang 已提交
505 506 507 508
  if (IS_NUMERIC_TYPE(pSchema->type) && pToken->n == 0) {
    return buildSyntaxErrMsg(pMsgBuf, "invalid numeric data", pToken->z);
  }

X
Xiaoyu Wang 已提交
509 510
  switch (pSchema->type) {
    case TSDB_DATA_TYPE_BOOL: {
511
      if ((pToken->type == TK_NK_BOOL || pToken->type == TK_NK_STRING) && (pToken->n != 0)) {
X
Xiaoyu Wang 已提交
512
        if (strncmp(pToken->z, "true", pToken->n) == 0) {
X
Xiaoyu Wang 已提交
513
          return func(pMsgBuf, &TRUE_VALUE, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
514
        } else if (strncmp(pToken->z, "false", pToken->n) == 0) {
X
Xiaoyu Wang 已提交
515
          return func(pMsgBuf, &FALSE_VALUE, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
516 517 518
        } else {
          return buildSyntaxErrMsg(pMsgBuf, "invalid bool data", pToken->z);
        }
519
      } else if (pToken->type == TK_NK_INTEGER) {
520 521
        return func(pMsgBuf, ((taosStr2Int64(pToken->z, NULL, 10) == 0) ? &FALSE_VALUE : &TRUE_VALUE), pSchema->bytes,
                    param);
522
      } else if (pToken->type == TK_NK_FLOAT) {
523 524
        return func(pMsgBuf, ((taosStr2Double(pToken->z, NULL) == 0) ? &FALSE_VALUE : &TRUE_VALUE), pSchema->bytes,
                    param);
X
Xiaoyu Wang 已提交
525 526 527 528 529 530
      } else {
        return buildSyntaxErrMsg(pMsgBuf, "invalid bool data", pToken->z);
      }
    }

    case TSDB_DATA_TYPE_TINYINT: {
X
Xiaoyu Wang 已提交
531
      if (TSDB_CODE_SUCCESS != toInteger(pToken->z, pToken->n, 10, &iv)) {
X
Xiaoyu Wang 已提交
532 533 534 535 536 537
        return buildSyntaxErrMsg(pMsgBuf, "invalid tinyint data", pToken->z);
      } else if (!IS_VALID_TINYINT(iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "tinyint data overflow", pToken->z);
      }

      uint8_t tmpVal = (uint8_t)iv;
X
Xiaoyu Wang 已提交
538
      return func(pMsgBuf, &tmpVal, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
539 540
    }

H
refact  
Hongze Cheng 已提交
541
    case TSDB_DATA_TYPE_UTINYINT: {
X
Xiaoyu Wang 已提交
542
      if (TSDB_CODE_SUCCESS != toUInteger(pToken->z, pToken->n, 10, &uv)) {
X
Xiaoyu Wang 已提交
543
        return buildSyntaxErrMsg(pMsgBuf, "invalid unsigned tinyint data", pToken->z);
X
Xiaoyu Wang 已提交
544
      } else if (!IS_VALID_UTINYINT(uv)) {
X
Xiaoyu Wang 已提交
545 546
        return buildSyntaxErrMsg(pMsgBuf, "unsigned tinyint data overflow", pToken->z);
      }
X
Xiaoyu Wang 已提交
547
      uint8_t tmpVal = (uint8_t)uv;
X
Xiaoyu Wang 已提交
548
      return func(pMsgBuf, &tmpVal, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
549 550 551
    }

    case TSDB_DATA_TYPE_SMALLINT: {
X
Xiaoyu Wang 已提交
552
      if (TSDB_CODE_SUCCESS != toInteger(pToken->z, pToken->n, 10, &iv)) {
X
Xiaoyu Wang 已提交
553 554 555 556 557
        return buildSyntaxErrMsg(pMsgBuf, "invalid smallint data", pToken->z);
      } else if (!IS_VALID_SMALLINT(iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "smallint data overflow", pToken->z);
      }
      int16_t tmpVal = (int16_t)iv;
X
Xiaoyu Wang 已提交
558
      return func(pMsgBuf, &tmpVal, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
559 560 561
    }

    case TSDB_DATA_TYPE_USMALLINT: {
X
Xiaoyu Wang 已提交
562
      if (TSDB_CODE_SUCCESS != toUInteger(pToken->z, pToken->n, 10, &uv)) {
X
Xiaoyu Wang 已提交
563
        return buildSyntaxErrMsg(pMsgBuf, "invalid unsigned smallint data", pToken->z);
X
Xiaoyu Wang 已提交
564
      } else if (!IS_VALID_USMALLINT(uv)) {
X
Xiaoyu Wang 已提交
565 566
        return buildSyntaxErrMsg(pMsgBuf, "unsigned smallint data overflow", pToken->z);
      }
X
Xiaoyu Wang 已提交
567
      uint16_t tmpVal = (uint16_t)uv;
X
Xiaoyu Wang 已提交
568
      return func(pMsgBuf, &tmpVal, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
569 570 571
    }

    case TSDB_DATA_TYPE_INT: {
X
Xiaoyu Wang 已提交
572
      if (TSDB_CODE_SUCCESS != toInteger(pToken->z, pToken->n, 10, &iv)) {
X
Xiaoyu Wang 已提交
573 574 575 576 577
        return buildSyntaxErrMsg(pMsgBuf, "invalid int data", pToken->z);
      } else if (!IS_VALID_INT(iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "int data overflow", pToken->z);
      }
      int32_t tmpVal = (int32_t)iv;
X
Xiaoyu Wang 已提交
578
      return func(pMsgBuf, &tmpVal, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
579 580 581
    }

    case TSDB_DATA_TYPE_UINT: {
X
Xiaoyu Wang 已提交
582
      if (TSDB_CODE_SUCCESS != toUInteger(pToken->z, pToken->n, 10, &uv)) {
X
Xiaoyu Wang 已提交
583
        return buildSyntaxErrMsg(pMsgBuf, "invalid unsigned int data", pToken->z);
X
Xiaoyu Wang 已提交
584
      } else if (!IS_VALID_UINT(uv)) {
X
Xiaoyu Wang 已提交
585 586
        return buildSyntaxErrMsg(pMsgBuf, "unsigned int data overflow", pToken->z);
      }
X
Xiaoyu Wang 已提交
587
      uint32_t tmpVal = (uint32_t)uv;
X
Xiaoyu Wang 已提交
588
      return func(pMsgBuf, &tmpVal, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
589 590 591
    }

    case TSDB_DATA_TYPE_BIGINT: {
X
Xiaoyu Wang 已提交
592
      if (TSDB_CODE_SUCCESS != toInteger(pToken->z, pToken->n, 10, &iv)) {
X
Xiaoyu Wang 已提交
593 594 595 596
        return buildSyntaxErrMsg(pMsgBuf, "invalid bigint data", pToken->z);
      } else if (!IS_VALID_BIGINT(iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "bigint data overflow", pToken->z);
      }
X
Xiaoyu Wang 已提交
597
      return func(pMsgBuf, &iv, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
598 599 600
    }

    case TSDB_DATA_TYPE_UBIGINT: {
X
Xiaoyu Wang 已提交
601
      if (TSDB_CODE_SUCCESS != toUInteger(pToken->z, pToken->n, 10, &uv)) {
X
Xiaoyu Wang 已提交
602
        return buildSyntaxErrMsg(pMsgBuf, "invalid unsigned bigint data", pToken->z);
X
Xiaoyu Wang 已提交
603
      } else if (!IS_VALID_UBIGINT(uv)) {
X
Xiaoyu Wang 已提交
604 605
        return buildSyntaxErrMsg(pMsgBuf, "unsigned bigint data overflow", pToken->z);
      }
X
Xiaoyu Wang 已提交
606
      return func(pMsgBuf, &uv, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
607 608 609 610
    }

    case TSDB_DATA_TYPE_FLOAT: {
      double dv;
611
      if (TK_NK_ILLEGAL == toDouble(pToken, &dv, &endptr)) {
X
Xiaoyu Wang 已提交
612 613
        return buildSyntaxErrMsg(pMsgBuf, "illegal float data", pToken->z);
      }
H
refact  
Hongze Cheng 已提交
614 615
      if (((dv == HUGE_VAL || dv == -HUGE_VAL) && errno == ERANGE) || dv > FLT_MAX || dv < -FLT_MAX || isinf(dv) ||
          isnan(dv)) {
X
Xiaoyu Wang 已提交
616 617 618
        return buildSyntaxErrMsg(pMsgBuf, "illegal float data", pToken->z);
      }
      float tmpVal = (float)dv;
X
Xiaoyu Wang 已提交
619
      return func(pMsgBuf, &tmpVal, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
620 621 622 623
    }

    case TSDB_DATA_TYPE_DOUBLE: {
      double dv;
624
      if (TK_NK_ILLEGAL == toDouble(pToken, &dv, &endptr)) {
X
Xiaoyu Wang 已提交
625 626 627 628 629
        return buildSyntaxErrMsg(pMsgBuf, "illegal double data", pToken->z);
      }
      if (((dv == HUGE_VAL || dv == -HUGE_VAL) && errno == ERANGE) || isinf(dv) || isnan(dv)) {
        return buildSyntaxErrMsg(pMsgBuf, "illegal double data", pToken->z);
      }
X
Xiaoyu Wang 已提交
630
      return func(pMsgBuf, &dv, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
631 632 633 634 635
    }

    case TSDB_DATA_TYPE_BINARY: {
      // Too long values will raise the invalid sql error message
      if (pToken->n + VARSTR_HEADER_SIZE > pSchema->bytes) {
D
dapan1121 已提交
636
        return generateSyntaxErrMsg(pMsgBuf, TSDB_CODE_PAR_VALUE_TOO_LONG, pSchema->name);
X
Xiaoyu Wang 已提交
637 638
      }

X
Xiaoyu Wang 已提交
639
      return func(pMsgBuf, pToken->z, pToken->n, param);
X
Xiaoyu Wang 已提交
640 641 642
    }

    case TSDB_DATA_TYPE_NCHAR: {
X
Xiaoyu Wang 已提交
643
      return func(pMsgBuf, pToken->z, pToken->n, param);
X
Xiaoyu Wang 已提交
644
    }
645
    case TSDB_DATA_TYPE_JSON: {
X
Xiaoyu Wang 已提交
646
      if (pToken->n > (TSDB_MAX_JSON_TAG_LEN - VARSTR_HEADER_SIZE) / TSDB_NCHAR_SIZE) {
647 648 649 650
        return buildSyntaxErrMsg(pMsgBuf, "json string too long than 4095", pToken->z);
      }
      return func(pMsgBuf, pToken->z, pToken->n, param);
    }
X
Xiaoyu Wang 已提交
651 652 653 654 655 656
    case TSDB_DATA_TYPE_TIMESTAMP: {
      int64_t tmpVal;
      if (parseTime(end, pToken, timePrec, &tmpVal, pMsgBuf) != TSDB_CODE_SUCCESS) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid timestamp", pToken->z);
      }

X
Xiaoyu Wang 已提交
657
      return func(pMsgBuf, &tmpVal, pSchema->bytes, param);
X
Xiaoyu Wang 已提交
658 659 660 661 662 663
    }
  }

  return TSDB_CODE_FAILED;
}

X
Xiaoyu Wang 已提交
664
static FORCE_INLINE int32_t MemRowAppend(SMsgBuf* pMsgBuf, const void* value, int32_t len, void* param) {
C
Cary Xu 已提交
665 666
  SMemParam*   pa = (SMemParam*)param;
  SRowBuilder* rb = pa->rb;
667 668 669 670 671 672

  if (value == NULL) {  // it is a null data
    tdAppendColValToRow(rb, pa->schema->colId, pa->schema->type, TD_VTYPE_NULL, value, false, pa->toffset, pa->colIdx);
    return TSDB_CODE_SUCCESS;
  }

673
  if (TSDB_DATA_TYPE_BINARY == pa->schema->type) {
C
Cary Xu 已提交
674
    const char* rowEnd = tdRowEnd(rb->pBuf);
675
    STR_WITH_SIZE_TO_VARSTR(rowEnd, value, len);
676
    tdAppendColValToRow(rb, pa->schema->colId, pa->schema->type, TD_VTYPE_NORM, rowEnd, false, pa->toffset, pa->colIdx);
677 678
  } else if (TSDB_DATA_TYPE_NCHAR == pa->schema->type) {
    // if the converted output len is over than pColumnModel->bytes, return error: 'Argument list too long'
C
Cary Xu 已提交
679 680
    int32_t     output = 0;
    const char* rowEnd = tdRowEnd(rb->pBuf);
wafwerar's avatar
wafwerar 已提交
681
    if (!taosMbsToUcs4(value, len, (TdUcs4*)varDataVal(rowEnd), pa->schema->bytes - VARSTR_HEADER_SIZE, &output)) {
D
dapan1121 已提交
682 683 684
      if (errno == E2BIG) {
        return generateSyntaxErrMsg(pMsgBuf, TSDB_CODE_PAR_VALUE_TOO_LONG, pa->schema->name);
      }
X
Xiaoyu Wang 已提交
685 686 687
      char buf[512] = {0};
      snprintf(buf, tListLen(buf), "%s", strerror(errno));
      return buildSyntaxErrMsg(pMsgBuf, buf, value);
688
    }
689
    varDataSetLen(rowEnd, output);
C
Cary Xu 已提交
690
    tdAppendColValToRow(rb, pa->schema->colId, pa->schema->type, TD_VTYPE_NORM, rowEnd, false, pa->toffset, pa->colIdx);
691
  } else {
692
    tdAppendColValToRow(rb, pa->schema->colId, pa->schema->type, TD_VTYPE_NORM, value, false, pa->toffset, pa->colIdx);
693
  }
694

695 696
  return TSDB_CODE_SUCCESS;
}
697 698 699

// pSql -> tag1_name, ...)
static int32_t parseBoundColumns(SInsertParseContext* pCxt, SParsedDataColInfo* pColList, SSchema* pSchema) {
C
Cary Xu 已提交
700
  col_id_t nCols = pColList->numOfCols;
701

H
refact  
Hongze Cheng 已提交
702
  pColList->numOfBound = 0;
C
Cary Xu 已提交
703
  pColList->boundNullLen = 0;
C
Cary Xu 已提交
704
  memset(pColList->boundColumns, 0, sizeof(col_id_t) * nCols);
C
Cary Xu 已提交
705
  for (col_id_t i = 0; i < nCols; ++i) {
706 707 708
    pColList->cols[i].valStat = VAL_STAT_NONE;
  }

H
refact  
Hongze Cheng 已提交
709 710
  SToken   sToken;
  bool     isOrdered = true;
C
Cary Xu 已提交
711
  col_id_t lastColIdx = -1;  // last column found
712 713 714
  while (1) {
    NEXT_TOKEN(pCxt->pSql, sToken);

715
    if (TK_NK_RP == sToken.type) {
716 717 718
      break;
    }

719 720 721 722 723
    char tmpTokenBuf[TSDB_COL_NAME_LEN + 2] = {0};  // used for deleting Escape character backstick(`)
    strncpy(tmpTokenBuf, sToken.z, sToken.n);
    sToken.z = tmpTokenBuf;
    sToken.n = strdequote(sToken.z);

C
Cary Xu 已提交
724 725
    col_id_t t = lastColIdx + 1;
    col_id_t index = findCol(&sToken, t, nCols, pSchema);
726 727 728 729 730
    if (index < 0 && t > 0) {
      index = findCol(&sToken, 0, t, pSchema);
      isOrdered = false;
    }
    if (index < 0) {
731
      return generateSyntaxErrMsg(&pCxt->msg, TSDB_CODE_PAR_INVALID_COLUMN, sToken.z);
732 733 734 735 736 737
    }
    if (pColList->cols[index].valStat == VAL_STAT_HAS) {
      return buildSyntaxErrMsg(&pCxt->msg, "duplicated column name", sToken.z);
    }
    lastColIdx = index;
    pColList->cols[index].valStat = VAL_STAT_HAS;
X
Xiaoyu Wang 已提交
738
    pColList->boundColumns[pColList->numOfBound] = index;
739
    ++pColList->numOfBound;
C
Cary Xu 已提交
740 741 742 743 744 745 746 747 748 749 750
    switch (pSchema[t].type) {
      case TSDB_DATA_TYPE_BINARY:
        pColList->boundNullLen += (sizeof(VarDataOffsetT) + VARSTR_HEADER_SIZE + CHAR_BYTES);
        break;
      case TSDB_DATA_TYPE_NCHAR:
        pColList->boundNullLen += (sizeof(VarDataOffsetT) + VARSTR_HEADER_SIZE + TSDB_NCHAR_SIZE);
        break;
      default:
        pColList->boundNullLen += TYPE_BYTES[pSchema[t].type];
        break;
    }
751 752 753 754 755
  }

  pColList->orderStatus = isOrdered ? ORDER_STATUS_ORDERED : ORDER_STATUS_DISORDERED;

  if (!isOrdered) {
wafwerar's avatar
wafwerar 已提交
756
    pColList->colIdxInfo = taosMemoryCalloc(pColList->numOfBound, sizeof(SBoundIdxInfo));
757 758 759 760
    if (NULL == pColList->colIdxInfo) {
      return TSDB_CODE_TSC_OUT_OF_MEMORY;
    }
    SBoundIdxInfo* pColIdx = pColList->colIdxInfo;
C
Cary Xu 已提交
761
    for (col_id_t i = 0; i < pColList->numOfBound; ++i) {
762
      pColIdx[i].schemaColIdx = pColList->boundColumns[i];
763 764
      pColIdx[i].boundIdx = i;
    }
wafwerar's avatar
wafwerar 已提交
765
    taosSort(pColIdx, pColList->numOfBound, sizeof(SBoundIdxInfo), schemaIdxCompar);
C
Cary Xu 已提交
766
    for (col_id_t i = 0; i < pColList->numOfBound; ++i) {
767 768
      pColIdx[i].finalIdx = i;
    }
wafwerar's avatar
wafwerar 已提交
769
    taosSort(pColIdx, pColList->numOfBound, sizeof(SBoundIdxInfo), boundIdxCompar);
770 771
  }

X
Xiaoyu Wang 已提交
772
  if (pColList->numOfCols > pColList->numOfBound) {
773 774 775
    memset(&pColList->boundColumns[pColList->numOfBound], 0,
           sizeof(col_id_t) * (pColList->numOfCols - pColList->numOfBound));
  }
776 777 778 779

  return TSDB_CODE_SUCCESS;
}

780 781
static void buildCreateTbReq(SVCreateTbReq* pTbReq, const char* tname, STag* pTag, int64_t suid, const char* sname,
                             SArray* tagName, uint8_t tagNum) {
wmmhello's avatar
wmmhello 已提交
782 783 784
  pTbReq->type = TD_CHILD_TABLE;
  pTbReq->name = strdup(tname);
  pTbReq->ctb.suid = suid;
785
  pTbReq->ctb.tagNum = tagNum;
786
  if (sname) pTbReq->ctb.stbName = strdup(sname);
wmmhello's avatar
wmmhello 已提交
787
  pTbReq->ctb.pTag = (uint8_t*)pTag;
wmmhello's avatar
wmmhello 已提交
788
  pTbReq->ctb.tagName = taosArrayDup(tagName);
789
  pTbReq->ttl = TSDB_DEFAULT_TABLE_TTL;
wmmhello's avatar
wmmhello 已提交
790
  pTbReq->commentLen = -1;
791

wmmhello's avatar
wmmhello 已提交
792 793
  return;
}
794

795 796
static int32_t parseTagToken(char** end, SToken* pToken, SSchema* pSchema, int16_t timePrec, STagVal* val,
                             SMsgBuf* pMsgBuf) {
wmmhello's avatar
wmmhello 已提交
797 798 799 800
  int64_t  iv;
  uint64_t uv;
  char*    endptr = NULL;

801
  if (isNullValue(pSchema->type, pToken)) {
wmmhello's avatar
wmmhello 已提交
802 803 804
    if (TSDB_DATA_TYPE_TIMESTAMP == pSchema->type && PRIMARYKEY_TIMESTAMP_COL_ID == pSchema->colId) {
      return buildSyntaxErrMsg(pMsgBuf, "primary timestamp should not be null", pToken->z);
    }
805 806 807 808

    return TSDB_CODE_SUCCESS;
  }

809
  //  strcpy(val->colName, pSchema->name);
wmmhello's avatar
wmmhello 已提交
810
  val->cid = pSchema->colId;
wmmhello's avatar
wmmhello 已提交
811
  val->type = pSchema->type;
C
Cary Xu 已提交
812

wmmhello's avatar
wmmhello 已提交
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
  switch (pSchema->type) {
    case TSDB_DATA_TYPE_BOOL: {
      if ((pToken->type == TK_NK_BOOL || pToken->type == TK_NK_STRING) && (pToken->n != 0)) {
        if (strncmp(pToken->z, "true", pToken->n) == 0) {
          *(int8_t*)(&val->i64) = TRUE_VALUE;
        } else if (strncmp(pToken->z, "false", pToken->n) == 0) {
          *(int8_t*)(&val->i64) = FALSE_VALUE;
        } else {
          return buildSyntaxErrMsg(pMsgBuf, "invalid bool data", pToken->z);
        }
      } else if (pToken->type == TK_NK_INTEGER) {
        *(int8_t*)(&val->i64) = ((taosStr2Int64(pToken->z, NULL, 10) == 0) ? FALSE_VALUE : TRUE_VALUE);
      } else if (pToken->type == TK_NK_FLOAT) {
        *(int8_t*)(&val->i64) = ((taosStr2Double(pToken->z, NULL) == 0) ? FALSE_VALUE : TRUE_VALUE);
      } else {
        return buildSyntaxErrMsg(pMsgBuf, "invalid bool data", pToken->z);
D
dapan1121 已提交
829
      }
wmmhello's avatar
wmmhello 已提交
830 831
      break;
    }
832

wmmhello's avatar
wmmhello 已提交
833 834 835 836 837
    case TSDB_DATA_TYPE_TINYINT: {
      if (TSDB_CODE_SUCCESS != toInteger(pToken->z, pToken->n, 10, &iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid tinyint data", pToken->z);
      } else if (!IS_VALID_TINYINT(iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "tinyint data overflow", pToken->z);
D
dapan1121 已提交
838
      }
wmmhello's avatar
wmmhello 已提交
839 840 841

      *(int8_t*)(&val->i64) = iv;
      break;
842 843
    }

wmmhello's avatar
wmmhello 已提交
844 845 846 847 848 849 850 851 852
    case TSDB_DATA_TYPE_UTINYINT: {
      if (TSDB_CODE_SUCCESS != toUInteger(pToken->z, pToken->n, 10, &uv)) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid unsigned tinyint data", pToken->z);
      } else if (!IS_VALID_UTINYINT(uv)) {
        return buildSyntaxErrMsg(pMsgBuf, "unsigned tinyint data overflow", pToken->z);
      }
      *(uint8_t*)(&val->i64) = uv;
      break;
    }
853

wmmhello's avatar
wmmhello 已提交
854 855 856 857 858 859 860 861 862
    case TSDB_DATA_TYPE_SMALLINT: {
      if (TSDB_CODE_SUCCESS != toInteger(pToken->z, pToken->n, 10, &iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid smallint data", pToken->z);
      } else if (!IS_VALID_SMALLINT(iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "smallint data overflow", pToken->z);
      }
      *(int16_t*)(&val->i64) = iv;
      break;
    }
863

wmmhello's avatar
wmmhello 已提交
864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
    case TSDB_DATA_TYPE_USMALLINT: {
      if (TSDB_CODE_SUCCESS != toUInteger(pToken->z, pToken->n, 10, &uv)) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid unsigned smallint data", pToken->z);
      } else if (!IS_VALID_USMALLINT(uv)) {
        return buildSyntaxErrMsg(pMsgBuf, "unsigned smallint data overflow", pToken->z);
      }
      *(uint16_t*)(&val->i64) = uv;
      break;
    }

    case TSDB_DATA_TYPE_INT: {
      if (TSDB_CODE_SUCCESS != toInteger(pToken->z, pToken->n, 10, &iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid int data", pToken->z);
      } else if (!IS_VALID_INT(iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "int data overflow", pToken->z);
      }
      *(int32_t*)(&val->i64) = iv;
      break;
    }

    case TSDB_DATA_TYPE_UINT: {
      if (TSDB_CODE_SUCCESS != toUInteger(pToken->z, pToken->n, 10, &uv)) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid unsigned int data", pToken->z);
      } else if (!IS_VALID_UINT(uv)) {
        return buildSyntaxErrMsg(pMsgBuf, "unsigned int data overflow", pToken->z);
      }
      *(uint32_t*)(&val->i64) = uv;
      break;
    }

    case TSDB_DATA_TYPE_BIGINT: {
      if (TSDB_CODE_SUCCESS != toInteger(pToken->z, pToken->n, 10, &iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid bigint data", pToken->z);
      } else if (!IS_VALID_BIGINT(iv)) {
        return buildSyntaxErrMsg(pMsgBuf, "bigint data overflow", pToken->z);
      }

      val->i64 = iv;
      break;
    }

    case TSDB_DATA_TYPE_UBIGINT: {
      if (TSDB_CODE_SUCCESS != toUInteger(pToken->z, pToken->n, 10, &uv)) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid unsigned bigint data", pToken->z);
      } else if (!IS_VALID_UBIGINT(uv)) {
        return buildSyntaxErrMsg(pMsgBuf, "unsigned bigint data overflow", pToken->z);
      }
      *(uint64_t*)(&val->i64) = uv;
      break;
    }

    case TSDB_DATA_TYPE_FLOAT: {
      double dv;
      if (TK_NK_ILLEGAL == toDouble(pToken, &dv, &endptr)) {
        return buildSyntaxErrMsg(pMsgBuf, "illegal float data", pToken->z);
      }
      if (((dv == HUGE_VAL || dv == -HUGE_VAL) && errno == ERANGE) || dv > FLT_MAX || dv < -FLT_MAX || isinf(dv) ||
          isnan(dv)) {
        return buildSyntaxErrMsg(pMsgBuf, "illegal float data", pToken->z);
      }
      *(float*)(&val->i64) = dv;
      break;
    }

    case TSDB_DATA_TYPE_DOUBLE: {
      double dv;
      if (TK_NK_ILLEGAL == toDouble(pToken, &dv, &endptr)) {
        return buildSyntaxErrMsg(pMsgBuf, "illegal double data", pToken->z);
      }
      if (((dv == HUGE_VAL || dv == -HUGE_VAL) && errno == ERANGE) || isinf(dv) || isnan(dv)) {
        return buildSyntaxErrMsg(pMsgBuf, "illegal double data", pToken->z);
      }

      *(double*)(&val->i64) = dv;
      break;
    }

    case TSDB_DATA_TYPE_BINARY: {
      // Too long values will raise the invalid sql error message
      if (pToken->n + VARSTR_HEADER_SIZE > pSchema->bytes) {
        return generateSyntaxErrMsg(pMsgBuf, TSDB_CODE_PAR_VALUE_TOO_LONG, pSchema->name);
      }
946
      val->pData = strdup(pToken->z);
wmmhello's avatar
wmmhello 已提交
947 948 949 950 951 952
      val->nData = pToken->n;
      break;
    }

    case TSDB_DATA_TYPE_NCHAR: {
      int32_t output = 0;
953
      void*   p = taosMemoryCalloc(1, pSchema->bytes - VARSTR_HEADER_SIZE);
954
      if (p == NULL) {
wmmhello's avatar
wmmhello 已提交
955 956
        return TSDB_CODE_OUT_OF_MEMORY;
      }
957
      if (!taosMbsToUcs4(pToken->z, pToken->n, (TdUcs4*)(p), pSchema->bytes - VARSTR_HEADER_SIZE, &output)) {
wmmhello's avatar
wmmhello 已提交
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
        if (errno == E2BIG) {
          taosMemoryFree(p);
          return generateSyntaxErrMsg(pMsgBuf, TSDB_CODE_PAR_VALUE_TOO_LONG, pSchema->name);
        }
        char buf[512] = {0};
        snprintf(buf, tListLen(buf), " taosMbsToUcs4 error:%s", strerror(errno));
        taosMemoryFree(p);
        return buildSyntaxErrMsg(pMsgBuf, buf, pToken->z);
      }
      val->pData = p;
      val->nData = output;
      break;
    }
    case TSDB_DATA_TYPE_TIMESTAMP: {
      if (parseTime(end, pToken, timePrec, &iv, pMsgBuf) != TSDB_CODE_SUCCESS) {
        return buildSyntaxErrMsg(pMsgBuf, "invalid timestamp", pToken->z);
      }

      val->i64 = iv;
      break;
    }
  }
X
Xiaoyu Wang 已提交
980 981 982 983

  return TSDB_CODE_SUCCESS;
}

984
// pSql -> tag1_value, ...)
wmmhello's avatar
wmmhello 已提交
985
static int32_t parseTagsClause(SInsertParseContext* pCxt, SSchema* pSchema, uint8_t precision, const char* tName) {
wmmhello's avatar
wmmhello 已提交
986
  int32_t code = TSDB_CODE_SUCCESS;
987
  SArray* pTagVals = taosArrayInit(pCxt->tags.numOfBound, sizeof(STagVal));
wmmhello's avatar
wmmhello 已提交
988
  SArray* tagName = taosArrayInit(8, TSDB_COL_NAME_LEN);
989 990 991 992
  SToken  sToken;
  bool    isParseBindParam = false;
  bool    isJson = false;
  STag*   pTag = NULL;
993
  for (int i = 0; i < pCxt->tags.numOfBound; ++i) {
X
Xiaoyu Wang 已提交
994
    NEXT_TOKEN_WITH_PREV(pCxt->pSql, sToken);
D
stmt  
dapan1121 已提交
995 996 997 998

    if (sToken.type == TK_NK_QUESTION) {
      isParseBindParam = true;
      if (NULL == pCxt->pStmtCb) {
wmmhello's avatar
wmmhello 已提交
999 1000
        code = buildSyntaxErrMsg(&pCxt->msg, "? only used in stmt", sToken.z);
        goto end;
D
stmt  
dapan1121 已提交
1001 1002 1003 1004 1005 1006
      }

      continue;
    }

    if (isParseBindParam) {
wmmhello's avatar
wmmhello 已提交
1007 1008
      code = buildInvalidOperationMsg(&pCxt->msg, "no mix usage for ? and tag values");
      goto end;
D
stmt  
dapan1121 已提交
1009
    }
X
Xiaoyu Wang 已提交
1010

X
Xiaoyu Wang 已提交
1011
    SSchema* pTagSchema = &pSchema[pCxt->tags.boundColumns[i]];
1012
    char     tmpTokenBuf[TSDB_MAX_BYTES_PER_ROW] = {0};  // todo this can be optimize with parse column
wmmhello's avatar
wmmhello 已提交
1013 1014 1015 1016
    code = checkAndTrimValue(&sToken, tmpTokenBuf, &pCxt->msg);
    if (code != TSDB_CODE_SUCCESS) {
      goto end;
    }
wmmhello's avatar
wmmhello 已提交
1017

1018
    if (!isNullValue(pTagSchema->type, &sToken)) {
wmmhello's avatar
wmmhello 已提交
1019 1020
      taosArrayPush(tagName, pTagSchema->name);
    }
1021
    if (pTagSchema->type == TSDB_DATA_TYPE_JSON) {
wmmhello's avatar
wmmhello 已提交
1022 1023 1024 1025
      if (sToken.n > (TSDB_MAX_JSON_TAG_LEN - VARSTR_HEADER_SIZE) / TSDB_NCHAR_SIZE) {
        code = buildSyntaxErrMsg(&pCxt->msg, "json string too long than 4095", sToken.z);
        goto end;
      }
1026
      if (isNullValue(pTagSchema->type, &sToken)) {
1027 1028
        code = tTagNew(pTagVals, 1, true, &pTag);
      } else {
wmmhello's avatar
wmmhello 已提交
1029
        code = parseJsontoTagData(sToken.z, pTagVals, &pTag, &pCxt->msg);
1030
      }
1031
      if (code != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
1032 1033
        goto end;
      }
wmmhello's avatar
wmmhello 已提交
1034
      isJson = true;
1035
    } else {
wmmhello's avatar
wmmhello 已提交
1036
      STagVal val = {0};
wmmhello's avatar
wmmhello 已提交
1037
      code = parseTagToken(&pCxt->pSql, &sToken, pTagSchema, precision, &val, &pCxt->msg);
wmmhello's avatar
wmmhello 已提交
1038 1039 1040
      if (TSDB_CODE_SUCCESS != code) {
        goto end;
      }
1041

wmmhello's avatar
wmmhello 已提交
1042 1043
      taosArrayPush(pTagVals, &val);
    }
1044 1045
  }

D
stmt  
dapan1121 已提交
1046
  if (isParseBindParam) {
wmmhello's avatar
wmmhello 已提交
1047 1048
    code = TSDB_CODE_SUCCESS;
    goto end;
D
stmt  
dapan1121 已提交
1049 1050
  }

1051
  if (!isJson && (code = tTagNew(pTagVals, 1, false, &pTag)) != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
1052
    goto end;
1053 1054
  }

1055 1056
  buildCreateTbReq(&pCxt->createTblReq, tName, pTag, pCxt->pTableMeta->suid, pCxt->sTableName, tagName,
                   pCxt->pTableMeta->tableInfo.numOfTags);
wmmhello's avatar
wmmhello 已提交
1057 1058 1059

end:
  for (int i = 0; i < taosArrayGetSize(pTagVals); ++i) {
1060
    STagVal* p = (STagVal*)taosArrayGet(pTagVals, i);
1061
    if (IS_VAR_DATA_TYPE(p->type)) {
1062
      taosMemoryFreeClear(p->pData);
wmmhello's avatar
wmmhello 已提交
1063 1064 1065
    }
  }
  taosArrayDestroy(pTagVals);
wmmhello's avatar
wmmhello 已提交
1066
  taosArrayDestroy(tagName);
wmmhello's avatar
wmmhello 已提交
1067
  return code;
X
Xiaoyu Wang 已提交
1068
}
1069

X
Xiaoyu Wang 已提交
1070 1071
static int32_t storeTableMeta(SInsertParseContext* pCxt, SHashObj* pHash, int32_t tbNo, SName* pTableName,
                              const char* pName, int32_t len, STableMeta* pMeta) {
1072
  SVgroupInfo vg;
X
Xiaoyu Wang 已提交
1073
  CHECK_CODE(getTableVgroup(pCxt, tbNo, pTableName, &vg));
X
Xiaoyu Wang 已提交
1074 1075
  CHECK_CODE(taosHashPut(pCxt->pVgroupsHashObj, (const char*)&vg.vgId, sizeof(vg.vgId), (char*)&vg, sizeof(vg)));

X
Xiaoyu Wang 已提交
1076
  pMeta->uid = tbNo;
X
Xiaoyu Wang 已提交
1077
  pMeta->vgId = vg.vgId;
D
dapan 已提交
1078
  pMeta->tableType = TSDB_CHILD_TABLE;
X
Xiaoyu Wang 已提交
1079

X
Xiaoyu Wang 已提交
1080 1081 1082 1083 1084
  STableMeta* pBackup = NULL;
  if (TSDB_CODE_SUCCESS != cloneTableMeta(pMeta, &pBackup)) {
    return TSDB_CODE_TSC_OUT_OF_MEMORY;
  }
  return taosHashPut(pHash, pName, len, &pBackup, POINTER_BYTES);
1085 1086
}

1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
static int32_t skipParentheses(SInsertParseSyntaxCxt* pCxt) {
  SToken  sToken;
  int32_t expectRightParenthesis = 1;
  while (1) {
    NEXT_TOKEN(pCxt->pSql, sToken);
    if (TK_NK_LP == sToken.type) {
      ++expectRightParenthesis;
    } else if (TK_NK_RP == sToken.type && 0 == --expectRightParenthesis) {
      break;
    }
    if (0 == sToken.n) {
      return buildSyntaxErrMsg(&pCxt->msg, ") expected", NULL);
    }
  }
  return TSDB_CODE_SUCCESS;
}

static int32_t skipBoundColumns(SInsertParseSyntaxCxt* pCxt) { return skipParentheses(pCxt); }

static int32_t ignoreBoundColumns(SInsertParseContext* pCxt) {
  SInsertParseSyntaxCxt cxt = {.pComCxt = pCxt->pComCxt, .pSql = pCxt->pSql, .msg = pCxt->msg, .pMetaCache = NULL};
  int32_t               code = skipBoundColumns(&cxt);
  pCxt->pSql = cxt.pSql;
  return code;
}

1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
static int32_t skipUsingClause(SInsertParseSyntaxCxt* pCxt);

// pSql -> stb_name [(tag1_name, ...)] TAGS (tag1_value, ...)
static int32_t ignoreAutoCreateTableClause(SInsertParseContext* pCxt) {
  SToken sToken;
  NEXT_TOKEN(pCxt->pSql, sToken);
  SInsertParseSyntaxCxt cxt = {.pComCxt = pCxt->pComCxt, .pSql = pCxt->pSql, .msg = pCxt->msg, .pMetaCache = NULL};
  int32_t               code = skipUsingClause(&cxt);
  pCxt->pSql = cxt.pSql;
  return code;
}

1125 1126 1127 1128 1129 1130 1131
static int32_t parseTableOptions(SInsertParseContext* pCxt) {
  do {
    int32_t index = 0;
    SToken  sToken;
    NEXT_TOKEN_KEEP_SQL(pCxt->pSql, sToken, index);
    if (TK_TTL == sToken.type) {
      pCxt->pSql += index;
1132
      NEXT_TOKEN_WITH_PREV(pCxt->pSql, sToken);
1133 1134 1135 1136
      if (TK_NK_INTEGER != sToken.type) {
        return buildSyntaxErrMsg(&pCxt->msg, "Invalid option ttl", sToken.z);
      }
      pCxt->createTblReq.ttl = taosStr2Int32(sToken.z, NULL, 10);
1137 1138 1139
      if (pCxt->createTblReq.ttl < 0) {
        return buildSyntaxErrMsg(&pCxt->msg, "Invalid option ttl", sToken.z);
      }
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
    } else if (TK_COMMENT == sToken.type) {
      pCxt->pSql += index;
      NEXT_TOKEN(pCxt->pSql, sToken);
      if (TK_NK_STRING != sToken.type) {
        return buildSyntaxErrMsg(&pCxt->msg, "Invalid option comment", sToken.z);
      }
      if (sToken.n >= TSDB_TB_COMMENT_LEN) {
        return buildSyntaxErrMsg(&pCxt->msg, "comment too long", sToken.z);
      }
      int32_t len = trimString(sToken.z, sToken.n, pCxt->tmpTokenBuf, TSDB_TB_COMMENT_LEN);
      pCxt->createTblReq.comment = strndup(pCxt->tmpTokenBuf, len);
      if (NULL == pCxt->createTblReq.comment) {
        return TSDB_CODE_OUT_OF_MEMORY;
      }
      pCxt->createTblReq.commentLen = len;
    } else {
      break;
    }
  } while (1);
  return TSDB_CODE_SUCCESS;
}

1162
// pSql -> stb_name [(tag1_name, ...)] TAGS (tag1_value, ...)
X
Xiaoyu Wang 已提交
1163
static int32_t parseUsingClause(SInsertParseContext* pCxt, int32_t tbNo, SName* name, char* tbFName) {
H
refact  
Hongze Cheng 已提交
1164
  int32_t      len = strlen(tbFName);
X
Xiaoyu Wang 已提交
1165 1166
  STableMeta** pMeta = taosHashGet(pCxt->pSubTableHashObj, tbFName, len);
  if (NULL != pMeta) {
1167
    CHECK_CODE(ignoreAutoCreateTableClause(pCxt));
X
Xiaoyu Wang 已提交
1168 1169
    return cloneTableMeta(*pMeta, &pCxt->pTableMeta);
  }
1170

X
Xiaoyu Wang 已提交
1171
  SToken sToken;
1172 1173
  // pSql -> stb_name [(tag1_name, ...)] TAGS (tag1_value, ...)
  NEXT_TOKEN(pCxt->pSql, sToken);
D
dapan 已提交
1174 1175 1176

  SName sname;
  createSName(&sname, &sToken, pCxt->pComCxt->acctId, pCxt->pComCxt->db, &pCxt->msg);
X
Xiaoyu Wang 已提交
1177 1178
  char dbFName[TSDB_DB_FNAME_LEN];
  tNameGetFullDbName(&sname, dbFName);
wmmhello's avatar
wmmhello 已提交
1179
  strcpy(pCxt->sTableName, sname.tname);
X
Xiaoyu Wang 已提交
1180

1181
  CHECK_CODE(getSTableMeta(pCxt, tbNo, &sname));
1182 1183 1184
  if (TSDB_SUPER_TABLE != pCxt->pTableMeta->tableType) {
    return buildInvalidOperationMsg(&pCxt->msg, "create table only from super table is allowed");
  }
X
Xiaoyu Wang 已提交
1185
  CHECK_CODE(storeTableMeta(pCxt, pCxt->pSubTableHashObj, tbNo, name, tbFName, len, pCxt->pTableMeta));
1186 1187

  SSchema* pTagsSchema = getTableTagSchema(pCxt->pTableMeta);
1188
  setBoundColumnInfo(&pCxt->tags, pTagsSchema, getNumOfTags(pCxt->pTableMeta));
1189 1190 1191

  // pSql -> [(tag1_name, ...)] TAGS (tag1_value, ...)
  NEXT_TOKEN(pCxt->pSql, sToken);
1192
  if (TK_NK_LP == sToken.type) {
1193
    CHECK_CODE(parseBoundColumns(pCxt, &pCxt->tags, pTagsSchema));
1194 1195 1196 1197 1198 1199 1200 1201
    NEXT_TOKEN(pCxt->pSql, sToken);
  }

  if (TK_TAGS != sToken.type) {
    return buildSyntaxErrMsg(&pCxt->msg, "TAGS is expected", sToken.z);
  }
  // pSql -> (tag1_value, ...)
  NEXT_TOKEN(pCxt->pSql, sToken);
1202
  if (TK_NK_LP != sToken.type) {
1203 1204
    return buildSyntaxErrMsg(&pCxt->msg, "( is expected", sToken.z);
  }
X
Xiaoyu Wang 已提交
1205
  CHECK_CODE(parseTagsClause(pCxt, pTagsSchema, getTableInfo(pCxt->pTableMeta).precision, name->tname));
1206 1207 1208 1209
  NEXT_VALID_TOKEN(pCxt->pSql, sToken);
  if (TK_NK_COMMA == sToken.type) {
    return generateSyntaxErrMsg(&pCxt->msg, TSDB_CODE_PAR_TAGS_NOT_MATCHED);
  } else if (TK_NK_RP != sToken.type) {
X
Xiaoyu Wang 已提交
1210 1211
    return buildSyntaxErrMsg(&pCxt->msg, ") is expected", sToken.z);
  }
1212

1213
  return parseTableOptions(pCxt);
1214 1215
}

X
Xiaoyu Wang 已提交
1216 1217
static int parseOneRow(SInsertParseContext* pCxt, STableDataBlocks* pDataBlocks, int16_t timePrec, bool* gotRow,
                       char* tmpTokenBuf) {
1218
  SParsedDataColInfo* spd = &pDataBlocks->boundColumnInfo;
C
Cary Xu 已提交
1219 1220 1221 1222
  SRowBuilder*        pBuilder = &pDataBlocks->rowBuilder;
  STSRow*             row = (STSRow*)(pDataBlocks->pData + pDataBlocks->size);  // skip the SSubmitBlk header

  tdSRowResetBuf(pBuilder, row);
1223

H
refact  
Hongze Cheng 已提交
1224 1225
  bool      isParseBindParam = false;
  SSchema*  schema = getTableColumnSchema(pDataBlocks->pTableMeta);
C
Cary Xu 已提交
1226
  SMemParam param = {.rb = pBuilder};
H
refact  
Hongze Cheng 已提交
1227
  SToken    sToken = {0};
1228 1229
  // 1. set the parsed value from sql string
  for (int i = 0; i < spd->numOfBound; ++i) {
X
Xiaoyu Wang 已提交
1230
    NEXT_TOKEN_WITH_PREV(pCxt->pSql, sToken);
X
Xiaoyu Wang 已提交
1231
    SSchema* pSchema = &schema[spd->boundColumns[i]];
D
stmt  
dapan1121 已提交
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241

    if (sToken.type == TK_NK_QUESTION) {
      isParseBindParam = true;
      if (NULL == pCxt->pStmtCb) {
        return buildSyntaxErrMsg(&pCxt->msg, "? only used in stmt", sToken.z);
      }

      continue;
    }

D
dapan1121 已提交
1242 1243 1244 1245
    if (TK_NK_RP == sToken.type) {
      return generateSyntaxErrMsg(&pCxt->msg, TSDB_CODE_PAR_INVALID_COLUMNS_NUM);
    }

D
stmt  
dapan1121 已提交
1246 1247 1248
    if (isParseBindParam) {
      return buildInvalidOperationMsg(&pCxt->msg, "no mix usage for ? and values");
    }
X
Xiaoyu Wang 已提交
1249

1250
    param.schema = pSchema;
D
stmt  
dapan1121 已提交
1251
    getSTSRowAppendInfo(pBuilder->rowType, spd, i, &param.toffset, &param.colIdx);
1252
    CHECK_CODE(parseValueToken(&pCxt->pSql, &sToken, pSchema, timePrec, tmpTokenBuf, MemRowAppend, &param, &pCxt->msg));
1253

X
Xiaoyu Wang 已提交
1254 1255 1256 1257 1258 1259
    if (i < spd->numOfBound - 1) {
      NEXT_VALID_TOKEN(pCxt->pSql, sToken);
      if (TK_NK_COMMA != sToken.type) {
        return buildSyntaxErrMsg(&pCxt->msg, ", expected", sToken.z);
      }
    }
1260 1261
  }

1262 1263 1264
  TSKEY tsKey = TD_ROW_KEY(row);
  checkTimestamp(pDataBlocks, (const char*)&tsKey);

1265
  if (!isParseBindParam) {
C
Cary Xu 已提交
1266
    // set the null value for the columns that do not assign values
C
Cary Xu 已提交
1267
    if ((spd->numOfBound < spd->numOfCols) && TD_IS_TP_ROW(row)) {
1268
      pBuilder->hasNone = true;
1269
    }
D
stmt  
dapan1121 已提交
1270

C
Cary Xu 已提交
1271 1272
    tdSRowEnd(pBuilder);

D
stmt  
dapan1121 已提交
1273
    *gotRow = true;
X
Xiaoyu Wang 已提交
1274

C
Cary Xu 已提交
1275
#ifdef TD_DEBUG_PRINT_ROW
C
Cary Xu 已提交
1276
    STSchema* pSTSchema = tdGetSTSChemaFromSSChema(schema, spd->numOfCols, 1);
C
Cary Xu 已提交
1277
    tdSRowPrint(row, pSTSchema, __func__);
C
Cary Xu 已提交
1278 1279
    taosMemoryFree(pSTSchema);
#endif
1280 1281
  }

C
Cary Xu 已提交
1282
  // *len = pBuilder->extendedRowSize;
1283 1284 1285 1286
  return TSDB_CODE_SUCCESS;
}

// pSql -> (field1_value, ...) [(field1_value2, ...) ...]
1287
static int32_t parseValues(SInsertParseContext* pCxt, STableDataBlocks* pDataBlock, int maxRows, int32_t* numOfRows) {
1288
  STableComInfo tinfo = getTableInfo(pDataBlock->pTableMeta);
H
refact  
Hongze Cheng 已提交
1289
  int32_t       extendedRowSize = getExtendedRowSize(pDataBlock);
C
Cary Xu 已提交
1290
  CHECK_CODE(initRowBuilder(&pDataBlock->rowBuilder, pDataBlock->pTableMeta->sversion, &pDataBlock->boundColumnInfo));
1291 1292

  (*numOfRows) = 0;
X
Xiaoyu Wang 已提交
1293
  // char   tmpTokenBuf[TSDB_MAX_BYTES_PER_ROW] = {0};  // used for deleting Escape character: \\, \', \"
1294 1295
  SToken sToken;
  while (1) {
1296 1297
    int32_t index = 0;
    NEXT_TOKEN_KEEP_SQL(pCxt->pSql, sToken, index);
1298
    if (TK_NK_LP != sToken.type) {
1299 1300
      break;
    }
1301
    pCxt->pSql += index;
1302 1303 1304 1305 1306 1307 1308 1309

    if ((*numOfRows) >= maxRows || pDataBlock->size + extendedRowSize >= pDataBlock->nAllocSize) {
      int32_t tSize;
      CHECK_CODE(allocateMemIfNeed(pDataBlock, extendedRowSize, &tSize));
      ASSERT(tSize >= maxRows);
      maxRows = tSize;
    }

D
stmt  
dapan1121 已提交
1310
    bool gotRow = false;
X
Xiaoyu Wang 已提交
1311
    CHECK_CODE(parseOneRow(pCxt, pDataBlock, tinfo.precision, &gotRow, pCxt->tmpTokenBuf));
D
stmt  
dapan1121 已提交
1312
    if (gotRow) {
X
Xiaoyu Wang 已提交
1313
      pDataBlock->size += extendedRowSize;  // len;
D
stmt  
dapan1121 已提交
1314
    }
1315

1316 1317 1318 1319
    NEXT_VALID_TOKEN(pCxt->pSql, sToken);
    if (TK_NK_COMMA == sToken.type) {
      return generateSyntaxErrMsg(&pCxt->msg, TSDB_CODE_PAR_INVALID_COLUMNS_NUM);
    } else if (TK_NK_RP != sToken.type) {
1320 1321 1322
      return buildSyntaxErrMsg(&pCxt->msg, ") expected", sToken.z);
    }

D
stmt  
dapan1121 已提交
1323 1324 1325
    if (gotRow) {
      (*numOfRows)++;
    }
1326 1327
  }

D
stmt  
dapan1121 已提交
1328
  if (0 == (*numOfRows) && (!TSDB_QUERY_HAS_TYPE(pCxt->pOutput->insertType, TSDB_QUERY_TYPE_STMT_INSERT))) {
X
Xiaoyu Wang 已提交
1329
    return buildSyntaxErrMsg(&pCxt->msg, "no any data points", NULL);
1330 1331 1332 1333
  }
  return TSDB_CODE_SUCCESS;
}

H
refact  
Hongze Cheng 已提交
1334
static int32_t parseValuesClause(SInsertParseContext* pCxt, STableDataBlocks* dataBuf) {
1335 1336 1337 1338
  int32_t maxNumOfRows;
  CHECK_CODE(allocateMemIfNeed(dataBuf, getExtendedRowSize(dataBuf), &maxNumOfRows));

  int32_t numOfRows = 0;
1339
  CHECK_CODE(parseValues(pCxt, dataBuf, maxNumOfRows, &numOfRows));
1340

H
refact  
Hongze Cheng 已提交
1341
  SSubmitBlk* pBlocks = (SSubmitBlk*)(dataBuf->pData);
D
dapan1121 已提交
1342
  if (TSDB_CODE_SUCCESS != setBlockInfo(pBlocks, dataBuf, numOfRows)) {
X
Xiaoyu Wang 已提交
1343 1344
    return buildInvalidOperationMsg(&pCxt->msg,
                                    "too many rows in sql, total number of rows should be less than INT32_MAX");
1345 1346 1347 1348 1349 1350 1351
  }

  dataBuf->numOfTables = 1;
  pCxt->totalNum += numOfRows;
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
static int32_t parseCsvFile(SInsertParseContext* pCxt, TdFilePtr fp, STableDataBlocks* pDataBlock, int maxRows,
                            int32_t* numOfRows) {
  STableComInfo tinfo = getTableInfo(pDataBlock->pTableMeta);
  int32_t       extendedRowSize = getExtendedRowSize(pDataBlock);
  CHECK_CODE(initRowBuilder(&pDataBlock->rowBuilder, pDataBlock->pTableMeta->sversion, &pDataBlock->boundColumnInfo));

  (*numOfRows) = 0;
  char    tmpTokenBuf[TSDB_MAX_BYTES_PER_ROW] = {0};  // used for deleting Escape character: \\, \', \"
  char*   pLine = NULL;
  int64_t readLen = 0;
  while ((readLen = taosGetLineFile(fp, &pLine)) != -1) {
    if (('\r' == pLine[readLen - 1]) || ('\n' == pLine[readLen - 1])) {
      pLine[--readLen] = '\0';
    }

    if (readLen == 0) {
      continue;
    }

    if ((*numOfRows) >= maxRows || pDataBlock->size + extendedRowSize >= pDataBlock->nAllocSize) {
      int32_t tSize;
      CHECK_CODE(allocateMemIfNeed(pDataBlock, extendedRowSize, &tSize));
      ASSERT(tSize >= maxRows);
      maxRows = tSize;
    }

    strtolower(pLine, pLine);
    char* pRawSql = pCxt->pSql;
    pCxt->pSql = pLine;
    bool gotRow = false;
    CHECK_CODE(parseOneRow(pCxt, pDataBlock, tinfo.precision, &gotRow, tmpTokenBuf));
    if (gotRow) {
      pDataBlock->size += extendedRowSize;  // len;
      (*numOfRows)++;
    }
    pCxt->pSql = pRawSql;
1388 1389 1390 1391

    if (pDataBlock->nAllocSize > tsMaxMemUsedByInsert * 1024 * 1024) {
      break;
    }
X
Xiaoyu Wang 已提交
1392 1393 1394 1395 1396 1397 1398 1399
  }

  if (0 == (*numOfRows) && (!TSDB_QUERY_HAS_TYPE(pCxt->pOutput->insertType, TSDB_QUERY_TYPE_STMT_INSERT))) {
    return buildSyntaxErrMsg(&pCxt->msg, "no any data points", NULL);
  }
  return TSDB_CODE_SUCCESS;
}

1400 1401
static int32_t parseDataFromFileAgain(SInsertParseContext* pCxt, int16_t tableNo, const SName* pTableName,
                                      STableDataBlocks* dataBuf) {
X
Xiaoyu Wang 已提交
1402 1403 1404 1405
  int32_t maxNumOfRows;
  CHECK_CODE(allocateMemIfNeed(dataBuf, getExtendedRowSize(dataBuf), &maxNumOfRows));

  int32_t numOfRows = 0;
1406
  CHECK_CODE(parseCsvFile(pCxt, pCxt->pComCxt->csvCxt.fp, dataBuf, maxNumOfRows, &numOfRows));
X
Xiaoyu Wang 已提交
1407 1408 1409

  SSubmitBlk* pBlocks = (SSubmitBlk*)(dataBuf->pData);
  if (TSDB_CODE_SUCCESS != setBlockInfo(pBlocks, dataBuf, numOfRows)) {
X
Xiaoyu Wang 已提交
1410 1411
    return buildInvalidOperationMsg(&pCxt->msg,
                                    "too many rows in sql, total number of rows should be less than INT32_MAX");
X
Xiaoyu Wang 已提交
1412 1413
  }

1414 1415 1416 1417 1418 1419 1420
  if (!taosEOFFile(pCxt->pComCxt->csvCxt.fp)) {
    pCxt->pComCxt->needMultiParse = true;
    pCxt->pComCxt->csvCxt.tableNo = tableNo;
    memcpy(&pCxt->pComCxt->csvCxt.tableName, pTableName, sizeof(SName));
    pCxt->pComCxt->csvCxt.pLastSqlPos = pCxt->pSql;
  }

X
Xiaoyu Wang 已提交
1421 1422 1423 1424 1425
  dataBuf->numOfTables = 1;
  pCxt->totalNum += numOfRows;
  return TSDB_CODE_SUCCESS;
}

1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441
static int32_t parseDataFromFile(SInsertParseContext* pCxt, int16_t tableNo, const SName* pTableName, SToken filePath,
                                 STableDataBlocks* dataBuf) {
  char filePathStr[TSDB_FILENAME_LEN] = {0};
  if (TK_NK_STRING == filePath.type) {
    trimString(filePath.z, filePath.n, filePathStr, sizeof(filePathStr));
  } else {
    strncpy(filePathStr, filePath.z, filePath.n);
  }
  pCxt->pComCxt->csvCxt.fp = taosOpenFile(filePathStr, TD_FILE_READ | TD_FILE_STREAM);
  if (NULL == pCxt->pComCxt->csvCxt.fp) {
    return TAOS_SYSTEM_ERROR(errno);
  }

  return parseDataFromFileAgain(pCxt, tableNo, pTableName, dataBuf);
}

X
Xiaoyu Wang 已提交
1442
static void destroyInsertParseContextForTable(SInsertParseContext* pCxt) {
1443 1444 1445
  if (!pCxt->pComCxt->needMultiParse) {
    taosCloseFile(&pCxt->pComCxt->csvCxt.fp);
  }
D
dapan1121 已提交
1446
  taosMemoryFreeClear(pCxt->pTableMeta);
X
Xiaoyu Wang 已提交
1447
  destroyBoundColumnInfo(&pCxt->tags);
wmmhello's avatar
wmmhello 已提交
1448
  tdDestroySVCreateTbReq(&pCxt->createTblReq);
X
Xiaoyu Wang 已提交
1449 1450
}

1451 1452
static void destroySubTableHashElem(void* p) { taosMemoryFree(*(STableMeta**)p); }

X
Xiaoyu Wang 已提交
1453 1454 1455
static void destroyInsertParseContext(SInsertParseContext* pCxt) {
  destroyInsertParseContextForTable(pCxt);
  taosHashCleanup(pCxt->pVgroupsHashObj);
1456
  taosHashCleanup(pCxt->pSubTableHashObj);
D
dapan1121 已提交
1457
  taosHashCleanup(pCxt->pTableNameHashObj);
D
dapan1121 已提交
1458
  taosHashCleanup(pCxt->pDbFNameHashObj);
1459 1460

  destroyBlockHashmap(pCxt->pTableBlockHashObj);
X
Xiaoyu Wang 已提交
1461 1462 1463
  destroyBlockArrayList(pCxt->pVgDataBlocks);
}

X
Xiaoyu Wang 已提交
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477
static int32_t parseTableName(SInsertParseContext* pCxt, SToken* pTbnameToken, SName* pName, char* pDbFName,
                              char* pTbFName) {
  int32_t code = createSName(pName, pTbnameToken, pCxt->pComCxt->acctId, pCxt->pComCxt->db, &pCxt->msg);
  if (TSDB_CODE_SUCCESS == code) {
    tNameExtractFullName(pName, pTbFName);
    code = taosHashPut(pCxt->pTableNameHashObj, pTbFName, strlen(pTbFName), pName, sizeof(SName));
  }
  if (TSDB_CODE_SUCCESS == code) {
    tNameGetFullDbName(pName, pDbFName);
    code = taosHashPut(pCxt->pDbFNameHashObj, pDbFName, strlen(pDbFName), pDbFName, TSDB_DB_FNAME_LEN);
  }
  return code;
}

1478 1479 1480 1481 1482 1483
//   tb_name
//       [USING stb_name [(tag1_name, ...)] TAGS (tag1_value, ...)]
//       [(field1_name, ...)]
//       VALUES (field1_value, ...) [(field1_value2, ...) ...] | FILE csv_file_path
//   [...];
static int32_t parseInsertBody(SInsertParseContext* pCxt) {
1484
  int32_t tbNum = 0;
X
Xiaoyu Wang 已提交
1485
  SName   name;
1486
  char    tbFName[TSDB_TABLE_FNAME_LEN];
X
Xiaoyu Wang 已提交
1487
  char    dbFName[TSDB_DB_FNAME_LEN];
1488
  bool    autoCreateTbl = false;
X
Xiaoyu Wang 已提交
1489

X
Xiaoyu Wang 已提交
1490
  // for each table
1491 1492
  while (1) {
    SToken sToken;
X
Xiaoyu Wang 已提交
1493
    char*  tbName = NULL;
D
stmt  
dapan1121 已提交
1494

1495 1496 1497 1498 1499
    // pSql -> tb_name ...
    NEXT_TOKEN(pCxt->pSql, sToken);

    // no data in the sql string anymore.
    if (sToken.n == 0) {
D
dapan1121 已提交
1500 1501 1502
      if (sToken.type && pCxt->pSql[0]) {
        return buildSyntaxErrMsg(&pCxt->msg, "invalid charactor in SQL", sToken.z);
      }
X
Xiaoyu Wang 已提交
1503

1504 1505
      if (0 == pCxt->totalNum && (!TSDB_QUERY_HAS_TYPE(pCxt->pOutput->insertType, TSDB_QUERY_TYPE_STMT_INSERT)) &&
          !pCxt->pComCxt->needMultiParse) {
H
refact  
Hongze Cheng 已提交
1506
        return buildInvalidOperationMsg(&pCxt->msg, "no data in sql");
1507 1508 1509 1510
      }
      break;
    }

D
stmt  
dapan1121 已提交
1511
    if (TSDB_QUERY_HAS_TYPE(pCxt->pOutput->insertType, TSDB_QUERY_TYPE_STMT_INSERT) && tbNum > 0) {
X
Xiaoyu Wang 已提交
1512
      return buildInvalidOperationMsg(&pCxt->msg, "single table allowed in one stmt");
D
stmt  
dapan1121 已提交
1513 1514
    }

D
stmt  
dapan1121 已提交
1515 1516
    destroyInsertParseContextForTable(pCxt);

D
stmt  
dapan1121 已提交
1517 1518 1519
    if (TK_NK_QUESTION == sToken.type) {
      if (pCxt->pStmtCb) {
        CHECK_CODE((*pCxt->pStmtCb->getTbNameFn)(pCxt->pStmtCb->pStmt, &tbName));
X
Xiaoyu Wang 已提交
1520

D
stmt  
dapan1121 已提交
1521 1522 1523 1524 1525 1526
        sToken.z = tbName;
        sToken.n = strlen(tbName);
      } else {
        return buildSyntaxErrMsg(&pCxt->msg, "? only used in stmt", sToken.z);
      }
    }
X
Xiaoyu Wang 已提交
1527

1528 1529 1530
    SToken tbnameToken = sToken;
    NEXT_TOKEN(pCxt->pSql, sToken);

X
Xiaoyu Wang 已提交
1531
    if (!pCxt->pComCxt->async || TK_USING == sToken.type) {
X
Xiaoyu Wang 已提交
1532
      CHECK_CODE(parseTableName(pCxt, &tbnameToken, &name, dbFName, tbFName));
X
Xiaoyu Wang 已提交
1533
    }
X
Xiaoyu Wang 已提交
1534

1535
    bool existedUsing = false;
1536
    // USING clause
1537
    if (TK_USING == sToken.type) {
1538
      existedUsing = true;
X
Xiaoyu Wang 已提交
1539
      CHECK_CODE(parseUsingClause(pCxt, tbNum, &name, tbFName));
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
      NEXT_TOKEN(pCxt->pSql, sToken);
      autoCreateTbl = true;
    }

    char* pBoundColsStart = NULL;
    if (TK_NK_LP == sToken.type) {
      // pSql -> field1_name, ...)
      pBoundColsStart = pCxt->pSql;
      CHECK_CODE(ignoreBoundColumns(pCxt));
      NEXT_TOKEN(pCxt->pSql, sToken);
    }

1552
    if (TK_USING == sToken.type) {
X
Xiaoyu Wang 已提交
1553 1554 1555
      if (pCxt->pComCxt->async) {
        CHECK_CODE(parseTableName(pCxt, &tbnameToken, &name, dbFName, tbFName));
      }
X
Xiaoyu Wang 已提交
1556
      CHECK_CODE(parseUsingClause(pCxt, tbNum, &name, tbFName));
1557
      NEXT_TOKEN(pCxt->pSql, sToken);
D
dapan 已提交
1558
      autoCreateTbl = true;
1559
    } else if (!existedUsing) {
1560
      CHECK_CODE(getTableMeta(pCxt, tbNum, &name));
1561 1562 1563
      if (TSDB_SUPER_TABLE == pCxt->pTableMeta->tableType) {
        return buildInvalidOperationMsg(&pCxt->msg, "insert data into super table is not supported");
      }
1564 1565
    }

H
refact  
Hongze Cheng 已提交
1566
    STableDataBlocks* dataBuf = NULL;
X
Xiaoyu Wang 已提交
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
    if (pCxt->pComCxt->async) {
      CHECK_CODE(getDataBlockFromList(pCxt->pTableBlockHashObj, &pCxt->pTableMeta->uid, sizeof(pCxt->pTableMeta->uid),
                                      TSDB_DEFAULT_PAYLOAD_SIZE, sizeof(SSubmitBlk),
                                      getTableInfo(pCxt->pTableMeta).rowSize, pCxt->pTableMeta, &dataBuf, NULL,
                                      &pCxt->createTblReq));
    } else {
      CHECK_CODE(getDataBlockFromList(pCxt->pTableBlockHashObj, tbFName, strlen(tbFName), TSDB_DEFAULT_PAYLOAD_SIZE,
                                      sizeof(SSubmitBlk), getTableInfo(pCxt->pTableMeta).rowSize, pCxt->pTableMeta,
                                      &dataBuf, NULL, &pCxt->createTblReq));
    }
1577

1578 1579 1580
    if (NULL != pBoundColsStart) {
      char* pCurrPos = pCxt->pSql;
      pCxt->pSql = pBoundColsStart;
D
dapan1121 已提交
1581
      CHECK_CODE(parseBoundColumns(pCxt, &dataBuf->boundColumnInfo, getTableColumnSchema(pCxt->pTableMeta)));
1582
      pCxt->pSql = pCurrPos;
1583 1584 1585 1586 1587
    }

    if (TK_VALUES == sToken.type) {
      // pSql -> (field1_value, ...) [(field1_value2, ...) ...]
      CHECK_CODE(parseValuesClause(pCxt, dataBuf));
D
stmt  
dapan1121 已提交
1588
      TSDB_QUERY_SET_TYPE(pCxt->pOutput->insertType, TSDB_QUERY_TYPE_INSERT);
D
stmt  
dapan1121 已提交
1589 1590

      tbNum++;
1591 1592 1593 1594
      continue;
    }

    // FILE csv_file_path
X
Xiaoyu Wang 已提交
1595
    if (TK_FILE == sToken.type) {
1596 1597
      // pSql -> csv_file_path
      NEXT_TOKEN(pCxt->pSql, sToken);
1598
      if (0 == sToken.n || (TK_NK_STRING != sToken.type && TK_NK_ID != sToken.type)) {
1599 1600
        return buildSyntaxErrMsg(&pCxt->msg, "file path is required following keyword FILE", sToken.z);
      }
1601
      CHECK_CODE(parseDataFromFile(pCxt, tbNum, &name, sToken, dataBuf));
1602
      pCxt->pOutput->insertType = TSDB_QUERY_TYPE_FILE_INSERT;
D
stmt  
dapan1121 已提交
1603 1604

      tbNum++;
1605 1606 1607 1608 1609 1610
      if (!pCxt->pComCxt->needMultiParse) {
        continue;
      } else {
        parserInfo("0x%" PRIx64 " insert from csv. File is too large, do it in batches.", pCxt->pComCxt->requestId);
        break;
      }
1611 1612 1613 1614
    }

    return buildSyntaxErrMsg(&pCxt->msg, "keyword VALUES or FILE is expected", sToken.z);
  }
X
Xiaoyu Wang 已提交
1615

1616
  parserInfo("0x%" PRIx64 " insert input rows: %d", pCxt->pComCxt->requestId, pCxt->totalNum);
D
dapan1121 已提交
1617

D
stmt  
dapan1121 已提交
1618
  if (TSDB_QUERY_HAS_TYPE(pCxt->pOutput->insertType, TSDB_QUERY_TYPE_STMT_INSERT)) {
X
Xiaoyu Wang 已提交
1619
    SParsedDataColInfo* tags = taosMemoryMalloc(sizeof(pCxt->tags));
D
stmt  
dapan1121 已提交
1620 1621 1622 1623
    if (NULL == tags) {
      return TSDB_CODE_TSC_OUT_OF_MEMORY;
    }
    memcpy(tags, &pCxt->tags, sizeof(pCxt->tags));
1624
    (*pCxt->pStmtCb->setInfoFn)(pCxt->pStmtCb->pStmt, pCxt->pTableMeta, tags, tbFName, autoCreateTbl,
wmmhello's avatar
wmmhello 已提交
1625
                                pCxt->pVgroupsHashObj, pCxt->pTableBlockHashObj, pCxt->sTableName);
D
stmt  
dapan1121 已提交
1626

D
dapan 已提交
1627
    memset(&pCxt->tags, 0, sizeof(pCxt->tags));
D
stmt  
dapan1121 已提交
1628 1629
    pCxt->pVgroupsHashObj = NULL;
    pCxt->pTableBlockHashObj = NULL;
X
Xiaoyu Wang 已提交
1630

D
stmt  
dapan1121 已提交
1631 1632
    return TSDB_CODE_SUCCESS;
  }
X
Xiaoyu Wang 已提交
1633

1634
  // merge according to vgId
D
stmt  
dapan1121 已提交
1635
  if (taosHashGetSize(pCxt->pTableBlockHashObj) > 0) {
X
Xiaoyu Wang 已提交
1636
    CHECK_CODE(mergeTableDataBlocks(pCxt->pTableBlockHashObj, pCxt->pOutput->payloadType, &pCxt->pVgDataBlocks));
1637
  }
1638
  return buildOutput(pCxt);
1639 1640
}

1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
static int32_t parseInsertBodyAgain(SInsertParseContext* pCxt) {
  STableDataBlocks* dataBuf = NULL;
  CHECK_CODE(getTableMeta(pCxt, pCxt->pComCxt->csvCxt.tableNo, &pCxt->pComCxt->csvCxt.tableName));
  CHECK_CODE(getDataBlockFromList(pCxt->pTableBlockHashObj, &pCxt->pTableMeta->uid, sizeof(pCxt->pTableMeta->uid),
                                  TSDB_DEFAULT_PAYLOAD_SIZE, sizeof(SSubmitBlk), getTableInfo(pCxt->pTableMeta).rowSize,
                                  pCxt->pTableMeta, &dataBuf, NULL, &pCxt->createTblReq));
  CHECK_CODE(parseDataFromFileAgain(pCxt, pCxt->pComCxt->csvCxt.tableNo, &pCxt->pComCxt->csvCxt.tableName, dataBuf));
  if (taosEOFFile(pCxt->pComCxt->csvCxt.fp)) {
    CHECK_CODE(parseInsertBody(pCxt));
    pCxt->pComCxt->needMultiParse = false;
    return TSDB_CODE_SUCCESS;
  }
  parserInfo("0x%" PRIx64 " insert again input rows: %d", pCxt->pComCxt->requestId, pCxt->totalNum);
  // merge according to vgId
  if (taosHashGetSize(pCxt->pTableBlockHashObj) > 0) {
    CHECK_CODE(mergeTableDataBlocks(pCxt->pTableBlockHashObj, pCxt->pOutput->payloadType, &pCxt->pVgDataBlocks));
  }
  return buildOutput(pCxt);
}

1661 1662 1663 1664 1665 1666
// INSERT INTO
//   tb_name
//       [USING stb_name [(tag1_name, ...)] TAGS (tag1_value, ...)]
//       [(field1_name, ...)]
//       VALUES (field1_value, ...) [(field1_value2, ...) ...] | FILE csv_file_path
//   [...];
1667
int32_t parseInsertSql(SParseContext* pContext, SQuery** pQuery, SParseMetaCache* pMetaCache) {
1668
  SInsertParseContext context = {
X
Xiaoyu Wang 已提交
1669
      .pComCxt = pContext,
1670
      .pSql = pContext->needMultiParse ? (char*)pContext->csvCxt.pLastSqlPos : (char*)pContext->pSql,
X
Xiaoyu Wang 已提交
1671 1672
      .msg = {.buf = pContext->pMsg, .len = pContext->msgLen},
      .pTableMeta = NULL,
wmmhello's avatar
wmmhello 已提交
1673
      .createTblReq = {0},
X
Xiaoyu Wang 已提交
1674 1675
      .pSubTableHashObj = taosHashInit(128, taosGetDefaultHashFunction(TSDB_DATA_TYPE_VARCHAR), true, HASH_NO_LOCK),
      .pTableNameHashObj = taosHashInit(128, taosGetDefaultHashFunction(TSDB_DATA_TYPE_VARCHAR), true, HASH_NO_LOCK),
D
dapan1121 已提交
1676
      .pDbFNameHashObj = taosHashInit(64, taosGetDefaultHashFunction(TSDB_DATA_TYPE_VARCHAR), true, HASH_NO_LOCK),
X
Xiaoyu Wang 已提交
1677 1678
      .totalNum = 0,
      .pOutput = (SVnodeModifOpStmt*)nodesMakeNode(QUERY_NODE_VNODE_MODIF_STMT),
1679
      .pStmtCb = pContext->pStmtCb,
X
Xiaoyu Wang 已提交
1680 1681 1682
      .pMetaCache = pMetaCache,
      .memElapsed = 0,
      .parRowElapsed = 0};
1683

D
stmt  
dapan1121 已提交
1684
  if (pContext->pStmtCb && *pQuery) {
X
Xiaoyu Wang 已提交
1685 1686
    (*pContext->pStmtCb->getExecInfoFn)(pContext->pStmtCb->pStmt, &context.pVgroupsHashObj,
                                        &context.pTableBlockHashObj);
D
dapan1121 已提交
1687 1688 1689 1690 1691 1692 1693
    if (NULL == context.pVgroupsHashObj) {
      context.pVgroupsHashObj = taosHashInit(128, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), true, HASH_NO_LOCK);
    }
    if (NULL == context.pTableBlockHashObj) {
      context.pTableBlockHashObj =
          taosHashInit(128, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_NO_LOCK);
    }
D
stmt  
dapan1121 已提交
1694
  } else {
X
Xiaoyu Wang 已提交
1695 1696
    context.pVgroupsHashObj = taosHashInit(128, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), true, HASH_NO_LOCK);
    context.pTableBlockHashObj =
X
Xiaoyu Wang 已提交
1697
        taosHashInit(128, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), true, HASH_NO_LOCK);
D
stmt  
dapan1121 已提交
1698
  }
X
Xiaoyu Wang 已提交
1699 1700

  if (NULL == context.pVgroupsHashObj || NULL == context.pTableBlockHashObj || NULL == context.pSubTableHashObj ||
D
dapan1121 已提交
1701
      NULL == context.pTableNameHashObj || NULL == context.pDbFNameHashObj || NULL == context.pOutput) {
X
Xiaoyu Wang 已提交
1702
    return TSDB_CODE_TSC_OUT_OF_MEMORY;
1703
  }
1704
  taosHashSetFreeFp(context.pSubTableHashObj, destroySubTableHashElem);
1705

D
stmt  
dapan1121 已提交
1706 1707 1708 1709
  if (pContext->pStmtCb) {
    TSDB_QUERY_SET_TYPE(context.pOutput->insertType, TSDB_QUERY_TYPE_STMT_INSERT);
  }

1710
  if (NULL == *pQuery) {
1711
    *pQuery = (SQuery*)nodesMakeNode(QUERY_NODE_QUERY);
D
stmt  
dapan1121 已提交
1712 1713 1714
    if (NULL == *pQuery) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
D
dapan1121 已提交
1715 1716
  } else {
    nodesDestroyNode((*pQuery)->pRoot);
1717
  }
1718

1719 1720 1721 1722
  (*pQuery)->execMode = QUERY_EXEC_MODE_SCHEDULE;
  (*pQuery)->haveResultSet = false;
  (*pQuery)->msgType = TDMT_VND_SUBMIT;
  (*pQuery)->pRoot = (SNode*)context.pOutput;
X
Xiaoyu Wang 已提交
1723

D
dapan1121 已提交
1724 1725 1726 1727 1728 1729
  if (NULL == (*pQuery)->pTableList) {
    (*pQuery)->pTableList = taosArrayInit(taosHashGetSize(context.pTableNameHashObj), sizeof(SName));
    if (NULL == (*pQuery)->pTableList) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }
1730

D
dapan1121 已提交
1731 1732 1733 1734 1735 1736 1737
  if (NULL == (*pQuery)->pDbList) {
    (*pQuery)->pDbList = taosArrayInit(taosHashGetSize(context.pDbFNameHashObj), TSDB_DB_FNAME_LEN);
    if (NULL == (*pQuery)->pDbList) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }

1738
  context.pOutput->payloadType = PAYLOAD_TYPE_KV;
1739

1740 1741 1742 1743 1744 1745 1746 1747
  int32_t code = TSDB_CODE_SUCCESS;
  if (!context.pComCxt->needMultiParse) {
    code = skipInsertInto(&context.pSql, &context.msg);
    if (TSDB_CODE_SUCCESS == code) {
      code = parseInsertBody(&context);
    }
  } else {
    code = parseInsertBodyAgain(&context);
1748
  }
1749

1750
  if (TSDB_CODE_SUCCESS == code || NEED_CLIENT_HANDLE_ERROR(code)) {
X
Xiaoyu Wang 已提交
1751 1752 1753 1754 1755
    SName* pTable = taosHashIterate(context.pTableNameHashObj, NULL);
    while (NULL != pTable) {
      taosArrayPush((*pQuery)->pTableList, pTable);
      pTable = taosHashIterate(context.pTableNameHashObj, pTable);
    }
D
dapan1121 已提交
1756 1757 1758 1759 1760 1761

    char* pDb = taosHashIterate(context.pDbFNameHashObj, NULL);
    while (NULL != pDb) {
      taosArrayPush((*pQuery)->pDbList, pDb);
      pDb = taosHashIterate(context.pDbFNameHashObj, pDb);
    }
X
Xiaoyu Wang 已提交
1762
  }
1763 1764 1765
  if (pContext->pStmtCb) {
    context.pVgroupsHashObj = NULL;
    context.pTableBlockHashObj = NULL;
1766
  }
1767
  destroyInsertParseContext(&context);
X
Xiaoyu Wang 已提交
1768
  return code;
1769
}
D
stmt  
dapan1121 已提交
1770

1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
// pSql -> (field1_value, ...) [(field1_value2, ...) ...]
static int32_t skipValuesClause(SInsertParseSyntaxCxt* pCxt) {
  int32_t numOfRows = 0;
  SToken  sToken;
  while (1) {
    int32_t index = 0;
    NEXT_TOKEN_KEEP_SQL(pCxt->pSql, sToken, index);
    if (TK_NK_LP != sToken.type) {
      break;
    }
    pCxt->pSql += index;

    CHECK_CODE(skipParentheses(pCxt));
    ++numOfRows;
  }
  if (0 == numOfRows) {
    return buildSyntaxErrMsg(&pCxt->msg, "no any data points", NULL);
  }
  return TSDB_CODE_SUCCESS;
}

static int32_t skipTagsClause(SInsertParseSyntaxCxt* pCxt) { return skipParentheses(pCxt); }

1794 1795 1796 1797 1798 1799 1800
static int32_t skipTableOptions(SInsertParseSyntaxCxt* pCxt) {
  do {
    int32_t index = 0;
    SToken  sToken;
    NEXT_TOKEN_KEEP_SQL(pCxt->pSql, sToken, index);
    if (TK_TTL == sToken.type || TK_COMMENT == sToken.type) {
      pCxt->pSql += index;
1801
      NEXT_TOKEN_WITH_PREV(pCxt->pSql, sToken);
1802 1803 1804 1805 1806 1807 1808
    } else {
      break;
    }
  } while (1);
  return TSDB_CODE_SUCCESS;
}

1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826
// pSql -> [(tag1_name, ...)] TAGS (tag1_value, ...)
static int32_t skipUsingClause(SInsertParseSyntaxCxt* pCxt) {
  SToken sToken;
  NEXT_TOKEN(pCxt->pSql, sToken);
  if (TK_NK_LP == sToken.type) {
    CHECK_CODE(skipBoundColumns(pCxt));
    NEXT_TOKEN(pCxt->pSql, sToken);
  }

  if (TK_TAGS != sToken.type) {
    return buildSyntaxErrMsg(&pCxt->msg, "TAGS is expected", sToken.z);
  }
  // pSql -> (tag1_value, ...)
  NEXT_TOKEN(pCxt->pSql, sToken);
  if (TK_NK_LP != sToken.type) {
    return buildSyntaxErrMsg(&pCxt->msg, "( is expected", sToken.z);
  }
  CHECK_CODE(skipTagsClause(pCxt));
1827
  CHECK_CODE(skipTableOptions(pCxt));
1828 1829 1830 1831

  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
1832
static int32_t collectTableMetaKey(SInsertParseSyntaxCxt* pCxt, bool isStable, int32_t tableNo, SToken* pTbToken) {
1833
  SName name = {0};
1834
  CHECK_CODE(createSName(&name, pTbToken, pCxt->pComCxt->acctId, pCxt->pComCxt->db, &pCxt->msg));
X
Xiaoyu Wang 已提交
1835 1836
  CHECK_CODE(reserveTableMetaInCacheForInsert(&name, isStable ? CATALOG_REQ_TYPE_META : CATALOG_REQ_TYPE_BOTH, tableNo,
                                              pCxt->pMetaCache));
1837 1838 1839
  return TSDB_CODE_SUCCESS;
}

1840 1841 1842 1843 1844 1845 1846
static int32_t checkTableName(const char* pTableName, SMsgBuf* pMsgBuf) {
  if (NULL != strchr(pTableName, '.')) {
    return generateSyntaxErrMsgExt(pMsgBuf, TSDB_CODE_PAR_INVALID_IDENTIFIER_NAME, "The table name cannot contain '.'");
  }
  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
1847
static int32_t collectAutoCreateTableMetaKey(SInsertParseSyntaxCxt* pCxt, int32_t tableNo, SToken* pTbToken) {
1848
  SName name = {0};
X
Xiaoyu Wang 已提交
1849
  CHECK_CODE(createSName(&name, pTbToken, pCxt->pComCxt->acctId, pCxt->pComCxt->db, &pCxt->msg));
1850
  CHECK_CODE(checkTableName(name.tname, &pCxt->msg));
X
Xiaoyu Wang 已提交
1851
  CHECK_CODE(reserveTableMetaInCacheForInsert(&name, CATALOG_REQ_TYPE_VGROUP, tableNo, pCxt->pMetaCache));
X
Xiaoyu Wang 已提交
1852 1853 1854
  return TSDB_CODE_SUCCESS;
}

1855
static int32_t parseInsertBodySyntax(SInsertParseSyntaxCxt* pCxt) {
X
Xiaoyu Wang 已提交
1856 1857
  bool    hasData = false;
  int32_t tableNo = 0;
1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881
  // for each table
  while (1) {
    SToken sToken;

    // pSql -> tb_name ...
    NEXT_TOKEN(pCxt->pSql, sToken);

    // no data in the sql string anymore.
    if (sToken.n == 0) {
      if (sToken.type && pCxt->pSql[0]) {
        return buildSyntaxErrMsg(&pCxt->msg, "invalid charactor in SQL", sToken.z);
      }

      if (!hasData) {
        return buildInvalidOperationMsg(&pCxt->msg, "no data in sql");
      }
      break;
    }

    hasData = false;

    SToken tbnameToken = sToken;
    NEXT_TOKEN(pCxt->pSql, sToken);

1882
    bool existedUsing = false;
1883 1884
    // USING clause
    if (TK_USING == sToken.type) {
1885
      existedUsing = true;
X
Xiaoyu Wang 已提交
1886
      CHECK_CODE(collectAutoCreateTableMetaKey(pCxt, tableNo, &tbnameToken));
1887
      NEXT_TOKEN(pCxt->pSql, sToken);
X
Xiaoyu Wang 已提交
1888
      CHECK_CODE(collectTableMetaKey(pCxt, true, tableNo, &sToken));
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
      CHECK_CODE(skipUsingClause(pCxt));
      NEXT_TOKEN(pCxt->pSql, sToken);
    }

    if (TK_NK_LP == sToken.type) {
      // pSql -> field1_name, ...)
      CHECK_CODE(skipBoundColumns(pCxt));
      NEXT_TOKEN(pCxt->pSql, sToken);
    }

1899 1900
    if (TK_USING == sToken.type && !existedUsing) {
      existedUsing = true;
X
Xiaoyu Wang 已提交
1901
      CHECK_CODE(collectAutoCreateTableMetaKey(pCxt, tableNo, &tbnameToken));
1902
      NEXT_TOKEN(pCxt->pSql, sToken);
X
Xiaoyu Wang 已提交
1903
      CHECK_CODE(collectTableMetaKey(pCxt, true, tableNo, &sToken));
1904 1905
      CHECK_CODE(skipUsingClause(pCxt));
      NEXT_TOKEN(pCxt->pSql, sToken);
X
Xiaoyu Wang 已提交
1906
    } else if (!existedUsing) {
X
Xiaoyu Wang 已提交
1907
      CHECK_CODE(collectTableMetaKey(pCxt, false, tableNo, &tbnameToken));
1908 1909
    }

X
Xiaoyu Wang 已提交
1910 1911
    ++tableNo;

1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
    if (TK_VALUES == sToken.type) {
      // pSql -> (field1_value, ...) [(field1_value2, ...) ...]
      CHECK_CODE(skipValuesClause(pCxt));
      hasData = true;
      continue;
    }

    // FILE csv_file_path
    if (TK_FILE == sToken.type) {
      // pSql -> csv_file_path
      NEXT_TOKEN(pCxt->pSql, sToken);
      if (0 == sToken.n || (TK_NK_STRING != sToken.type && TK_NK_ID != sToken.type)) {
        return buildSyntaxErrMsg(&pCxt->msg, "file path is required following keyword FILE", sToken.z);
      }
      hasData = true;
      continue;
    }

    return buildSyntaxErrMsg(&pCxt->msg, "keyword VALUES or FILE is expected", sToken.z);
  }

  return TSDB_CODE_SUCCESS;
}

1936
int32_t parseInsertSyntax(SParseContext* pContext, SQuery** pQuery, SParseMetaCache* pMetaCache) {
1937 1938 1939
  SInsertParseSyntaxCxt context = {.pComCxt = pContext,
                                   .pSql = (char*)pContext->pSql,
                                   .msg = {.buf = pContext->pMsg, .len = pContext->msgLen},
1940 1941
                                   .pMetaCache = pMetaCache};
  int32_t               code = skipInsertInto(&context.pSql, &context.msg);
1942 1943 1944 1945
  if (TSDB_CODE_SUCCESS == code) {
    code = parseInsertBodySyntax(&context);
  }
  if (TSDB_CODE_SUCCESS == code) {
1946
    *pQuery = (SQuery*)nodesMakeNode(QUERY_NODE_QUERY);
1947 1948 1949 1950 1951 1952 1953
    if (NULL == *pQuery) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }
  return code;
}

X
Xiaoyu Wang 已提交
1954 1955 1956 1957
int32_t qCreateSName(SName* pName, const char* pTableName, int32_t acctId, char* dbName, char* msgBuf,
                     int32_t msgBufLen) {
  SMsgBuf msg = {.buf = msgBuf, .len = msgBufLen};
  SToken  sToken;
D
stmt  
dapan1121 已提交
1958
  int32_t code = 0;
X
Xiaoyu Wang 已提交
1959 1960
  char*   tbName = NULL;

D
stmt  
dapan1121 已提交
1961
  NEXT_TOKEN(pTableName, sToken);
X
Xiaoyu Wang 已提交
1962

D
stmt  
dapan1121 已提交
1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973
  if (sToken.n == 0) {
    return buildInvalidOperationMsg(&msg, "empty table name");
  }

  code = createSName(pName, &sToken, acctId, dbName, &msg);
  if (code) {
    return code;
  }

  NEXT_TOKEN(pTableName, sToken);

D
stmt  
dapan1121 已提交
1974
  if (sToken.n > 0) {
D
stmt  
dapan1121 已提交
1975 1976 1977 1978 1979 1980 1981
    return buildInvalidOperationMsg(&msg, "table name format is wrong");
  }

  return TSDB_CODE_SUCCESS;
}

int32_t qBuildStmtOutput(SQuery* pQuery, SHashObj* pVgHash, SHashObj* pBlockHash) {
X
Xiaoyu Wang 已提交
1982 1983
  SVnodeModifOpStmt*  modifyNode = (SVnodeModifOpStmt*)pQuery->pRoot;
  int32_t             code = 0;
D
stmt  
dapan1121 已提交
1984
  SInsertParseContext insertCtx = {
X
Xiaoyu Wang 已提交
1985 1986 1987
      .pVgroupsHashObj = pVgHash,
      .pTableBlockHashObj = pBlockHash,
      .pOutput = (SVnodeModifOpStmt*)pQuery->pRoot,
D
stmt  
dapan1121 已提交
1988
  };
X
Xiaoyu Wang 已提交
1989

D
stmt  
dapan1121 已提交
1990 1991
  // merge according to vgId
  if (taosHashGetSize(insertCtx.pTableBlockHashObj) > 0) {
D
stmt  
dapan1121 已提交
1992
    CHECK_CODE(mergeTableDataBlocks(insertCtx.pTableBlockHashObj, modifyNode->payloadType, &insertCtx.pVgDataBlocks));
D
stmt  
dapan1121 已提交
1993 1994 1995 1996
  }

  CHECK_CODE(buildOutput(&insertCtx));

wmmhello's avatar
wmmhello 已提交
1997
  destroyBlockArrayList(insertCtx.pVgDataBlocks);
D
stmt  
dapan1121 已提交
1998 1999 2000
  return TSDB_CODE_SUCCESS;
}

2001 2002
int32_t qBindStmtTagsValue(void* pBlock, void* boundTags, int64_t suid, const char* sTableName, char* tName,
                           TAOS_MULTI_BIND* bind, char* msgBuf, int32_t msgBufLen) {
X
Xiaoyu Wang 已提交
2003 2004
  STableDataBlocks*   pDataBlock = (STableDataBlocks*)pBlock;
  SMsgBuf             pBuf = {.buf = msgBuf, .len = msgBufLen};
D
stmt  
dapan1121 已提交
2005 2006 2007 2008 2009
  SParsedDataColInfo* tags = (SParsedDataColInfo*)boundTags;
  if (NULL == tags) {
    return TSDB_CODE_QRY_APP_ERROR;
  }

C
Cary Xu 已提交
2010 2011
  SArray* pTagArray = taosArrayInit(tags->numOfBound, sizeof(STagVal));
  if (!pTagArray) {
C
Cary Xu 已提交
2012
    return buildInvalidOperationMsg(&pBuf, "out of memory");
D
stmt  
dapan1121 已提交
2013 2014
  }

wmmhello's avatar
wmmhello 已提交
2015 2016 2017 2018 2019
  SArray* tagName = taosArrayInit(8, TSDB_COL_NAME_LEN);
  if (!tagName) {
    return buildInvalidOperationMsg(&pBuf, "out of memory");
  }

2020
  int32_t  code = TSDB_CODE_SUCCESS;
D
dapan1121 已提交
2021
  SSchema* pSchema = getTableTagSchema(pDataBlock->pTableMeta);
D
stmt  
dapan1121 已提交
2022

2023
  bool  isJson = false;
wmmhello's avatar
wmmhello 已提交
2024
  STag* pTag = NULL;
D
dapan1121 已提交
2025

D
stmt  
dapan1121 已提交
2026 2027 2028 2029
  for (int c = 0; c < tags->numOfBound; ++c) {
    if (bind[c].is_null && bind[c].is_null[0]) {
      continue;
    }
X
Xiaoyu Wang 已提交
2030

X
Xiaoyu Wang 已提交
2031
    SSchema* pTagSchema = &pSchema[tags->boundColumns[c]];
2032
    int32_t  colLen = pTagSchema->bytes;
D
stmt  
dapan1121 已提交
2033 2034 2035
    if (IS_VAR_DATA_TYPE(pTagSchema->type)) {
      colLen = bind[c].length[0];
    }
wmmhello's avatar
wmmhello 已提交
2036
    taosArrayPush(tagName, pTagSchema->name);
wmmhello's avatar
wmmhello 已提交
2037 2038 2039 2040 2041
    if (pTagSchema->type == TSDB_DATA_TYPE_JSON) {
      if (colLen > (TSDB_MAX_JSON_TAG_LEN - VARSTR_HEADER_SIZE) / TSDB_NCHAR_SIZE) {
        code = buildSyntaxErrMsg(&pBuf, "json string too long than 4095", bind[c].buffer);
        goto end;
      }
X
Xiaoyu Wang 已提交
2042

wmmhello's avatar
wmmhello 已提交
2043
      isJson = true;
2044
      char* tmp = taosMemoryCalloc(1, colLen + 1);
wmmhello's avatar
wmmhello 已提交
2045
      memcpy(tmp, bind[c].buffer, colLen);
wmmhello's avatar
wmmhello 已提交
2046
      code = parseJsontoTagData(tmp, pTagArray, &pTag, &pBuf);
wmmhello's avatar
wmmhello 已提交
2047
      taosMemoryFree(tmp);
2048
      if (code != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
2049 2050
        goto end;
      }
2051
    } else {
wmmhello's avatar
wmmhello 已提交
2052
      STagVal val = {.cid = pTagSchema->colId, .type = pTagSchema->type};
2053
      //      strcpy(val.colName, pTagSchema->name);
2054
      if (pTagSchema->type == TSDB_DATA_TYPE_BINARY) {
wmmhello's avatar
wmmhello 已提交
2055 2056
        val.pData = (uint8_t*)bind[c].buffer;
        val.nData = colLen;
2057
      } else if (pTagSchema->type == TSDB_DATA_TYPE_NCHAR) {
wmmhello's avatar
wmmhello 已提交
2058
        int32_t output = 0;
2059 2060
        void*   p = taosMemoryCalloc(1, colLen * TSDB_NCHAR_SIZE);
        if (p == NULL) {
wmmhello's avatar
wmmhello 已提交
2061 2062 2063
          code = TSDB_CODE_OUT_OF_MEMORY;
          goto end;
        }
wmmhello's avatar
wmmhello 已提交
2064
        if (!taosMbsToUcs4(bind[c].buffer, colLen, (TdUcs4*)(p), colLen * TSDB_NCHAR_SIZE, &output)) {
wmmhello's avatar
wmmhello 已提交
2065 2066
          if (errno == E2BIG) {
            taosMemoryFree(p);
wmmhello's avatar
wmmhello 已提交
2067
            code = generateSyntaxErrMsg(&pBuf, TSDB_CODE_PAR_VALUE_TOO_LONG, pTagSchema->name);
wmmhello's avatar
wmmhello 已提交
2068 2069 2070 2071
            goto end;
          }
          char buf[512] = {0};
          snprintf(buf, tListLen(buf), " taosMbsToUcs4 error:%s", strerror(errno));
wmmhello's avatar
wmmhello 已提交
2072
          taosMemoryFree(p);
wmmhello's avatar
wmmhello 已提交
2073
          code = buildSyntaxErrMsg(&pBuf, buf, bind[c].buffer);
wmmhello's avatar
wmmhello 已提交
2074 2075
          goto end;
        }
wmmhello's avatar
wmmhello 已提交
2076 2077
        val.pData = p;
        val.nData = output;
2078
      } else {
wmmhello's avatar
wmmhello 已提交
2079
        memcpy(&val.i64, bind[c].buffer, colLen);
wmmhello's avatar
wmmhello 已提交
2080
      }
wmmhello's avatar
wmmhello 已提交
2081
      taosArrayPush(pTagArray, &val);
wmmhello's avatar
wmmhello 已提交
2082
    }
D
stmt  
dapan1121 已提交
2083 2084
  }

wmmhello's avatar
wmmhello 已提交
2085
  if (!isJson && (code = tTagNew(pTagArray, 1, false, &pTag)) != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
2086
    goto end;
D
stmt  
dapan1121 已提交
2087 2088 2089
  }

  SVCreateTbReq tbReq = {0};
2090
  buildCreateTbReq(&tbReq, tName, pTag, suid, sTableName, tagName, pDataBlock->pTableMeta->tableInfo.numOfTags);
wmmhello's avatar
wmmhello 已提交
2091
  code = buildCreateTbMsg(pDataBlock, &tbReq);
wmmhello's avatar
wmmhello 已提交
2092
  tdDestroySVCreateTbReq(&tbReq);
D
stmt  
dapan1121 已提交
2093

wmmhello's avatar
wmmhello 已提交
2094 2095
end:
  for (int i = 0; i < taosArrayGetSize(pTagArray); ++i) {
2096 2097
    STagVal* p = (STagVal*)taosArrayGet(pTagArray, i);
    if (p->type == TSDB_DATA_TYPE_NCHAR) {
2098
      taosMemoryFreeClear(p->pData);
wmmhello's avatar
wmmhello 已提交
2099 2100
    }
  }
C
Cary Xu 已提交
2101
  taosArrayDestroy(pTagArray);
wmmhello's avatar
wmmhello 已提交
2102
  taosArrayDestroy(tagName);
D
stmt  
dapan1121 已提交
2103

wmmhello's avatar
wmmhello 已提交
2104
  return code;
D
stmt  
dapan1121 已提交
2105 2106
}

X
Xiaoyu Wang 已提交
2107 2108 2109 2110
int32_t qBindStmtColsValue(void* pBlock, TAOS_MULTI_BIND* bind, char* msgBuf, int32_t msgBufLen) {
  STableDataBlocks*   pDataBlock = (STableDataBlocks*)pBlock;
  SSchema*            pSchema = getTableColumnSchema(pDataBlock->pTableMeta);
  int32_t             extendedRowSize = getExtendedRowSize(pDataBlock);
D
stmt  
dapan1121 已提交
2111 2112
  SParsedDataColInfo* spd = &pDataBlock->boundColumnInfo;
  SRowBuilder*        pBuilder = &pDataBlock->rowBuilder;
X
Xiaoyu Wang 已提交
2113 2114 2115 2116
  SMemParam           param = {.rb = pBuilder};
  SMsgBuf             pBuf = {.buf = msgBuf, .len = msgBufLen};
  int32_t             rowNum = bind->num;

D
stmt  
dapan1121 已提交
2117 2118
  CHECK_CODE(initRowBuilder(&pDataBlock->rowBuilder, pDataBlock->pTableMeta->sversion, &pDataBlock->boundColumnInfo));

D
stmt  
dapan1121 已提交
2119
  CHECK_CODE(allocateMemForSize(pDataBlock, extendedRowSize * bind->num));
X
Xiaoyu Wang 已提交
2120

D
stmt  
dapan1121 已提交
2121 2122 2123
  for (int32_t r = 0; r < bind->num; ++r) {
    STSRow* row = (STSRow*)(pDataBlock->pData + pDataBlock->size);  // skip the SSubmitBlk header
    tdSRowResetBuf(pBuilder, row);
X
Xiaoyu Wang 已提交
2124

D
stmt  
dapan1121 已提交
2125
    for (int c = 0; c < spd->numOfBound; ++c) {
X
Xiaoyu Wang 已提交
2126
      SSchema* pColSchema = &pSchema[spd->boundColumns[c]];
D
stmt  
dapan1121 已提交
2127 2128 2129 2130

      if (bind[c].num != rowNum) {
        return buildInvalidOperationMsg(&pBuf, "row number in each bind param should be the same");
      }
X
Xiaoyu Wang 已提交
2131

D
stmt  
dapan1121 已提交
2132 2133 2134 2135
      param.schema = pColSchema;
      getSTSRowAppendInfo(pBuilder->rowType, spd, c, &param.toffset, &param.colIdx);

      if (bind[c].is_null && bind[c].is_null[r]) {
D
stmt  
dapan1121 已提交
2136 2137 2138
        if (pColSchema->colId == PRIMARYKEY_TIMESTAMP_COL_ID) {
          return buildInvalidOperationMsg(&pBuf, "primary timestamp should not be NULL");
        }
X
Xiaoyu Wang 已提交
2139

D
stmt  
dapan1121 已提交
2140 2141
        CHECK_CODE(MemRowAppend(&pBuf, NULL, 0, &param));
      } else {
D
dapan1121 已提交
2142 2143 2144 2145
        if (bind[c].buffer_type != pColSchema->type) {
          return buildInvalidOperationMsg(&pBuf, "column type mis-match with buffer type");
        }

D
stmt  
dapan1121 已提交
2146 2147 2148 2149
        int32_t colLen = pColSchema->bytes;
        if (IS_VAR_DATA_TYPE(pColSchema->type)) {
          colLen = bind[c].length[r];
        }
X
Xiaoyu Wang 已提交
2150 2151

        CHECK_CODE(MemRowAppend(&pBuf, (char*)bind[c].buffer + bind[c].buffer_length * r, colLen, &param));
D
stmt  
dapan1121 已提交
2152
      }
X
Xiaoyu Wang 已提交
2153

D
stmt  
dapan1121 已提交
2154 2155
      if (PRIMARYKEY_TIMESTAMP_COL_ID == pColSchema->colId) {
        TSKEY tsKey = TD_ROW_KEY(row);
X
Xiaoyu Wang 已提交
2156
        checkTimestamp(pDataBlock, (const char*)&tsKey);
D
stmt  
dapan1121 已提交
2157 2158 2159 2160
      }
    }
    // set the null value for the columns that do not assign values
    if ((spd->numOfBound < spd->numOfCols) && TD_IS_TP_ROW(row)) {
C
Cary Xu 已提交
2161
      pBuilder->hasNone = true;
D
stmt  
dapan1121 已提交
2162
    }
2163
    tdSRowEnd(pBuilder);
C
Cary Xu 已提交
2164
#ifdef TD_DEBUG_PRINT_ROW
C
Cary Xu 已提交
2165
    STSchema* pSTSchema = tdGetSTSChemaFromSSChema(pSchema, spd->numOfCols, 1);
C
Cary Xu 已提交
2166
    tdSRowPrint(row, pSTSchema, __func__);
C
Cary Xu 已提交
2167 2168
    taosMemoryFree(pSTSchema);
#endif
D
stmt  
dapan1121 已提交
2169 2170
    pDataBlock->size += extendedRowSize;
  }
D
stmt  
dapan1121 已提交
2171

X
Xiaoyu Wang 已提交
2172
  SSubmitBlk* pBlocks = (SSubmitBlk*)(pDataBlock->pData);
D
stmt  
dapan1121 已提交
2173
  if (TSDB_CODE_SUCCESS != setBlockInfo(pBlocks, pDataBlock, bind->num)) {
2174
    return buildInvalidOperationMsg(&pBuf, "too many rows in sql, total number of rows should be less than INT32_MAX");
D
stmt  
dapan1121 已提交
2175 2176 2177 2178 2179
  }

  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
2180 2181 2182 2183 2184
int32_t qBindStmtSingleColValue(void* pBlock, TAOS_MULTI_BIND* bind, char* msgBuf, int32_t msgBufLen, int32_t colIdx,
                                int32_t rowNum) {
  STableDataBlocks*   pDataBlock = (STableDataBlocks*)pBlock;
  SSchema*            pSchema = getTableColumnSchema(pDataBlock->pTableMeta);
  int32_t             extendedRowSize = getExtendedRowSize(pDataBlock);
D
stmt  
dapan1121 已提交
2185 2186
  SParsedDataColInfo* spd = &pDataBlock->boundColumnInfo;
  SRowBuilder*        pBuilder = &pDataBlock->rowBuilder;
X
Xiaoyu Wang 已提交
2187 2188 2189 2190
  SMemParam           param = {.rb = pBuilder};
  SMsgBuf             pBuf = {.buf = msgBuf, .len = msgBufLen};
  bool                rowStart = (0 == colIdx);
  bool                rowEnd = ((colIdx + 1) == spd->numOfBound);
D
stmt  
dapan1121 已提交
2191 2192 2193 2194 2195

  if (rowStart) {
    CHECK_CODE(initRowBuilder(&pDataBlock->rowBuilder, pDataBlock->pTableMeta->sversion, &pDataBlock->boundColumnInfo));
    CHECK_CODE(allocateMemForSize(pDataBlock, extendedRowSize * bind->num));
  }
X
Xiaoyu Wang 已提交
2196

D
stmt  
dapan1121 已提交
2197 2198 2199 2200 2201 2202 2203
  for (int32_t r = 0; r < bind->num; ++r) {
    STSRow* row = (STSRow*)(pDataBlock->pData + pDataBlock->size + extendedRowSize * r);  // skip the SSubmitBlk header
    if (rowStart) {
      tdSRowResetBuf(pBuilder, row);
    } else {
      tdSRowGetBuf(pBuilder, row);
    }
D
stmt  
dapan1121 已提交
2204

X
Xiaoyu Wang 已提交
2205
    SSchema* pColSchema = &pSchema[spd->boundColumns[colIdx]];
D
stmt  
dapan1121 已提交
2206 2207 2208 2209

    if (bind->num != rowNum) {
      return buildInvalidOperationMsg(&pBuf, "row number in each bind param should be the same");
    }
X
Xiaoyu Wang 已提交
2210

D
stmt  
dapan1121 已提交
2211 2212 2213 2214 2215 2216 2217
    param.schema = pColSchema;
    getSTSRowAppendInfo(pBuilder->rowType, spd, colIdx, &param.toffset, &param.colIdx);

    if (bind->is_null && bind->is_null[r]) {
      if (pColSchema->colId == PRIMARYKEY_TIMESTAMP_COL_ID) {
        return buildInvalidOperationMsg(&pBuf, "primary timestamp should not be NULL");
      }
X
Xiaoyu Wang 已提交
2218

D
stmt  
dapan1121 已提交
2219 2220
      CHECK_CODE(MemRowAppend(&pBuf, NULL, 0, &param));
    } else {
D
dapan1121 已提交
2221 2222 2223 2224
      if (bind->buffer_type != pColSchema->type) {
        return buildInvalidOperationMsg(&pBuf, "column type mis-match with buffer type");
      }

D
stmt  
dapan1121 已提交
2225 2226 2227 2228
      int32_t colLen = pColSchema->bytes;
      if (IS_VAR_DATA_TYPE(pColSchema->type)) {
        colLen = bind->length[r];
      }
X
Xiaoyu Wang 已提交
2229 2230

      CHECK_CODE(MemRowAppend(&pBuf, (char*)bind->buffer + bind->buffer_length * r, colLen, &param));
D
stmt  
dapan1121 已提交
2231
    }
X
Xiaoyu Wang 已提交
2232

D
stmt  
dapan1121 已提交
2233 2234
    if (PRIMARYKEY_TIMESTAMP_COL_ID == pColSchema->colId) {
      TSKEY tsKey = TD_ROW_KEY(row);
X
Xiaoyu Wang 已提交
2235
      checkTimestamp(pDataBlock, (const char*)&tsKey);
D
stmt  
dapan1121 已提交
2236
    }
X
Xiaoyu Wang 已提交
2237

D
stmt  
dapan1121 已提交
2238 2239
    // set the null value for the columns that do not assign values
    if (rowEnd && (spd->numOfBound < spd->numOfCols) && TD_IS_TP_ROW(row)) {
C
Cary Xu 已提交
2240
      pBuilder->hasNone = true;
X
Xiaoyu Wang 已提交
2241
    }
2242
    if (rowEnd) {
2243
      tdSRowEnd(pBuilder);
X
Xiaoyu Wang 已提交
2244
    }
C
Cary Xu 已提交
2245
#ifdef TD_DEBUG_PRINT_ROW
X
Xiaoyu Wang 已提交
2246
    if (rowEnd) {
C
Cary Xu 已提交
2247
      STSchema* pSTSchema = tdGetSTSChemaFromSSChema(pSchema, spd->numOfCols, 1);
C
Cary Xu 已提交
2248
      tdSRowPrint(row, pSTSchema, __func__);
C
Cary Xu 已提交
2249 2250 2251
      taosMemoryFree(pSTSchema);
    }
#endif
D
stmt  
dapan1121 已提交
2252 2253
  }

D
stmt  
dapan1121 已提交
2254 2255 2256
  if (rowEnd) {
    pDataBlock->size += extendedRowSize * bind->num;

X
Xiaoyu Wang 已提交
2257
    SSubmitBlk* pBlocks = (SSubmitBlk*)(pDataBlock->pData);
D
stmt  
dapan1121 已提交
2258
    if (TSDB_CODE_SUCCESS != setBlockInfo(pBlocks, pDataBlock, bind->num)) {
X
Xiaoyu Wang 已提交
2259 2260
      return buildInvalidOperationMsg(&pBuf,
                                      "too many rows in sql, total number of rows should be less than INT32_MAX");
D
stmt  
dapan1121 已提交
2261 2262 2263 2264 2265 2266
    }
  }

  return TSDB_CODE_SUCCESS;
}

2267 2268
int32_t buildBoundFields(SParsedDataColInfo* boundInfo, SSchema* pSchema, int32_t* fieldNum, TAOS_FIELD_E** fields,
                         uint8_t timePrec) {
D
stmt  
dapan1121 已提交
2269 2270 2271 2272 2273 2274
  if (fields) {
    *fields = taosMemoryCalloc(boundInfo->numOfBound, sizeof(TAOS_FIELD));
    if (NULL == *fields) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }

D
dapan1121 已提交
2275 2276
    SSchema* schema = &pSchema[boundInfo->boundColumns[0]];
    if (TSDB_DATA_TYPE_TIMESTAMP == schema->type) {
D
dapan1121 已提交
2277 2278
      (*fields)[0].precision = timePrec;
    }
2279

D
stmt  
dapan1121 已提交
2280
    for (int32_t i = 0; i < boundInfo->numOfBound; ++i) {
D
dapan1121 已提交
2281 2282 2283 2284
      schema = &pSchema[boundInfo->boundColumns[i]];
      strcpy((*fields)[i].name, schema->name);
      (*fields)[i].type = schema->type;
      (*fields)[i].bytes = schema->bytes;
D
stmt  
dapan1121 已提交
2285
    }
D
stmt  
dapan1121 已提交
2286 2287 2288 2289 2290 2291 2292
  }

  *fieldNum = boundInfo->numOfBound;

  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
2293
int32_t qBuildStmtTagFields(void* pBlock, void* boundTags, int32_t* fieldNum, TAOS_FIELD_E** fields) {
X
Xiaoyu Wang 已提交
2294
  STableDataBlocks*   pDataBlock = (STableDataBlocks*)pBlock;
D
stmt  
dapan1121 已提交
2295 2296 2297 2298
  SParsedDataColInfo* tags = (SParsedDataColInfo*)boundTags;
  if (NULL == tags) {
    return TSDB_CODE_QRY_APP_ERROR;
  }
X
Xiaoyu Wang 已提交
2299

D
dapan1121 已提交
2300 2301 2302 2303
  if (pDataBlock->pTableMeta->tableType != TSDB_SUPER_TABLE && pDataBlock->pTableMeta->tableType != TSDB_CHILD_TABLE) {
    return TSDB_CODE_TSC_STMT_API_ERROR;
  }

X
Xiaoyu Wang 已提交
2304
  SSchema* pSchema = getTableTagSchema(pDataBlock->pTableMeta);
D
stmt  
dapan1121 已提交
2305 2306 2307 2308 2309 2310 2311
  if (tags->numOfBound <= 0) {
    *fieldNum = 0;
    *fields = NULL;

    return TSDB_CODE_SUCCESS;
  }

D
dapan1121 已提交
2312
  CHECK_CODE(buildBoundFields(tags, pSchema, fieldNum, fields, 0));
X
Xiaoyu Wang 已提交
2313

D
stmt  
dapan1121 已提交
2314 2315 2316
  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
2317
int32_t qBuildStmtColFields(void* pBlock, int32_t* fieldNum, TAOS_FIELD_E** fields) {
X
Xiaoyu Wang 已提交
2318 2319
  STableDataBlocks* pDataBlock = (STableDataBlocks*)pBlock;
  SSchema*          pSchema = getTableColumnSchema(pDataBlock->pTableMeta);
D
stmt  
dapan1121 已提交
2320 2321
  if (pDataBlock->boundColumnInfo.numOfBound <= 0) {
    *fieldNum = 0;
D
stmt  
dapan1121 已提交
2322 2323 2324
    if (fields) {
      *fields = NULL;
    }
D
stmt  
dapan1121 已提交
2325 2326 2327 2328

    return TSDB_CODE_SUCCESS;
  }

2329 2330
  CHECK_CODE(buildBoundFields(&pDataBlock->boundColumnInfo, pSchema, fieldNum, fields,
                              pDataBlock->pTableMeta->tableInfo.precision));
X
Xiaoyu Wang 已提交
2331

D
stmt  
dapan1121 已提交
2332 2333 2334
  return TSDB_CODE_SUCCESS;
}

wmmhello's avatar
wmmhello 已提交
2335
// schemaless logic start
D
stmt  
dapan1121 已提交
2336

wmmhello's avatar
wmmhello 已提交
2337
typedef struct SmlExecTableHandle {
X
Xiaoyu Wang 已提交
2338 2339
  SParsedDataColInfo tags;          // each table
  SVCreateTbReq      createTblReq;  // each table
wmmhello's avatar
wmmhello 已提交
2340
} SmlExecTableHandle;
wmmhello's avatar
wmmhello 已提交
2341

wmmhello's avatar
wmmhello 已提交
2342
typedef struct SmlExecHandle {
2343 2344 2345
  SHashObj*          pBlockHash;
  SmlExecTableHandle tableExecHandle;
  SQuery*            pQuery;
wmmhello's avatar
wmmhello 已提交
2346
} SSmlExecHandle;
wmmhello's avatar
wmmhello 已提交
2347

wmmhello's avatar
wmmhello 已提交
2348 2349 2350
static void smlDestroyTableHandle(void* pHandle) {
  SmlExecTableHandle* handle = (SmlExecTableHandle*)pHandle;
  destroyBoundColumnInfo(&handle->tags);
wmmhello's avatar
wmmhello 已提交
2351
  tdDestroySVCreateTbReq(&handle->createTblReq);
wmmhello's avatar
wmmhello 已提交
2352 2353
}

2354
static int32_t smlBoundColumnData(SArray* cols, SParsedDataColInfo* pColList, SSchema* pSchema, bool isTag) {
wmmhello's avatar
wmmhello 已提交
2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366
  col_id_t nCols = pColList->numOfCols;

  pColList->numOfBound = 0;
  pColList->boundNullLen = 0;
  memset(pColList->boundColumns, 0, sizeof(col_id_t) * nCols);
  for (col_id_t i = 0; i < nCols; ++i) {
    pColList->cols[i].valStat = VAL_STAT_NONE;
  }

  bool     isOrdered = true;
  col_id_t lastColIdx = -1;  // last column found
  for (int i = 0; i < taosArrayGetSize(cols); ++i) {
X
Xiaoyu Wang 已提交
2367 2368
    SSmlKv*  kv = taosArrayGetP(cols, i);
    SToken   sToken = {.n = kv->keyLen, .z = (char*)kv->key};
wmmhello's avatar
wmmhello 已提交
2369
    col_id_t t = lastColIdx + 1;
2370
    col_id_t index = ((t == 0 && !isTag) ? 0 : findCol(&sToken, t, nCols, pSchema));
2371
    uDebug("SML, index:%d, t:%d, ncols:%d", index, t, nCols);
wmmhello's avatar
wmmhello 已提交
2372 2373 2374 2375 2376
    if (index < 0 && t > 0) {
      index = findCol(&sToken, 0, t, pSchema);
      isOrdered = false;
    }
    if (index < 0) {
2377
      uError("smlBoundColumnData. index:%d", index);
wmmhello's avatar
wmmhello 已提交
2378 2379 2380
      return TSDB_CODE_SML_INVALID_DATA;
    }
    if (pColList->cols[index].valStat == VAL_STAT_HAS) {
2381
      uError("smlBoundColumnData. already set. index:%d", index);
wmmhello's avatar
wmmhello 已提交
2382 2383 2384 2385
      return TSDB_CODE_SML_INVALID_DATA;
    }
    lastColIdx = index;
    pColList->cols[index].valStat = VAL_STAT_HAS;
X
Xiaoyu Wang 已提交
2386
    pColList->boundColumns[pColList->numOfBound] = index;
wmmhello's avatar
wmmhello 已提交
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412
    ++pColList->numOfBound;
    switch (pSchema[t].type) {
      case TSDB_DATA_TYPE_BINARY:
        pColList->boundNullLen += (sizeof(VarDataOffsetT) + VARSTR_HEADER_SIZE + CHAR_BYTES);
        break;
      case TSDB_DATA_TYPE_NCHAR:
        pColList->boundNullLen += (sizeof(VarDataOffsetT) + VARSTR_HEADER_SIZE + TSDB_NCHAR_SIZE);
        break;
      default:
        pColList->boundNullLen += TYPE_BYTES[pSchema[t].type];
        break;
    }
  }

  pColList->orderStatus = isOrdered ? ORDER_STATUS_ORDERED : ORDER_STATUS_DISORDERED;

  if (!isOrdered) {
    pColList->colIdxInfo = taosMemoryCalloc(pColList->numOfBound, sizeof(SBoundIdxInfo));
    if (NULL == pColList->colIdxInfo) {
      return TSDB_CODE_TSC_OUT_OF_MEMORY;
    }
    SBoundIdxInfo* pColIdx = pColList->colIdxInfo;
    for (col_id_t i = 0; i < pColList->numOfBound; ++i) {
      pColIdx[i].schemaColIdx = pColList->boundColumns[i];
      pColIdx[i].boundIdx = i;
    }
wafwerar's avatar
wafwerar 已提交
2413
    taosSort(pColIdx, pColList->numOfBound, sizeof(SBoundIdxInfo), schemaIdxCompar);
wmmhello's avatar
wmmhello 已提交
2414 2415 2416
    for (col_id_t i = 0; i < pColList->numOfBound; ++i) {
      pColIdx[i].finalIdx = i;
    }
wafwerar's avatar
wafwerar 已提交
2417
    taosSort(pColIdx, pColList->numOfBound, sizeof(SBoundIdxInfo), boundIdxCompar);
wmmhello's avatar
wmmhello 已提交
2418 2419
  }

X
Xiaoyu Wang 已提交
2420
  if (pColList->numOfCols > pColList->numOfBound) {
wmmhello's avatar
wmmhello 已提交
2421 2422 2423 2424 2425 2426 2427
    memset(&pColList->boundColumns[pColList->numOfBound], 0,
           sizeof(col_id_t) * (pColList->numOfCols - pColList->numOfBound));
  }

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
2428 2429 2430 2431 2432 2433 2434 2435 2436 2437
/**
 * @brief No json tag for schemaless
 *
 * @param cols
 * @param tags
 * @param pSchema
 * @param ppTag
 * @param msg
 * @return int32_t
 */
2438 2439
static int32_t smlBuildTagRow(SArray* cols, SParsedDataColInfo* tags, SSchema* pSchema, STag** ppTag, SArray** tagName,
                              SMsgBuf* msg) {
C
Cary Xu 已提交
2440 2441
  SArray* pTagArray = taosArrayInit(tags->numOfBound, sizeof(STagVal));
  if (!pTagArray) {
wmmhello's avatar
wmmhello 已提交
2442 2443
    return TSDB_CODE_TSC_OUT_OF_MEMORY;
  }
wmmhello's avatar
wmmhello 已提交
2444 2445 2446 2447
  *tagName = taosArrayInit(8, TSDB_COL_NAME_LEN);
  if (!*tagName) {
    return TSDB_CODE_TSC_OUT_OF_MEMORY;
  }
wmmhello's avatar
wmmhello 已提交
2448

wmmhello's avatar
wmmhello 已提交
2449
  int32_t code = TSDB_CODE_SUCCESS;
wmmhello's avatar
wmmhello 已提交
2450
  for (int i = 0; i < tags->numOfBound; ++i) {
X
Xiaoyu Wang 已提交
2451
    SSchema* pTagSchema = &pSchema[tags->boundColumns[i]];
2452
    SSmlKv*  kv = taosArrayGetP(cols, i);
wmmhello's avatar
wmmhello 已提交
2453

wmmhello's avatar
wmmhello 已提交
2454
    taosArrayPush(*tagName, pTagSchema->name);
wmmhello's avatar
wmmhello 已提交
2455
    STagVal val = {.cid = pTagSchema->colId, .type = pTagSchema->type};
2456
    //    strcpy(val.colName, pTagSchema->name);
2457 2458
    if (pTagSchema->type == TSDB_DATA_TYPE_BINARY) {
      val.pData = (uint8_t*)kv->value;
wmmhello's avatar
wmmhello 已提交
2459
      val.nData = kv->length;
2460
    } else if (pTagSchema->type == TSDB_DATA_TYPE_NCHAR) {
wmmhello's avatar
wmmhello 已提交
2461
      int32_t output = 0;
X
Xiaoyu Wang 已提交
2462 2463
      void*   p = taosMemoryCalloc(1, kv->length * TSDB_NCHAR_SIZE);
      if (p == NULL) {
wmmhello's avatar
wmmhello 已提交
2464 2465 2466
        code = TSDB_CODE_OUT_OF_MEMORY;
        goto end;
      }
wmmhello's avatar
wmmhello 已提交
2467
      if (!taosMbsToUcs4(kv->value, kv->length, (TdUcs4*)(p), kv->length * TSDB_NCHAR_SIZE, &output)) {
wmmhello's avatar
wmmhello 已提交
2468 2469
        if (errno == E2BIG) {
          taosMemoryFree(p);
wmmhello's avatar
wmmhello 已提交
2470
          code = generateSyntaxErrMsg(msg, TSDB_CODE_PAR_VALUE_TOO_LONG, pTagSchema->name);
wmmhello's avatar
wmmhello 已提交
2471 2472 2473 2474 2475 2476 2477 2478 2479 2480
          goto end;
        }
        char buf[512] = {0};
        snprintf(buf, tListLen(buf), " taosMbsToUcs4 error:%s", strerror(errno));
        taosMemoryFree(p);
        code = buildSyntaxErrMsg(msg, buf, kv->value);
        goto end;
      }
      val.pData = p;
      val.nData = output;
2481
    } else {
wmmhello's avatar
wmmhello 已提交
2482
      memcpy(&val.i64, &(kv->value), kv->length);
wmmhello's avatar
wmmhello 已提交
2483
    }
wmmhello's avatar
wmmhello 已提交
2484
    taosArrayPush(pTagArray, &val);
wmmhello's avatar
wmmhello 已提交
2485 2486
  }

wmmhello's avatar
wmmhello 已提交
2487 2488 2489
  code = tTagNew(pTagArray, 1, false, ppTag);
end:
  for (int i = 0; i < taosArrayGetSize(pTagArray); ++i) {
2490 2491
    STagVal* p = (STagVal*)taosArrayGet(pTagArray, i);
    if (p->type == TSDB_DATA_TYPE_NCHAR) {
wmmhello's avatar
wmmhello 已提交
2492 2493
      taosMemoryFree(p->pData);
    }
wmmhello's avatar
wmmhello 已提交
2494
  }
C
Cary Xu 已提交
2495
  taosArrayDestroy(pTagArray);
wmmhello's avatar
wmmhello 已提交
2496
  return code;
wmmhello's avatar
wmmhello 已提交
2497 2498
}

2499
int32_t smlBindData(void* handle, SArray* tags, SArray* colsSchema, SArray* cols, bool format, STableMeta* pTableMeta,
wmmhello's avatar
wmmhello 已提交
2500
                    char* tableName, const char* sTableName, int32_t sTableNameLen, char* msgBuf, int16_t msgBufLen) {
wmmhello's avatar
wmmhello 已提交
2501 2502
  SMsgBuf pBuf = {.buf = msgBuf, .len = msgBufLen};

X
Xiaoyu Wang 已提交
2503
  SSmlExecHandle* smlHandle = (SSmlExecHandle*)handle;
2504 2505
  smlDestroyTableHandle(&smlHandle->tableExecHandle);  // free for each table
  SSchema* pTagsSchema = getTableTagSchema(pTableMeta);
wmmhello's avatar
wmmhello 已提交
2506
  setBoundColumnInfo(&smlHandle->tableExecHandle.tags, pTagsSchema, getNumOfTags(pTableMeta));
2507
  int ret = smlBoundColumnData(tags, &smlHandle->tableExecHandle.tags, pTagsSchema, true);
X
Xiaoyu Wang 已提交
2508
  if (ret != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
2509 2510 2511
    buildInvalidOperationMsg(&pBuf, "bound tags error");
    return ret;
  }
2512
  STag*   pTag = NULL;
wmmhello's avatar
wmmhello 已提交
2513 2514
  SArray* tagName = NULL;
  ret = smlBuildTagRow(tags, &smlHandle->tableExecHandle.tags, pTagsSchema, &pTag, &tagName, &pBuf);
X
Xiaoyu Wang 已提交
2515
  if (ret != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
2516
    taosArrayDestroy(tagName);
wmmhello's avatar
wmmhello 已提交
2517 2518
    return ret;
  }
wmmhello's avatar
wmmhello 已提交
2519

2520 2521
  buildCreateTbReq(&smlHandle->tableExecHandle.createTblReq, tableName, pTag, pTableMeta->suid, NULL, tagName,
                   pTableMeta->tableInfo.numOfTags);
wmmhello's avatar
wmmhello 已提交
2522 2523
  taosArrayDestroy(tagName);

2524 2525 2526
  smlHandle->tableExecHandle.createTblReq.ctb.stbName = taosMemoryMalloc(sTableNameLen + 1);
  memcpy(smlHandle->tableExecHandle.createTblReq.ctb.stbName, sTableName, sTableNameLen);
  smlHandle->tableExecHandle.createTblReq.ctb.stbName[sTableNameLen] = 0;
wmmhello's avatar
wmmhello 已提交
2527

wmmhello's avatar
wmmhello 已提交
2528
  STableDataBlocks* pDataBlock = NULL;
X
Xiaoyu Wang 已提交
2529 2530
  ret = getDataBlockFromList(smlHandle->pBlockHash, &pTableMeta->uid, sizeof(pTableMeta->uid),
                             TSDB_DEFAULT_PAYLOAD_SIZE, sizeof(SSubmitBlk), getTableInfo(pTableMeta).rowSize,
wmmhello's avatar
wmmhello 已提交
2531
                             pTableMeta, &pDataBlock, NULL, &smlHandle->tableExecHandle.createTblReq);
X
Xiaoyu Wang 已提交
2532
  if (ret != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
2533 2534 2535
    buildInvalidOperationMsg(&pBuf, "create data block error");
    return ret;
  }
wmmhello's avatar
wmmhello 已提交
2536 2537 2538

  SSchema* pSchema = getTableColumnSchema(pTableMeta);

2539
  ret = smlBoundColumnData(colsSchema, &pDataBlock->boundColumnInfo, pSchema, false);
X
Xiaoyu Wang 已提交
2540
  if (ret != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
2541 2542 2543
    buildInvalidOperationMsg(&pBuf, "bound cols error");
    return ret;
  }
X
Xiaoyu Wang 已提交
2544
  int32_t             extendedRowSize = getExtendedRowSize(pDataBlock);
wmmhello's avatar
wmmhello 已提交
2545 2546
  SParsedDataColInfo* spd = &pDataBlock->boundColumnInfo;
  SRowBuilder*        pBuilder = &pDataBlock->rowBuilder;
X
Xiaoyu Wang 已提交
2547
  SMemParam           param = {.rb = pBuilder};
wmmhello's avatar
wmmhello 已提交
2548 2549 2550

  initRowBuilder(&pDataBlock->rowBuilder, pDataBlock->pTableMeta->sversion, &pDataBlock->boundColumnInfo);

2551
  int32_t rowNum = taosArrayGetSize(cols);
2552
  if (rowNum <= 0) {
wmmhello's avatar
wmmhello 已提交
2553 2554
    return buildInvalidOperationMsg(&pBuf, "cols size <= 0");
  }
wmmhello's avatar
wmmhello 已提交
2555
  ret = allocateMemForSize(pDataBlock, extendedRowSize * rowNum);
X
Xiaoyu Wang 已提交
2556
  if (ret != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
2557 2558 2559
    buildInvalidOperationMsg(&pBuf, "allocate memory error");
    return ret;
  }
wmmhello's avatar
wmmhello 已提交
2560 2561 2562
  for (int32_t r = 0; r < rowNum; ++r) {
    STSRow* row = (STSRow*)(pDataBlock->pData + pDataBlock->size);  // skip the SSubmitBlk header
    tdSRowResetBuf(pBuilder, row);
2563
    void*  rowData = taosArrayGetP(cols, r);
2564
    size_t rowDataSize = 0;
2565
    if (format) {
2566
      rowDataSize = taosArrayGetSize(rowData);
wmmhello's avatar
wmmhello 已提交
2567
    }
wmmhello's avatar
wmmhello 已提交
2568 2569

    // 1. set the parsed value from sql string
2570
    for (int c = 0, j = 0; c < spd->numOfBound; ++c) {
2571
      SSchema* pColSchema = &pSchema[spd->boundColumns[c]];
wmmhello's avatar
wmmhello 已提交
2572 2573 2574 2575

      param.schema = pColSchema;
      getSTSRowAppendInfo(pBuilder->rowType, spd, c, &param.toffset, &param.colIdx);

X
Xiaoyu Wang 已提交
2576 2577 2578
      SSmlKv* kv = NULL;
      if (format) {
        if (j < rowDataSize) {
2579
          kv = taosArrayGetP(rowData, j);
2580
          if (rowDataSize != spd->numOfBound && j != 0 &&
X
Xiaoyu Wang 已提交
2581
              (kv->keyLen != strlen(pColSchema->name) || strncmp(kv->key, pColSchema->name, kv->keyLen) != 0)) {
2582
            kv = NULL;
X
Xiaoyu Wang 已提交
2583
          } else {
2584
            j++;
2585
          }
wmmhello's avatar
wmmhello 已提交
2586
        }
X
Xiaoyu Wang 已提交
2587 2588 2589
      } else {
        void** p = taosHashGet(rowData, pColSchema->name, strlen(pColSchema->name));
        if (p) kv = *p;
wmmhello's avatar
wmmhello 已提交
2590
      }
wmmhello's avatar
wmmhello 已提交
2591

2592
      if (kv) {
wmmhello's avatar
wmmhello 已提交
2593 2594
        int32_t colLen = kv->length;
        if (pColSchema->type == TSDB_DATA_TYPE_TIMESTAMP) {
S
Shengliang Guan 已提交
2595
          //          uError("SML:data before:%" PRId64 ", precision:%d", kv->i, pTableMeta->tableInfo.precision);
2596
          kv->i = convertTimePrecision(kv->i, TSDB_TIME_PRECISION_NANO, pTableMeta->tableInfo.precision);
S
Shengliang Guan 已提交
2597
          //          uError("SML:data after:%" PRId64 ", precision:%d", kv->i, pTableMeta->tableInfo.precision);
wmmhello's avatar
wmmhello 已提交
2598 2599
        }

2600
        if (IS_VAR_DATA_TYPE(kv->type)) {
wmmhello's avatar
wmmhello 已提交
2601
          MemRowAppend(&pBuf, kv->value, colLen, &param);
2602
        } else {
wmmhello's avatar
wmmhello 已提交
2603 2604
          MemRowAppend(&pBuf, &(kv->value), colLen, &param);
        }
2605
      } else {
2606
        pBuilder->hasNone = true;
wmmhello's avatar
wmmhello 已提交
2607 2608 2609 2610
      }

      if (PRIMARYKEY_TIMESTAMP_COL_ID == pColSchema->colId) {
        TSKEY tsKey = TD_ROW_KEY(row);
X
Xiaoyu Wang 已提交
2611
        checkTimestamp(pDataBlock, (const char*)&tsKey);
wmmhello's avatar
wmmhello 已提交
2612 2613 2614 2615 2616
      }
    }

    // set the null value for the columns that do not assign values
    if ((spd->numOfBound < spd->numOfCols) && TD_IS_TP_ROW(row)) {
C
Cary Xu 已提交
2617
      pBuilder->hasNone = true;
wmmhello's avatar
wmmhello 已提交
2618 2619
    }

2620
    tdSRowEnd(pBuilder);
wmmhello's avatar
wmmhello 已提交
2621 2622 2623
    pDataBlock->size += extendedRowSize;
  }

X
Xiaoyu Wang 已提交
2624
  SSubmitBlk* pBlocks = (SSubmitBlk*)(pDataBlock->pData);
wmmhello's avatar
wmmhello 已提交
2625
  if (TSDB_CODE_SUCCESS != setBlockInfo(pBlocks, pDataBlock, rowNum)) {
2626
    return buildInvalidOperationMsg(&pBuf, "too many rows in sql, total number of rows should be less than INT32_MAX");
wmmhello's avatar
wmmhello 已提交
2627 2628 2629 2630 2631
  }

  return TSDB_CODE_SUCCESS;
}

X
Xiaoyu Wang 已提交
2632 2633 2634
void* smlInitHandle(SQuery* pQuery) {
  SSmlExecHandle* handle = taosMemoryCalloc(1, sizeof(SSmlExecHandle));
  if (!handle) return NULL;
wmmhello's avatar
wmmhello 已提交
2635 2636 2637 2638 2639 2640
  handle->pBlockHash = taosHashInit(16, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), true, false);
  handle->pQuery = pQuery;

  return handle;
}

X
Xiaoyu Wang 已提交
2641 2642 2643
void smlDestroyHandle(void* pHandle) {
  if (!pHandle) return;
  SSmlExecHandle* handle = (SSmlExecHandle*)pHandle;
wmmhello's avatar
wmmhello 已提交
2644
  destroyBlockHashmap(handle->pBlockHash);
wmmhello's avatar
wmmhello 已提交
2645
  smlDestroyTableHandle(&handle->tableExecHandle);
wmmhello's avatar
wmmhello 已提交
2646 2647 2648 2649
  taosMemoryFree(handle);
}

int32_t smlBuildOutput(void* handle, SHashObj* pVgHash) {
X
Xiaoyu Wang 已提交
2650
  SSmlExecHandle* smlHandle = (SSmlExecHandle*)handle;
wmmhello's avatar
wmmhello 已提交
2651 2652
  return qBuildStmtOutput(smlHandle->pQuery, pVgHash, smlHandle->pBlockHash);
}
wmmhello's avatar
wmmhello 已提交
2653
// schemaless logic end