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

taosdata / TDengine / #5015

03 Apr 2026 03:59PM UTC coverage: 72.289% (+0.03%) from 72.256%
#5015

push

travis-ci

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

4055 of 5985 new or added lines in 68 files covered. (67.75%)

13044 existing lines in 149 files now uncovered.

257390 of 356056 relevant lines covered (72.29%)

130247228.09 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,
361,258,056✔
41
                     SExecTaskInfo** pTaskInfo) {
42
  if (pTaskInfo == NULL) {
361,258,056✔
UNCOV
43
    return TSDB_CODE_SUCCESS;
×
44
  }
45

46
  SExecTaskInfo* p = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
361,258,056✔
47
  if (p == NULL) {
361,217,648✔
UNCOV
48
    return terrno;
×
49
  }
50

51
  setTaskStatus(p, TASK_NOT_COMPLETED);
361,217,648✔
52
  p->cost.created = taosGetTimestampUs();
361,273,679✔
53

54
  p->execModel = model;
361,261,482✔
55
  p->stopInfo.pStopInfo = taosArrayInit(4, sizeof(SExchangeOpStopInfo));
361,270,285✔
56
  p->pResultBlockList = taosArrayInit(128, POINTER_BYTES);
361,242,401✔
57
  if (p->stopInfo.pStopInfo == NULL || p->pResultBlockList == NULL) {
361,220,810✔
58
    doDestroyTask(p);
4,650✔
UNCOV
59
    return terrno;
×
60
  }
61

62
  p->storageAPI = *pAPI;
361,257,778✔
63
  taosInitRWLatch(&p->lock);
361,259,877✔
64

65
  p->id.vgId = vgId;
361,239,148✔
66
  p->id.queryId = queryId;
361,245,864✔
67
  p->id.taskId = taskId;
361,248,917✔
68
  p->id.str = taosMemoryMalloc(64);
361,254,992✔
69
  if (p->id.str == NULL) {
361,186,446✔
UNCOV
70
    doDestroyTask(p);
×
71
    return terrno;
×
72
  }
73

74
  buildTaskId(taskId, queryId, p->id.str, 64);
361,240,644✔
75
  p->schemaInfos = taosArrayInit(1, sizeof(SSchemaInfo));
361,198,202✔
76
  if (p->id.str == NULL || p->schemaInfos == NULL) {
361,174,902✔
77
    doDestroyTask(p);
155✔
UNCOV
78
    return terrno;
×
79
  }
80

81
  *pTaskInfo = p;
361,232,417✔
82
  return TSDB_CODE_SUCCESS;
361,231,646✔
83
}
84

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

87
bool isTaskKilled(void* pTaskInfo) { return (0 != ((SExecTaskInfo*)pTaskInfo)->code); }
1,792,735,703✔
88

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

94
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1,116,486,157✔
95
  if (status == TASK_NOT_COMPLETED) {
1,116,486,157✔
96
    pTaskInfo->status = status;
361,426,080✔
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);
755,060,077✔
100
    pTaskInfo->status |= status;
755,090,484✔
101
  }
102
}
1,116,517,215✔
103

104

