parInsertStmt.c 15.2 KB
Newer Older
X
Xiaoyu Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * 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/>.
 */

#include "os.h"
#include "parInsertUtil.h"
#include "parInt.h"
#include "parToken.h"
#include "query.h"
#include "tglobal.h"
#include "ttime.h"
#include "ttypes.h"

typedef struct SKvParam {
  int16_t  pos;
  SArray*  pTagVals;
  SSchema* schema;
  char     buf[TSDB_MAX_TAGS_LEN];
} SKvParam;

D
dapan1121 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
int32_t qCloneCurrentTbData(STableDataCxt*       pDataBlock, SSubmitTbData **pData) {
  *pData = taosMemoryCalloc(1, sizeof(SSubmitTbData));
  if (NULL == *pData) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  SSubmitTbData *pNew = *pData;
  
  *pNew = *pDataBlock->pData;
  
  cloneSVreateTbReq(pDataBlock->pData->pCreateTbReq, &pNew->pCreateTbReq);
  pNew->aCol = taosArrayDup(pDataBlock->pData->aCol, NULL);

  int32_t colNum = taosArrayGetSize(pNew->aCol);
  for (int32_t i = 0; i < colNum; ++i) {
    SColData *pCol = (SColData*)taosArrayGet(pNew->aCol, i);
    tColDataDeepClear(pCol);
  }

  return TSDB_CODE_SUCCESS;
}


X
Xiaoyu Wang 已提交
55
int32_t qBuildStmtOutput(SQuery* pQuery, SHashObj* pVgHash, SHashObj* pBlockHash) {
X
Xiaoyu Wang 已提交
56 57
  int32_t code = TSDB_CODE_SUCCESS;
  SArray* pVgDataBlocks = NULL;
D
dapan1121 已提交
58 59
  SVnodeModifOpStmt *pStmt = (SVnodeModifOpStmt*)pQuery->pRoot;
  
X
Xiaoyu Wang 已提交
60
  // merge according to vgId
X
Xiaoyu Wang 已提交
61
  if (taosHashGetSize(pBlockHash) > 0) {
D
dapan1121 已提交
62
    code = insMergeTableDataCxt(pBlockHash, &pVgDataBlocks);
X
Xiaoyu Wang 已提交
63
  }
X
Xiaoyu Wang 已提交
64
  if (TSDB_CODE_SUCCESS == code) {
D
dapan1121 已提交
65 66 67 68 69
    code = insBuildVgDataBlocks(pVgHash, pVgDataBlocks, &pStmt->pDataBlocks);
  }
  
  if (pStmt->freeArrayFunc) {
    pStmt->freeArrayFunc(pVgDataBlocks);
X
Xiaoyu Wang 已提交
70 71
  }
  return code;
X
Xiaoyu Wang 已提交
72 73 74 75
}

