• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

taosdata / TDengine / #5012

03 Apr 2026 03:59PM UTC coverage: 72.305% (+0.005%) from 72.3%
#5012

push

travis-ci

web-flow
merge: from main to 3.0 branch #35067

4053 of 5985 new or added lines in 68 files covered. (67.72%)

13105 existing lines in 173 files now uncovered.

257446 of 356056 relevant lines covered (72.3%)

131779375.07 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

82.52
/source/libs/executor/src/querytask.c
1
/*
2
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
3
 *
4
 * This program is free software: you can use, redistribute, and/or modify
5
 * it under the terms of the GNU Affero General Public License, version 3
6
 * or later ("AGPL"), as published by the Free Software Foundation.
7
 *
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10
 * FITNESS FOR A PARTICULAR PURPOSE.
11
 *
12
 * You should have received a copy of the GNU Affero General Public License
13
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14
 */
15

16
#include "filter.h"
17
#include "function.h"
18
#include "functionMgt.h"
19
#include "os.h"
20
#include "querynodes.h"
21
#include "tfill.h"
22
#include "tname.h"
23

24
#include "tdatablock.h"
25
#include "tmsg.h"
26
#include "streamMsg.h"
27

28
#include "executorInt.h"
29
#include "index.h"
30
#include "operator.h"
31
#include "query.h"
32
#include "querytask.h"
33
#include "storageapi.h"
34
#include "thash.h"
35
#include "ttypes.h"
36
#include "tref.h"
37

38
#define CLEAR_QUERY_STATUS(q, st) ((q)->status &= (~(st)))
39

40
int32_t doCreateTask(uint64_t queryId, uint64_t taskId, int32_t vgId, EOPTR_EXEC_MODEL model, SStorageAPI* pAPI,
371,077,702✔
41
                     SExecTaskInfo** pTaskInfo) {
42
  if (pTaskInfo == NULL) {
371,077,702✔
UNCOV
43
    return TSDB_CODE_SUCCESS;
×
44
  }
45

46
  SExecTaskInfo* p = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
371,077,702✔
47
  if (p == NULL) {
371,079,778✔
UNCOV
48
    return terrno;
×
49
  }
50

51
  setTaskStatus(p, TASK_NOT_COMPLETED);
371,079,778✔
52
  p->cost.created = taosGetTimestampUs();
371,094,075✔
53

54
  p->execModel = model;
371,064,911✔
55
  p->stopInfo.pStopInfo = taosArrayInit(4, sizeof(SExchangeOpStopInfo));
371,081,409✔
56
  p->pResultBlockList = taosArrayInit(128, POINTER_BYTES);
371,044,939✔
57
  if (p->stopInfo.pStopInfo == NULL || p->pResultBlockList == NULL) {
371,046,566✔
58
    doDestroyTask(p);
7,298✔
UNCOV
59
    return terrno;
×
60
  }
61

62
  p->storageAPI = *pAPI;
371,046,312✔
63
  taosInitRWLatch(&p->lock);
371,069,753✔
64

65
  p->id.vgId = vgId;
371,037,522✔
66
  p->id.queryId = queryId;
371,039,713✔
67
  p->id.taskId = taskId;
371,041,739✔
68
  p->id.str = taosMemoryMalloc(64);
371,052,922✔
69
  if (p->id.str == NULL) {
371,004,761✔
UNCOV
70
    doDestroyTask(p);
×
71
    return terrno;
×
72
  }
73

74
  buildTaskId(taskId, queryId, p->id.str, 64);
371,005,763✔
75
  p->schemaInfos = taosArrayInit(1, sizeof(SSchemaInfo));
371,012,747✔
76
  if (p->id.str == NULL || p->schemaInfos == NULL) {
370,967,039✔
77
    doDestroyTask(p);
21,813✔
UNCOV
78
    return terrno;
×
79
  }
80

81
  *pTaskInfo = p;
370,999,802✔
82
  return TSDB_CODE_SUCCESS;
371,008,212✔
83
}
84