105
int32_t initTaskSubJobCtx(SExecTaskInfo* pTaskInfo, SArray** subEndPoints, SReadHandle* readHandle) {
40,817,782✔
106
  int32_t code = 0, lino = 0;
40,817,782✔
107
  int32_t subJobNum = taosArrayGetSize(*subEndPoints);
40,817,782✔
108
  
109
  pTaskInfo->pSubJobCtx = taosMemoryCalloc(1, sizeof(*pTaskInfo->pSubJobCtx));
40,815,568✔
110
  TSDB_CHECK_NULL(pTaskInfo->pSubJobCtx, code, lino, _exit, terrno);
40,812,232✔
111
  
112
  STaskSubJobCtx* ctx = pTaskInfo->pSubJobCtx;
40,816,670✔
113

114
  ctx->queryId = pTaskInfo->id.queryId;
40,818,894✔
115
  ctx->taskId = pTaskInfo->id.taskId;
40,817,648✔
116
  ctx->idStr = pTaskInfo->id.str;
40,820,974✔
117
  ctx->pTaskInfo = pTaskInfo;
40,819,470✔
118
  ctx->subEndPoints = *subEndPoints;
40,821,530✔
119
  ctx->rpcHandle = (readHandle && readHandle->pMsgCb) ? readHandle->pMsgCb->clientRpc : NULL;
40,821,550✔
120
  ctx->isStream = pTaskInfo && IS_STREAM_MODE(pTaskInfo);
40,819,852✔
121

122
  *subEndPoints = NULL;
40,820,562✔
123
  
124
  ctx->subResNodes = taosArrayInit_s(POINTER_BYTES, subJobNum);
40,815,588✔
125
  if (NULL == ctx->subResNodes) {
40,818,894✔
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,820,428✔
131

132
  int64_t refId = taosAddRef(fetchObjRefPool, ctx);
40,808,926✔
133
  if (refId < 0) {
40,817,648✔
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,817,648✔
139

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

142
_exit:
39,840,402✔
143

144
  if (code) {
40,813,210✔
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,817,628✔
152
}
153

154

155

156
int32_t createExecTaskInfo(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
361,144,280✔
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);
361,144,280✔
159
  if (*pTaskInfo == NULL || code != 0) {
361,088,566✔
160
    nodesDestroyNode((SNode*)pPlan);
118✔
UNCOV
161
    return code;
×
162
  }
163

164
  (*pTaskInfo)->pSubplan = pPlan;
361,109,841✔
165

166
  if (NULL != sql) {
361,125,268✔
167
    (*pTaskInfo)->sql = taosStrdup(sql);
336,347,769✔
168
    if (NULL == (*pTaskInfo)->sql) {
336,351,923✔
UNCOV
169
      code = terrno;
×
170
      doDestroyTask(*pTaskInfo);
×
171
      (*pTaskInfo) = NULL;
×
172
      return code;
×
173
    }
174
  }
175

176
  (*pTaskInfo)->pWorkerCb = pHandle->pWorkerCb;
361,128,125✔
177
  (*pTaskInfo)->pStreamRuntimeInfo = pHandle->streamRtInfo;
361,125,350✔
178
  (*pTaskInfo)->enableExplain = enableExplain;
361,091,975✔
179

180
  if (subEndPoints && taosArrayGetSize(*subEndPoints) > 0) {
361,120,438✔
181
    code = initTaskSubJobCtx(*pTaskInfo, subEndPoints, pHandle);
40,820,984✔
182
    if (code != TSDB_CODE_SUCCESS) {
40,816,536✔
UNCOV
183
      doDestroyTask(*pTaskInfo);
×
184
      (*pTaskInfo) = NULL;
×
185
      return code;
×
186
    }
187
  }
188
  
189
  setTaskScalarExtraInfo(*pTaskInfo);
361,080,511✔
190
  
191
  code = createOperator(pPlan->pNode, *pTaskInfo, pHandle, pPlan->pTagCond, pPlan->pTagIndexCond, pPlan->user,
361,100,133✔
192
                        pPlan->dbFName, &((*pTaskInfo)->pRoot), model);
361,079,453✔
193

194
  if (NULL == (*pTaskInfo)->pRoot || code != 0) {
360,932,483✔
195
    doDestroyTask(*pTaskInfo);
858,621✔
196
    (*pTaskInfo) = NULL;
473,340✔
197
  }
198
  return code;
360,660,718✔
199
}
200

201
void cleanupQueriedTableScanInfo(void* p) {
266,325,509✔
202
  SSchemaInfo* pSchemaInfo = p;
266,325,509✔
203

204
  taosMemoryFreeClear(pSchemaInfo->dbname);
266,325,509✔
205
  taosMemoryFreeClear(pSchemaInfo->tablename);
266,298,534✔
206
  tDeleteSchemaWrapper(pSchemaInfo->sw);
266,245,375✔
207
  tDeleteSchemaWrapper(pSchemaInfo->qsw);
266,238,049✔
208
}
266,239,182✔
209

210
int32_t initQueriedTableSchemaInfo(SReadHandle* pHandle, SScanPhysiNode* pScanNode, const char* dbName,
266,368,145✔
211
                                   SExecTaskInfo* pTaskInfo) {
212
  SMetaReader mr = {0};
266,368,145✔
213
  if (pHandle == NULL) {
266,375,723✔
UNCOV
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  SStorageAPI* pAPI = &pTaskInfo->storageAPI;
266,375,723✔
218

219
  pAPI->metaReaderFn.initReader(&mr, pHandle->vnode, META_READER_LOCK, &pAPI->metaFn);
266,371,301✔
220
  int32_t code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, pScanNode->uid);
266,370,934✔
221
  if (code != TSDB_CODE_SUCCESS) {
266,202,945✔
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};
266,202,945✔
230

231
  schemaInfo.tablename = taosStrdup(mr.me.name);
266,197,428✔
232
  schemaInfo.dbname = taosStrdup(dbName);
266,216,801✔
233
  if (schemaInfo.tablename == NULL || schemaInfo.dbname == NULL) {
266,251,585✔
234
    pAPI->metaReaderFn.clearReader(&mr);
93,791✔
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) {
266,157,794✔
240
    schemaInfo.rversion = mr.me.colRef.version;
297,736✔
241
  }
242

243
  if (mr.me.type == TSDB_SUPER_TABLE) {
266,157,794✔
244
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
117,144,065✔
245
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
117,144,065✔
246
  } else if (mr.me.type == TSDB_CHILD_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
149,042,181✔
247
    tDecoderClear(&mr.coder);
105,070,436✔
248

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

257
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
105,089,795✔
258
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
105,089,795✔
259
  } else {
260
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.ntbEntry.schemaRow);
43,992,830✔
261
  }
262

263
  pAPI->metaReaderFn.clearReader(&mr);
266,226,690✔
264

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

270
  schemaInfo.qsw = extractQueriedColumnSchema(pScanNode);
266,131,972✔
271
  if (schemaInfo.qsw == NULL) {
266,242,966✔
UNCOV
272
    cleanupQueriedTableScanInfo(&schemaInfo);
×
273
    return terrno;
×
274
  }
275

276
  void* p = taosArrayPush(pTaskInfo->schemaInfos, &schemaInfo);
266,242,966✔
277
  if (p == NULL) {
266,303,364✔
UNCOV
278
    cleanupQueriedTableScanInfo(&schemaInfo);
×
279
    return terrno;
×
280
  }
281

282
  return code;
266,303,364✔
283
}
284

285
SSchemaWrapper* extractQueriedColumnSchema(SScanPhysiNode* pScanNode) {
266,190,046✔
286
  int32_t numOfCols = LIST_LENGTH(pScanNode->pScanCols);
266,190,046✔
287
  int32_t numOfTags = LIST_LENGTH(pScanNode->pScanPseudoCols);
266,263,975✔
288

289
  SSchemaWrapper* pqSw = taosMemoryCalloc(1, sizeof(SSchemaWrapper));
266,230,681✔
290
  if (pqSw == NULL) {
266,101,911✔
UNCOV
291
    return NULL;
×
292
  }
293

294
  pqSw->pSchema = taosMemoryCalloc(numOfCols + numOfTags, sizeof(SSchema));
266,101,911✔
295
  if (pqSw->pSchema == NULL) {
265,986,578✔
UNCOV
296
    taosMemoryFree(pqSw);
×
297
    return NULL;
×
298
  }
299

300
  for (int32_t i = 0; i < numOfCols; ++i) {
1,191,729,015✔
301
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanCols, i);
925,433,570✔
302
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
925,307,692✔
303

304
    SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
925,326,082✔
305
    pSchema->colId = pColNode->colId;
925,465,256✔
306
    pSchema->type = pColNode->node.resType.type;
925,527,925✔
307
    pSchema->bytes = pColNode->node.resType.bytes;
925,531,300✔
308
    tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
925,320,201✔
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) {
432,283,730✔
313
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanPseudoCols, i);
165,996,966✔
314

315
    int32_t type = nodeType(pNode->pExpr);
166,009,958✔
316
    if (type == QUERY_NODE_COLUMN) {
166,045,413✔
317
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
125,819,974✔
318

319
      SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
125,798,439✔
320
      pSchema->colId = pColNode->colId;
125,759,050✔
321
      pSchema->type = pColNode->node.resType.type;
125,820,877✔
322
      pSchema->bytes = pColNode->node.resType.bytes;
125,779,071✔
323
      tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
125,806,784✔
324
    }
325
  }