int32_t qBindStmtTagsValue(void* pBlock, void* boundTags, int64_t suid, const char* sTableName, char* tName,
                           TAOS_MULTI_BIND* bind, char* msgBuf, int32_t msgBufLen) {
D
dapan1121 已提交
76
  STableDataCxt*   pDataBlock = (STableDataCxt*)pBlock;
X
Xiaoyu Wang 已提交
77
  SMsgBuf             pBuf = {.buf = msgBuf, .len = msgBufLen};
D
dapan1121 已提交
78
  int32_t  code = TSDB_CODE_SUCCESS;
79
  SBoundColInfo* tags = (SBoundColInfo*)boundTags;
X
Xiaoyu Wang 已提交
80 81 82 83 84 85 86 87 88 89 90
  if (NULL == tags) {
    return TSDB_CODE_QRY_APP_ERROR;
  }

  SArray* pTagArray = taosArrayInit(tags->numOfBound, sizeof(STagVal));
  if (!pTagArray) {
    return buildInvalidOperationMsg(&pBuf, "out of memory");
  }

  SArray* tagName = taosArrayInit(8, TSDB_COL_NAME_LEN);
  if (!tagName) {
D
dapan1121 已提交
91 92
    code = buildInvalidOperationMsg(&pBuf, "out of memory");
    goto end;
X
Xiaoyu Wang 已提交
93 94
  }

D
dapan1121 已提交
95
  SSchema* pSchema = getTableTagSchema(pDataBlock->pMeta);
X
Xiaoyu Wang 已提交
96 97 98 99 100 101 102 103 104

  bool  isJson = false;
  STag* pTag = NULL;

  for (int c = 0; c < tags->numOfBound; ++c) {
    if (bind[c].is_null && bind[c].is_null[0]) {
      continue;
    }

105
    SSchema* pTagSchema = &pSchema[tags->pColIndex[c]];
X
Xiaoyu Wang 已提交
106 107 108
    int32_t  colLen = pTagSchema->bytes;
    if (IS_VAR_DATA_TYPE(pTagSchema->type)) {
      colLen = bind[c].length[0];
D
dapan1121 已提交
109 110 111 112
      if ((colLen + VARSTR_HEADER_SIZE) > pTagSchema->bytes) {
        code = buildInvalidOperationMsg(&pBuf, "tag length is too big");
        goto end;
      }
X
Xiaoyu Wang 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 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 159 160 161 162 163 164 165 166
    }
    taosArrayPush(tagName, pTagSchema->name);
    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;
      }

      isJson = true;
      char* tmp = taosMemoryCalloc(1, colLen + 1);
      memcpy(tmp, bind[c].buffer, colLen);
      code = parseJsontoTagData(tmp, pTagArray, &pTag, &pBuf);
      taosMemoryFree(tmp);
      if (code != TSDB_CODE_SUCCESS) {
        goto end;
      }
    } else {
      STagVal val = {.cid = pTagSchema->colId, .type = pTagSchema->type};
      //      strcpy(val.colName, pTagSchema->name);
      if (pTagSchema->type == TSDB_DATA_TYPE_BINARY) {
        val.pData = (uint8_t*)bind[c].buffer;
        val.nData = colLen;
      } else if (pTagSchema->type == TSDB_DATA_TYPE_NCHAR) {
        int32_t output = 0;
        void*   p = taosMemoryCalloc(1, colLen * TSDB_NCHAR_SIZE);
        if (p == NULL) {
          code = TSDB_CODE_OUT_OF_MEMORY;
          goto end;
        }
        if (!taosMbsToUcs4(bind[c].buffer, colLen, (TdUcs4*)(p), colLen * TSDB_NCHAR_SIZE, &output)) {
          if (errno == E2BIG) {
            taosMemoryFree(p);
            code = generateSyntaxErrMsg(&pBuf, TSDB_CODE_PAR_VALUE_TOO_LONG, pTagSchema->name);
            goto end;
          }
          char buf[512] = {0};
          snprintf(buf, tListLen(buf), " taosMbsToUcs4 error:%s", strerror(errno));
          taosMemoryFree(p);
          code = buildSyntaxErrMsg(&pBuf, buf, bind[c].buffer);
          goto end;
        }
        val.pData = p;
        val.nData = output;
      } else {
        memcpy(&val.i64, bind[c].buffer, colLen);
      }
      taosArrayPush(pTagArray, &val);
    }
  }

  if (!isJson && (code = tTagNew(pTagArray, 1, false, &pTag)) != TSDB_CODE_SUCCESS) {
    goto end;
  }

D
dapan1121 已提交
167 168 169 170 171 172 173 174
  if (NULL == pDataBlock->pData->pCreateTbReq) {
    pDataBlock->pData->pCreateTbReq = taosMemoryCalloc(1, sizeof(SVCreateTbReq));
    if (NULL == pDataBlock->pData->pCreateTbReq) {
      code = TSDB_CODE_OUT_OF_MEMORY;
      goto end;
    }
  }

D
dapan1121 已提交
175
  insBuildCreateTbReq(pDataBlock->pData->pCreateTbReq, tName, pTag, suid, sTableName, tagName, pDataBlock->pMeta->tableInfo.numOfTags, TSDB_DEFAULT_TABLE_TTL);
X
Xiaoyu Wang 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189

end:
  for (int i = 0; i < taosArrayGetSize(pTagArray); ++i) {
    STagVal* p = (STagVal*)taosArrayGet(pTagArray, i);
    if (p->type == TSDB_DATA_TYPE_NCHAR) {
      taosMemoryFreeClear(p->pData);
    }
  }
  taosArrayDestroy(pTagArray);
  taosArrayDestroy(tagName);

  return code;
}