85
int32_t getTaskCode(void* pTaskInfo) { return ((SExecTaskInfo*)pTaskInfo)->code; }
20,461✔
86

87
bool isTaskKilled(void* pTaskInfo) { return (0 != ((SExecTaskInfo*)pTaskInfo)->code); }
1,903,410,862✔
88

89
void setTaskKilled(SExecTaskInfo* pTaskInfo, int32_t rspCode) {
78,967✔
90
  pTaskInfo->code = rspCode;
78,967✔
91
  (void)stopTableScanOperator(pTaskInfo->pRoot, pTaskInfo->id.str, &pTaskInfo->storageAPI);
78,967✔
92
}
78,967✔
93

94
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1,142,100,767✔
95
  if (status == TASK_NOT_COMPLETED) {
1,142,100,767✔
96
    pTaskInfo->status = status;
371,271,789✔
97
  } else {
98
    // QUERY_NOT_COMPLETED is not compatible with any other status, so clear its position first
99
    CLEAR_QUERY_STATUS(pTaskInfo, TASK_NOT_COMPLETED);
770,828,978✔
100
    pTaskInfo->status |= status;
770,847,513✔
101
  }
102
}
1,142,117,419✔
103

104

105
int32_t initTaskSubJobCtx(SExecTaskInfo* pTaskInfo, SArray** subEndPoints, SReadHandle* readHandle) {
40,896,195✔
106
  int32_t code = 0, lino = 0;
40,896,195✔
107
  int32_t subJobNum = taosArrayGetSize(*subEndPoints);
40,896,195✔
108
  
109
  pTaskInfo->pSubJobCtx = taosMemoryCalloc(1, sizeof(*pTaskInfo->pSubJobCtx));
40,893,830✔
110
  TSDB_CHECK_NULL(pTaskInfo->pSubJobCtx, code, lino, _exit, terrno);
40,887,500✔
111
  
112
  STaskSubJobCtx* ctx = pTaskInfo->pSubJobCtx;
40,888,606✔
113

114
  ctx->queryId = pTaskInfo->id.queryId;
40,890,265✔
115
  ctx->taskId = pTaskInfo->id.taskId;
40,889,559✔
116
  ctx->idStr = pTaskInfo->id.str;
40,889,159✔
117
  ctx->pTaskInfo = pTaskInfo;
40,891,929✔
118
  ctx->subEndPoints = *subEndPoints;
40,889,712✔
119
  ctx->rpcHandle = (readHandle && readHandle->pMsgCb) ? readHandle->pMsgCb->clientRpc : NULL;
40,889,564✔
120
  ctx->isStream = pTaskInfo && IS_STREAM_MODE(pTaskInfo);
40,898,253✔
121

122
  *subEndPoints = NULL;
40,895,488✔
123
  
124
  ctx->subResNodes = taosArrayInit_s(POINTER_BYTES, subJobNum);
40,893,836✔
125
  if (NULL == ctx->subResNodes) {
40,886,399✔
UNCOV
126
    qError("%s taosArrayInit_s %d subResNodes failed, error:%s", GET_TASKID(pTaskInfo), subJobNum, tstrerror(terrno));
×
127
    TSDB_CHECK_NULL(ctx->subResNodes, code, lino, _exit, terrno);
×
128
  }
129
  
130
  TAOS_CHECK_EXIT(tsem_init(&ctx->ready, 0, 0));
40,891,223✔
131

132
  int64_t refId = taosAddRef(fetchObjRefPool, ctx);
40,886,399✔
133
  if (refId < 0) {
40,895,488✔
UNCOV
134
    qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(terrno));
×
135
    TAOS_CHECK_EXIT(terrno);
×
136
  }
137
  
138
  ctx->subJobRefId = refId;
40,895,488✔
139