326

327
  return pqSw;
266,286,764✔
328
}
329

330
static void cleanupTmqInfo(STmqTaskInfo* pTmqInfo) {
361,182,202✔
331
  tDeleteSchemaWrapper(pTmqInfo->schema);
361,182,202✔
332
  tOffsetDestroy(&pTmqInfo->currentOffset);
361,216,033✔
333
}
361,158,732✔
334

335
static void freeBlock(void* pParam) {
642,583,512✔
336
  SSDataBlock* pBlock = *(SSDataBlock**)pParam;
642,583,512✔
337
  blockDataDestroy(pBlock);
642,610,347✔
338
}
642,609,877✔
339

340

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

350
  if (pCtx->subEndPoints != NULL) {
40,820,984✔
351
    size_t size = taosArrayGetSize(pCtx->subEndPoints);
40,818,770✔
352
    if (size > 0) {
40,822,096✔
353
      int32_t code = tsem_destroy(&pCtx->ready);
40,822,642✔
354
      if (code != TSDB_CODE_SUCCESS) {
40,819,852✔
UNCOV
355
        qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
356
      }
357
      taosArrayDestroy(pCtx->subResNodes);
40,819,852✔
358
    }
359
    if (pCtx->isStream) {
40,813,786✔
360
      taosArrayDestroyP(pCtx->subEndPoints, (FDelete)nodesDestroyNode);
235,469✔
361
    } else {
362
      taosArrayDestroyP(pCtx->subEndPoints, NULL);
40,574,981✔
363
    }
364
    pCtx->subEndPoints = NULL;
40,810,460✔
365
  }