D
dapan1121 已提交
190
int32_t convertStmtNcharCol(SMsgBuf* pMsgBuf, SSchema* pSchema, TAOS_MULTI_BIND* src, TAOS_MULTI_BIND* dst) {
D
dapan1121 已提交
191
  int32_t output = 0;
D
dapan1121 已提交
192
  int32_t newBuflen = (pSchema->bytes - VARSTR_HEADER_SIZE) * src->num;
D
dapan1121 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206
  if (dst->buffer_length < newBuflen) {
    dst->buffer = taosMemoryRealloc(dst->buffer, newBuflen);
    if (NULL == dst->buffer) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }

  if (NULL == dst->length) {
    dst->length = taosMemoryRealloc(dst->length, sizeof(int32_t) * src->num);
    if (NULL == dst->buffer) {
      taosMemoryFreeClear(dst->buffer);
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }
D
dapan1121 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221

  dst->buffer_length = pSchema->bytes - VARSTR_HEADER_SIZE;

  for (int32_t i = 0; i < src->num; ++i) {
    if (src->is_null && src->is_null[i]) {
      continue;
    }
    
    if (!taosMbsToUcs4(src->buffer + src->buffer_length * i, src->length[i], (TdUcs4*)(dst->buffer + dst->buffer_length * i), dst->buffer_length, &output)) {
      if (errno == E2BIG) {
        return generateSyntaxErrMsg(pMsgBuf, TSDB_CODE_PAR_VALUE_TOO_LONG, pSchema->name);
      }
      char buf[512] = {0};
      snprintf(buf, tListLen(buf), "%s", strerror(errno));
      return buildSyntaxErrMsg(pMsgBuf, buf, NULL);
D
dapan1121 已提交
222
    }
D
dapan1121 已提交
223 224

    dst->length[i] = output;
D
dapan1121 已提交
225 226
  }

D
dapan1121 已提交
227 228 229 230 231
  dst->buffer_type = src->buffer_type;
  dst->is_null = src->is_null;
  dst->num = src->num;

  return TSDB_CODE_SUCCESS;
D
dapan1121 已提交
232 233
}

X
Xiaoyu Wang 已提交
234
int32_t qBindStmtColsValue(void* pBlock, TAOS_MULTI_BIND* bind, char* msgBuf, int32_t msgBufLen) {
D
dapan1121 已提交
235 236 237
  STableDataCxt*      pDataBlock = (STableDataCxt*)pBlock;
  SSchema*            pSchema = getTableColumnSchema(pDataBlock->pMeta);
  SBoundColInfo*      boundInfo = &pDataBlock->boundColsInfo;
X
Xiaoyu Wang 已提交
238 239
  SMsgBuf             pBuf = {.buf = msgBuf, .len = msgBufLen};
  int32_t             rowNum = bind->num;
D
dapan1121 已提交
240 241 242
  TAOS_MULTI_BIND     ncharBind = {0};
  TAOS_MULTI_BIND*    pBind = NULL;
  int32_t             code = 0;
X
Xiaoyu Wang 已提交
243

D
dapan1121 已提交
244 245 246
  for (int c = 0; c < boundInfo->numOfBound; ++c) {
    SSchema* pColSchema = &pSchema[boundInfo->pColIndex[c]];
    SColData* pCol = taosArrayGet(pDataBlock->pData->aCol, c);
X
Xiaoyu Wang 已提交
247

D
dapan1121 已提交
248
    if (bind[c].num != rowNum) {
D
dapan1121 已提交
249 250
      code = buildInvalidOperationMsg(&pBuf, "row number in each bind param should be the same");
      goto _return;
X
Xiaoyu Wang 已提交
251
    }
D
dapan1121 已提交
252 253

    if (bind[c].buffer_type != pColSchema->type) {
D
dapan1121 已提交
254 255
      code = buildInvalidOperationMsg(&pBuf, "column type mis-match with buffer type");
      goto _return;
X
Xiaoyu Wang 已提交
256
    }
D
dapan1121 已提交
257

D
dapan1121 已提交
258
    if (TSDB_DATA_TYPE_NCHAR == pColSchema->type) {
D
dapan1121 已提交
259
      code = convertStmtNcharCol(&pBuf, pColSchema, bind + c, &ncharBind);
D
dapan1121 已提交
260 261 262 263 264 265 266 267 268
      if (code) {
        goto _return;
      }
      pBind = &ncharBind;
    } else {
      pBind = bind + c;
    }

    tColDataAddValueByBind(pCol, pBind);
X
Xiaoyu Wang 已提交
269 270
  }

D
dapan1121 已提交
271 272
  qDebug("stmt all %d columns bind %d rows data", boundInfo->numOfBound, rowNum);

D
dapan1121 已提交
273 274 275 276 277 278
_return:

  taosMemoryFree(ncharBind.buffer);
  taosMemoryFree(ncharBind.length);

  return code;
X
Xiaoyu Wang 已提交
279 280 281 282
}

int32_t qBindStmtSingleColValue(void* pBlock, TAOS_MULTI_BIND* bind, char* msgBuf, int32_t msgBufLen, int32_t colIdx,
                                int32_t rowNum) {
D
dapan1121 已提交
283 284 285
  STableDataCxt*      pDataBlock = (STableDataCxt*)pBlock;
  SSchema*            pSchema = getTableColumnSchema(pDataBlock->pMeta);
  SBoundColInfo*      boundInfo = &pDataBlock->boundColsInfo;
X
Xiaoyu Wang 已提交
286
  SMsgBuf             pBuf = {.buf = msgBuf, .len = msgBufLen};
D
dapan1121 已提交
287 288
  SSchema*            pColSchema = &pSchema[boundInfo->pColIndex[colIdx]];
  SColData*           pCol = taosArrayGet(pDataBlock->pData->aCol, colIdx);
D
dapan1121 已提交
289 290 291
  TAOS_MULTI_BIND     ncharBind = {0};
  TAOS_MULTI_BIND*    pBind = NULL;
  int32_t             code = 0;
D
dapan1121 已提交
292
  
D
dapan1121 已提交
293
  if (bind->num != rowNum) {
D
dapan1121 已提交
294
    return buildInvalidOperationMsg(&pBuf, "row number in each bind param should be the same");
X
Xiaoyu Wang 已提交
295
  }
D
dapan1121 已提交
296
  
D
dapan1121 已提交
297
  if (bind->buffer_type != pColSchema->type) {
D
dapan1121 已提交
298
    return buildInvalidOperationMsg(&pBuf, "column type mis-match with buffer type");
X
Xiaoyu Wang 已提交
299
  }
D
dapan1121 已提交
300 301 302 303 304 305 306 307 308 309

  if (TSDB_DATA_TYPE_NCHAR == pColSchema->type) {
    code = convertStmtNcharCol(&pBuf, pColSchema, bind, &ncharBind);
    if (code) {
      goto _return;
    }
    pBind = &ncharBind;
  } else {
    pBind = bind;
  }
D
dapan1121 已提交
310
  
D
dapan1121 已提交
311
  tColDataAddValueByBind(pCol, pBind);
X
Xiaoyu Wang 已提交
312

D
dapan1121 已提交
313 314
  qDebug("stmt col %d bind %d rows data", colIdx, rowNum);

D
dapan1121 已提交
315 316 317 318 319 320
_return:

  taosMemoryFree(ncharBind.buffer);
  taosMemoryFree(ncharBind.length);

  return code;
X
Xiaoyu Wang 已提交
321 322
}

D
dapan1121 已提交
323
int32_t buildBoundFields(int32_t numOfBound, int16_t* boundColumns, SSchema* pSchema, int32_t* fieldNum, TAOS_FIELD_E** fields,
X
Xiaoyu Wang 已提交
324 325
                         uint8_t timePrec) {
  if (fields) {
D
dapan1121 已提交
326
    *fields = taosMemoryCalloc(numOfBound, sizeof(TAOS_FIELD_E));
X
Xiaoyu Wang 已提交
327 328 329 330
    if (NULL == *fields) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }

D
dapan1121 已提交
331
    SSchema* schema = &pSchema[boundColumns[0]];
X
Xiaoyu Wang 已提交
332 333 334 335
    if (TSDB_DATA_TYPE_TIMESTAMP == schema->type) {
      (*fields)[0].precision = timePrec;
    }

D
dapan1121 已提交
336 337
    for (int32_t i = 0; i < numOfBound; ++i) {
      schema = &pSchema[boundColumns[i]];
X
Xiaoyu Wang 已提交
338 339 340 341 342 343
      strcpy((*fields)[i].name, schema->name);
      (*fields)[i].type = schema->type;
      (*fields)[i].bytes = schema->bytes;
    }
  }

D
dapan1121 已提交
344
  *fieldNum = numOfBound;
X
Xiaoyu Wang 已提交
345 346 347 348 349

  return TSDB_CODE_SUCCESS;
}