140
  qDebug("%s subJobCtx %" PRIu64 " with %d endPoints inited", pTaskInfo->id.str, (uint64_t)refId, (int32_t)taosArrayGetSize(ctx->subEndPoints));
40,890,429✔
141

142
_exit:
39,917,963✔
143

144
  if (code) {
40,890,518✔
UNCOV
145
    destroySubJobCtx(pTaskInfo->pSubJobCtx);
×
146
    pTaskInfo->pSubJobCtx = NULL;
×
147
    
UNCOV
148
    qError("%s failed at line %d since %s", __func__, lino, tstrerror(code));
×
149
  }
150

151
  return code;
40,885,552✔
152
}
153

154

155

156
int32_t createExecTaskInfo(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
370,964,002✔
157
                           int32_t vgId, char* sql, EOPTR_EXEC_MODEL model, SArray** subEndPoints, bool enableExplain) {
158
  int32_t code = doCreateTask(pPlan->id.queryId, taskId, vgId, model, &pHandle->api, pTaskInfo);
370,964,002✔
159
  if (*pTaskInfo == NULL || code != 0) {
370,874,881✔
160
    nodesDestroyNode((SNode*)pPlan);
73✔
161
    return code;
×
162
  }
163

164
  (*pTaskInfo)->pSubplan = pPlan;
370,896,041✔
165

166
  if (NULL != sql) {
370,889,404✔
167
    (*pTaskInfo)->sql = taosStrdup(sql);
346,059,990✔
168
    if (NULL == (*pTaskInfo)->sql) {
346,086,828✔
UNCOV
169
      code = terrno;
×
170
      doDestroyTask(*pTaskInfo);
×
171
      (*pTaskInfo) = NULL;
×
172
      return code;
×
173
    }
174
  }
175

176
  (*pTaskInfo)->pWorkerCb = pHandle->pWorkerCb;
370,858,276✔
177
  (*pTaskInfo)->pStreamRuntimeInfo = pHandle->streamRtInfo;
370,921,423✔
178
  (*pTaskInfo)->enableExplain = enableExplain;
370,813,531✔
179

180
  if (subEndPoints && taosArrayGetSize(*subEndPoints) > 0) {
370,889,260✔
181
    code = initTaskSubJobCtx(*pTaskInfo, subEndPoints, pHandle);
40,899,354✔
182
    if (code != TSDB_CODE_SUCCESS) {
40,884,440✔
UNCOV
183
      doDestroyTask(*pTaskInfo);
×
184
      (*pTaskInfo) = NULL;
×
185
      return code;
×
186
    }
187
  }
188
  
189
  setTaskScalarExtraInfo(*pTaskInfo);
370,874,001✔
190
  
191
  code = createOperator(pPlan->pNode, *pTaskInfo, pHandle, pPlan->pTagCond, pPlan->pTagIndexCond, pPlan->user,
370,881,816✔
192
                        pPlan->dbFName, &((*pTaskInfo)->pRoot), model);
370,841,436✔
193

194
  if (NULL == (*pTaskInfo)->pRoot || code != 0) {
370,711,858✔
195
    doDestroyTask(*pTaskInfo);
879,638✔
196
    (*pTaskInfo) = NULL;
472,043✔
197
  }
198
  return code;
370,313,408✔
199
}
200

201
void cleanupQueriedTableScanInfo(void* p) {
270,702,643✔
202
  SSchemaInfo* pSchemaInfo = p;
270,702,643✔
203

204
  taosMemoryFreeClear(pSchemaInfo->dbname);
270,702,643✔
205
  taosMemoryFreeClear(pSchemaInfo->tablename);
270,699,855✔
206
  tDeleteSchemaWrapper(pSchemaInfo->sw);
270,679,940✔
207
  tDeleteSchemaWrapper(pSchemaInfo->qsw);
270,681,438✔
208
}
270,664,616✔
209