366
  
367
  taosMemoryFreeClear(pCtx);  
40,816,000✔
368
}
40,808,226✔
369

370
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
361,257,570✔
371
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));
361,257,570✔
372
  destroyOperator(pTaskInfo->pRoot);
361,258,073✔
373
  pTaskInfo->pRoot = NULL;
361,167,314✔
374

375
  if (pTaskInfo->pSubJobCtx) {
361,194,800✔
376
    int32_t  code = taosRemoveRef(fetchObjRefPool, pTaskInfo->pSubJobCtx->subJobRefId);
40,820,418✔
377
    if (code != TSDB_CODE_SUCCESS) {
40,814,868✔
UNCOV
378
      qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
379
    }
380
  }
381

382
  taosArrayDestroyEx(pTaskInfo->schemaInfos, cleanupQueriedTableScanInfo);
361,185,341✔
383
  cleanupTmqInfo(&pTaskInfo->tmqInfo);
361,131,474✔
384

385
  if (!pTaskInfo->localFetch.localExec) {
361,161,071✔
386
    nodesDestroyNode((SNode*)pTaskInfo->pSubplan);
361,173,298✔
387
    pTaskInfo->pSubplan = NULL;
361,182,899✔
388
  }
389

390
  taosArrayDestroyEx(pTaskInfo->pResultBlockList, freeBlock);
361,191,845✔
391
  taosArrayDestroy(pTaskInfo->stopInfo.pStopInfo);
361,162,200✔
392
  if (!pTaskInfo->paramSet) {
361,193,141✔
393
    freeOperatorParam(pTaskInfo->pOpParam, OP_GET_PARAM);
353,620,344✔
394
    pTaskInfo->pOpParam = NULL;
353,558,447✔
395
  }
396
  if (pTaskInfo->ownStreamRtInfo && pTaskInfo->pStreamRuntimeInfo != NULL) {
361,162,132✔
397
    SStreamRuntimeFuncInfo* pRt = &pTaskInfo->pStreamRuntimeInfo->funcInfo;
397,578✔
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) {
397,578✔
402
      pRt->pStreamPesudoFuncVals = NULL;
69,948✔
403
      pRt->pStreamPartColVals = NULL;
69,948✔
404
    }
405
    tDestroyStRtFuncInfo(pRt);
397,578✔
406
    taosMemoryFreeClear(pTaskInfo->pStreamRuntimeInfo);
397,578✔
407
  }
408
  taosMemoryFreeClear(pTaskInfo->sql);
361,174,094✔
409
  taosMemoryFreeClear(pTaskInfo->id.str);
361,201,348✔
410
  taosMemoryFreeClear(pTaskInfo);
361,185,201✔
411
}
361,132,099✔
412

413
void buildTaskId(uint64_t taskId, uint64_t queryId, char* dst, int32_t len) {
376,293,091✔
414
  int32_t ret = snprintf(dst, len, "TID:0x%" PRIx64 " QID:0x%" PRIx64, taskId, queryId);
376,293,091✔
415
  if (ret < 0) {
376,293,091✔
UNCOV
416
    qError("TID:0x%"PRIx64" QID:0x%"PRIx64" create task id failed,  ignore and continue", taskId, queryId);
×
417
  }
418
}
376,293,091✔
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