int32_t qBuildStmtTagFields(void* pBlock, void* boundTags, int32_t* fieldNum, TAOS_FIELD_E** fields) {
D
dapan1121 已提交
350
  STableDataCxt*   pDataBlock = (STableDataCxt*)pBlock;
351
  SBoundColInfo* tags = (SBoundColInfo*)boundTags;
X
Xiaoyu Wang 已提交
352 353 354 355
  if (NULL == tags) {
    return TSDB_CODE_QRY_APP_ERROR;
  }

D
dapan1121 已提交
356
  if (pDataBlock->pMeta->tableType != TSDB_SUPER_TABLE && pDataBlock->pMeta->tableType != TSDB_CHILD_TABLE) {
X
Xiaoyu Wang 已提交
357 358 359
    return TSDB_CODE_TSC_STMT_API_ERROR;
  }

D
dapan1121 已提交
360
  SSchema* pSchema = getTableTagSchema(pDataBlock->pMeta);
X
Xiaoyu Wang 已提交
361 362 363 364 365 366 367
  if (tags->numOfBound <= 0) {
    *fieldNum = 0;
    *fields = NULL;

    return TSDB_CODE_SUCCESS;
  }

368
  CHECK_CODE(buildBoundFields(tags->numOfBound, tags->pColIndex, pSchema, fieldNum, fields, 0));
X
Xiaoyu Wang 已提交
369 370 371 372 373

  return TSDB_CODE_SUCCESS;
}