210
int32_t initQueriedTableSchemaInfo(SReadHandle* pHandle, SScanPhysiNode* pScanNode, const char* dbName,
270,756,192✔
211
                                   SExecTaskInfo* pTaskInfo) {
212
  SMetaReader mr = {0};
270,756,192✔
213
  if (pHandle == NULL) {
270,766,248✔
UNCOV
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  SStorageAPI* pAPI = &pTaskInfo->storageAPI;
270,766,248✔
218

219
  pAPI->metaReaderFn.initReader(&mr, pHandle->vnode, META_READER_LOCK, &pAPI->metaFn);
270,762,399✔
220
  int32_t code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, pScanNode->uid);
270,773,823✔
221
  if (code != TSDB_CODE_SUCCESS) {
270,438,762✔
UNCOV
222
    qError("failed to get the table meta, uid:0x%" PRIx64 ", suid:0x%" PRIx64 ", %s", pScanNode->uid, pScanNode->suid,
×
223
           GET_TASKID(pTaskInfo));
224

UNCOV
225
    pAPI->metaReaderFn.clearReader(&mr);
×
226
    return code;
×
227
  }
228

229
  SSchemaInfo schemaInfo = {0};
270,438,762✔
230

231
  schemaInfo.tablename = taosStrdup(mr.me.name);
270,502,744✔
232
  schemaInfo.dbname = taosStrdup(dbName);
270,589,999✔
233
  if (schemaInfo.tablename == NULL || schemaInfo.dbname == NULL) {
270,626,366✔
234
    pAPI->metaReaderFn.clearReader(&mr);
142,235✔
UNCOV
235
    cleanupQueriedTableScanInfo(&schemaInfo);
×
236
    return terrno;
×
237
  }
238

239
  if (mr.me.type == TSDB_VIRTUAL_NORMAL_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
270,484,150✔
240
    schemaInfo.rversion = mr.me.colRef.version;
298,920✔
241
  }
242

243
  if (mr.me.type == TSDB_SUPER_TABLE) {
270,484,150✔
244
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
121,087,017✔
245
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
121,087,017✔
246
  } else if (mr.me.type == TSDB_CHILD_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
149,492,509✔
247
    tDecoderClear(&mr.coder);
105,334,030✔
248

249
    tb_uid_t suid = mr.me.ctbEntry.suid;
105,299,721✔
250
    code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, suid);
105,299,721✔
251
    if (code != TSDB_CODE_SUCCESS) {
105,300,244✔
UNCOV
252
      pAPI->metaReaderFn.clearReader(&mr);
×
253
      cleanupQueriedTableScanInfo(&schemaInfo);
×
254
      return code;
×
255
    }
256

257
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
105,297,614✔
258
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
105,297,614✔
259
  } else {
260
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.ntbEntry.schemaRow);
44,207,988✔
261
  }
262

263
  pAPI->metaReaderFn.clearReader(&mr);
270,592,619✔
264

265
  if (schemaInfo.sw == NULL) {
270,525,282✔
UNCOV
266
    cleanupQueriedTableScanInfo(&schemaInfo);
×
267
    return terrno;
×
268
  }
269

270
  schemaInfo.qsw = extractQueriedColumnSchema(pScanNode);
270,525,282✔
271
  if (schemaInfo.qsw == NULL) {
270,602,226✔
UNCOV
272
    cleanupQueriedTableScanInfo(&schemaInfo);
×
273
    return terrno;
×
274
  }
275

276
  void* p = taosArrayPush(pTaskInfo->schemaInfos, &schemaInfo);
270,602,226✔
277
  if (p == NULL) {
270,677,757✔
UNCOV
278
    cleanupQueriedTableScanInfo(&schemaInfo);
×
279
    return terrno;
×
280
  }
281

282
  return code;
270,677,757✔
283
}
284

285
SSchemaWrapper* extractQueriedColumnSchema(SScanPhysiNode* pScanNode) {
270,589,588✔
286
  int32_t numOfCols = LIST_LENGTH(pScanNode->pScanCols);
270,589,588✔
287
  int32_t numOfTags = LIST_LENGTH(pScanNode->pScanPseudoCols);
270,631,374✔
288

289
  SSchemaWrapper* pqSw = taosMemoryCalloc(1, sizeof(SSchemaWrapper));
270,499,351✔
290
  if (pqSw == NULL) {
270,437,461✔
UNCOV
291
    return NULL;
×
292
  }
293

294
  pqSw->pSchema = taosMemoryCalloc(numOfCols + numOfTags, sizeof(SSchema));
270,437,461✔
295
  if (pqSw->pSchema == NULL) {
270,275,862✔
UNCOV
296
    taosMemoryFree(pqSw);
×
297
    return NULL;
×
298
  }
299

300
  for (int32_t i = 0; i < numOfCols; ++i) {
1,225,812,858✔
301
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanCols, i);
955,113,354✔
302
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
954,932,357✔
303

304
    SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
954,969,826✔
305
    pSchema->colId = pColNode->colId;
955,149,695✔
306
    pSchema->type = pColNode->node.resType.type;
955,261,041✔
307
    pSchema->bytes = pColNode->node.resType.bytes;
955,223,963✔
308
    tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
955,046,260✔
309
  }
310

311
  // this the tags and pseudo function columns, we only keep the tag columns
312
  for (int32_t i = 0; i < numOfTags; ++i) {
446,706,488✔
313
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanPseudoCols, i);
176,004,591✔
314

315
    int32_t type = nodeType(pNode->pExpr);
176,006,957✔
316
    if (type == QUERY_NODE_COLUMN) {
176,031,589✔
317
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
133,615,110✔
318

319
      SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
133,612,948✔
320
      pSchema->colId = pColNode->colId;
133,567,936✔
321
      pSchema->type = pColNode->node.resType.type;
133,564,201✔
322
      pSchema->bytes = pColNode->node.resType.bytes;
133,581,259✔
323
      tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
133,531,506✔
324
    }
325
  }
326

327
  return pqSw;
270,701,897✔
328
}
329

330
static void cleanupTmqInfo(STmqTaskInfo* pTmqInfo) {
371,005,920✔
331
  tDeleteSchemaWrapper(pTmqInfo->schema);
371,005,920✔
332
  tOffsetDestroy(&pTmqInfo->currentOffset);
371,030,250✔
333
}
370,906,162✔
334

335
static void freeBlock(void* pParam) {
696,625,818✔
336
  SSDataBlock* pBlock = *(SSDataBlock**)pParam;
696,625,818✔
337
  blockDataDestroy(pBlock);
696,635,923✔
338
}
696,648,985✔
339

340

341
void destroySubJobCtx(STaskSubJobCtx* pCtx) {
40,898,253✔
342
  if (pCtx->transporterId > 0) {
40,898,253✔
343
    int32_t ret = asyncFreeConnById(pCtx->rpcHandle, pCtx->transporterId);
9,401✔
344
    if (ret != 0) {
9,401✔
UNCOV
345
      qDebug("%s failed to free subQ rpc handle, code:%s", pCtx->idStr, tstrerror(ret));
×
346
    }
347
    pCtx->transporterId = -1;
9,401✔
348
  }
349

350
  if (pCtx->subEndPoints != NULL) {
40,898,806✔
351
    size_t size = taosArrayGetSize(pCtx->subEndPoints);
40,894,383✔
352
    if (size > 0) {
40,891,075✔
353
      int32_t code = tsem_destroy(&pCtx->ready);
40,891,075✔
354
      if (code != TSDB_CODE_SUCCESS) {
40,897,158✔
UNCOV
355
        qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
356
      }
357
      taosArrayDestroy(pCtx->subResNodes);
40,897,158✔
358
    }
359
    if (pCtx->isStream) {
40,893,845✔
360
      taosArrayDestroyP(pCtx->subEndPoints, (FDelete)nodesDestroyNode);
237,771✔
361
    } else {
362
      taosArrayDestroyP(pCtx->subEndPoints, NULL);
40,655,521✔
363
    }
364
    pCtx->subEndPoints = NULL;
40,895,789✔
365
  }
366
  
367
  taosMemoryFreeClear(pCtx);  
40,900,464✔
368
}
40,898,806✔
369