int32_t qBuildStmtColFields(void* pBlock, int32_t* fieldNum, TAOS_FIELD_E** fields) {
D
dapan1121 已提交
374 375 376
  STableDataCxt* pDataBlock = (STableDataCxt*)pBlock;
  SSchema*       pSchema = getTableColumnSchema(pDataBlock->pMeta);
  if (pDataBlock->boundColsInfo.numOfBound <= 0) {
X
Xiaoyu Wang 已提交
377 378 379 380 381 382 383 384
    *fieldNum = 0;
    if (fields) {
      *fields = NULL;
    }

    return TSDB_CODE_SUCCESS;
  }

D
dapan1121 已提交
385
  CHECK_CODE(buildBoundFields(pDataBlock->boundColsInfo.numOfBound, pDataBlock->boundColsInfo.pColIndex, pSchema, fieldNum, fields,
D
dapan1121 已提交
386
                              pDataBlock->pMeta->tableInfo.precision));
X
Xiaoyu Wang 已提交
387 388 389 390

  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
391
int32_t qResetStmtDataBlock(STableDataCxt* block, bool deepClear) {
D
dapan1121 已提交
392 393
  STableDataCxt* pBlock = (STableDataCxt*)block;
  int32_t colNum = taosArrayGetSize(pBlock->pData->aCol);
X
Xiaoyu Wang 已提交
394

D
dapan1121 已提交
395 396 397 398 399 400
  for (int32_t i = 0; i < colNum; ++i) {
    SColData *pCol = (SColData*)taosArrayGet(pBlock->pData->aCol, i);
    if (deepClear) {
      tColDataDeepClear(pCol);
    } else {
      tColDataClear(pCol);
X
Xiaoyu Wang 已提交
401 402 403 404 405 406
    }
  }

  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
407
int32_t qCloneStmtDataBlock(STableDataCxt** pDst, STableDataCxt* pSrc, bool reset) {
D
dapan1121 已提交
408 409 410
  int32_t code = 0;
  
  *pDst = taosMemoryCalloc(1, sizeof(STableDataCxt));
X
Xiaoyu Wang 已提交
411 412 413 414
  if (NULL == *pDst) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

D
dapan1121 已提交
415 416 417 418
  STableDataCxt* pNewCxt = (STableDataCxt*)*pDst;
  STableDataCxt* pCxt = (STableDataCxt*)pSrc;
  pNewCxt->pSchema = NULL;
  pNewCxt->pValues = NULL;
X
Xiaoyu Wang 已提交
419

D
dapan1121 已提交
420 421
  if (pCxt->pMeta) {
    void* pNewMeta = taosMemoryMalloc(TABLE_META_SIZE(pCxt->pMeta));
X
Xiaoyu Wang 已提交
422
    if (NULL == pNewMeta) {
D
dapan1121 已提交
423
      insDestroyTableDataCxt(*pDst);
X
Xiaoyu Wang 已提交
424 425
      return TSDB_CODE_OUT_OF_MEMORY;
    }
D
dapan1121 已提交
426 427
    memcpy(pNewMeta, pCxt->pMeta, TABLE_META_SIZE(pCxt->pMeta));
    pNewCxt->pMeta = pNewMeta;
X
Xiaoyu Wang 已提交
428 429
  }

D
dapan1121 已提交
430 431 432 433 434 435 436 437 438 439 440
  memcpy(&pNewCxt->boundColsInfo, &pCxt->boundColsInfo, sizeof(pCxt->boundColsInfo));
  pNewCxt->boundColsInfo.pColIndex = NULL;
  
  if (pCxt->boundColsInfo.pColIndex) {
    void* pNewColIdx = taosMemoryMalloc(pCxt->boundColsInfo.numOfBound * sizeof(*pCxt->boundColsInfo.pColIndex));
    if (NULL == pNewColIdx) {
      insDestroyTableDataCxt(*pDst);
      return TSDB_CODE_OUT_OF_MEMORY;
    }
    memcpy(pNewColIdx, pCxt->boundColsInfo.pColIndex, pCxt->boundColsInfo.numOfBound * sizeof(*pCxt->boundColsInfo.pColIndex));
    pNewCxt->boundColsInfo.pColIndex = pNewColIdx;
X
Xiaoyu Wang 已提交
441 442
  }

D
dapan1121 已提交
443 444 445 446 447 448
  if (pCxt->pData) {
    SSubmitTbData *pNewTb = (SSubmitTbData*)taosMemoryMalloc(sizeof(SSubmitTbData));
    if (NULL == pNewTb) {
      insDestroyTableDataCxt(*pDst);
      return TSDB_CODE_OUT_OF_MEMORY;
    }
X
Xiaoyu Wang 已提交
449

D
dapan1121 已提交
450 451
    memcpy(pNewTb, pCxt->pData, sizeof(*pCxt->pData));
    pNewTb->pCreateTbReq = NULL;
X
Xiaoyu Wang 已提交
452

D
dapan1121 已提交
453 454 455 456 457
    pNewTb->aCol = taosArrayDup(pCxt->pData->aCol, NULL);
    if (NULL == pNewTb) {
      insDestroyTableDataCxt(*pDst);
      return TSDB_CODE_OUT_OF_MEMORY;
    }
D
dapan1121 已提交
458 459

    pNewCxt->pData = pNewTb;
D
dapan1121 已提交
460 461 462 463
    
    if (reset) {
      code = qResetStmtDataBlock(*pDst, true);
    }
X
Xiaoyu Wang 已提交
464 465
  }

D
dapan1121 已提交
466 467
  
  return code;
X
Xiaoyu Wang 已提交
468 469
}

D
dapan1121 已提交
470
int32_t qRebuildStmtDataBlock(STableDataCxt** pDst, STableDataCxt* pSrc, uint64_t uid, int32_t vgId, bool rebuildCreateTb) {
D
dapan1121 已提交
471 472 473 474
  int32_t code = qCloneStmtDataBlock(pDst, pSrc, false);
  if (code) {
    return code;
  }
X
Xiaoyu Wang 已提交
475

D
dapan1121 已提交
476 477 478 479
  STableDataCxt* pBlock = (STableDataCxt*)*pDst;
  if (pBlock->pMeta) {
    pBlock->pMeta->uid = uid;
    pBlock->pMeta->vgId = vgId;
X
Xiaoyu Wang 已提交
480 481
  }

D
dapan1121 已提交
482
  if (rebuildCreateTb && NULL == pBlock->pData->pCreateTbReq) {
D
dapan1121 已提交
483 484 485 486 487 488
    pBlock->pData->pCreateTbReq = taosMemoryCalloc(1, sizeof(SVCreateTbReq));
    if (NULL == pBlock->pData->pCreateTbReq) {
      return TSDB_CODE_OUT_OF_MEMORY;
    }
  }

D
dapan1121 已提交
489
  return TSDB_CODE_SUCCESS;
X
Xiaoyu Wang 已提交
490 491
}

D
dapan1121 已提交
492
STableMeta* qGetTableMetaInDataBlock(STableDataCxt* pDataBlock) { return ((STableDataCxt*)pDataBlock)->pMeta; }
D
dapan1121 已提交
493

D
dapan1121 已提交
494
void qDestroyStmtDataBlock(STableDataCxt* pBlock) {
X
Xiaoyu Wang 已提交
495 496 497 498
  if (pBlock == NULL) {
    return;
  }

D
dapan1121 已提交
499 500
  STableDataCxt* pDataBlock = (STableDataCxt*)pBlock;
  insDestroyTableDataCxt(pDataBlock);
X
Xiaoyu Wang 已提交
501
}