370
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
371,080,062✔
371
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));
371,080,062✔
372
  destroyOperator(pTaskInfo->pRoot);
371,078,484✔
373
  pTaskInfo->pRoot = NULL;
370,997,791✔
374

375
  if (pTaskInfo->pSubJobCtx) {
371,015,424✔
376
    int32_t  code = taosRemoveRef(fetchObjRefPool, pTaskInfo->pSubJobCtx->subJobRefId);
40,899,359✔
377
    if (code != TSDB_CODE_SUCCESS) {
40,897,700✔
UNCOV
378
      qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
379
    }
380
  }
381

382
  taosArrayDestroyEx(pTaskInfo->schemaInfos, cleanupQueriedTableScanInfo);
371,024,177✔
383
  cleanupTmqInfo(&pTaskInfo->tmqInfo);
370,993,591✔
384

385
  if (!pTaskInfo->localFetch.localExec) {
370,895,967✔
386
    nodesDestroyNode((SNode*)pTaskInfo->pSubplan);
370,910,841✔
387
    pTaskInfo->pSubplan = NULL;
371,021,921✔
388
  }
389

390
  taosArrayDestroyEx(pTaskInfo->pResultBlockList, freeBlock);
371,027,414✔
391
  taosArrayDestroy(pTaskInfo->stopInfo.pStopInfo);
371,018,687✔
392
  if (!pTaskInfo->paramSet) {
371,041,316✔
393
    freeOperatorParam(pTaskInfo->pOpParam, OP_GET_PARAM);
362,548,296✔
394
    pTaskInfo->pOpParam = NULL;
362,486,950✔
395
  }
396
  if (pTaskInfo->ownStreamRtInfo && pTaskInfo->pStreamRuntimeInfo != NULL) {
370,992,686✔
397
    SStreamRuntimeFuncInfo* pRt = &pTaskInfo->pStreamRuntimeInfo->funcInfo;
395,600✔
398

399
    // When isMultiGroupCalc, pStreamPesudoFuncVals is aliased to curGrpCalc->pParams
400
    // inside pGroupCalcInfos.  NULL it out so tDestroyStRtFuncInfo won't free it twice.
401
    if (pRt->isMultiGroupCalc && pRt->pGroupCalcInfos != NULL) {
395,600✔
402
      pRt->pStreamPesudoFuncVals = NULL;
69,600✔
403
      pRt->pStreamPartColVals = NULL;
69,600✔
404
    }
405
    tDestroyStRtFuncInfo(pRt);
395,600✔
406
    taosMemoryFreeClear(pTaskInfo->pStreamRuntimeInfo);
395,600✔
407
  }
408
  taosMemoryFreeClear(pTaskInfo->sql);
370,997,922✔
409
  taosMemoryFreeClear(pTaskInfo->id.str);
371,006,057✔
410
  taosMemoryFreeClear(pTaskInfo);
370,942,291✔
411
}
370,933,790✔
412

413
void buildTaskId(uint64_t taskId, uint64_t queryId, char* dst, int32_t len) {
386,942,239✔
414
  int32_t ret = snprintf(dst, len, "TID:0x%" PRIx64 " QID:0x%" PRIx64, taskId, queryId);
386,942,239✔
415
  if (ret < 0) {
386,942,239✔
UNCOV
416
    qError("TID:0x%"PRIx64" QID:0x%"PRIx64" create task id failed,  ignore and continue", taskId, queryId);
×
417
  }
418
}
386,942,239✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc