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

taosdata / TDengine / #5013

03 Apr 2026 03:59PM UTC coverage: 72.317% (+0.01%) from 72.305%
#5013

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%)

13131 existing lines in 160 files now uncovered.

257489 of 356056 relevant lines covered (72.32%)

129893134.08 hits per line

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

81.71
/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,
367,836,408✔
41
                     SExecTaskInfo** pTaskInfo) {
42
  if (pTaskInfo == NULL) {
367,836,408✔
UNCOV
43
    return TSDB_CODE_SUCCESS;
×
44
  }
45

46
  SExecTaskInfo* p = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
367,836,408✔
47
  if (p == NULL) {
367,796,727✔
UNCOV
48
    return terrno;
×
49
  }
50

51
  setTaskStatus(p, TASK_NOT_COMPLETED);
367,796,727✔
52
  p->cost.created = taosGetTimestampUs();
367,858,566✔
53

54
  p->execModel = model;
367,843,649✔
55
  p->stopInfo.pStopInfo = taosArrayInit(4, sizeof(SExchangeOpStopInfo));
367,856,058✔
56
  p->pResultBlockList = taosArrayInit(128, POINTER_BYTES);
367,800,272✔
57
  if (p->stopInfo.pStopInfo == NULL || p->pResultBlockList == NULL) {
367,782,463✔
58
    doDestroyTask(p);
4,650✔
UNCOV
59
    return terrno;
×
60
  }
61

62
  p->storageAPI = *pAPI;
367,820,750✔
63
  taosInitRWLatch(&p->lock);
367,830,062✔
64

65
  p->id.vgId = vgId;
367,821,473✔
66
  p->id.queryId = queryId;
367,829,755✔
67
  p->id.taskId = taskId;
367,831,583✔
68
  p->id.str = taosMemoryMalloc(64);
367,832,508✔
69
  if (p->id.str == NULL) {
367,744,238✔
UNCOV
70
    doDestroyTask(p);
×
71
    return terrno;
×
72
  }
73

74
  buildTaskId(taskId, queryId, p->id.str, 64);
367,808,674✔
75
  p->schemaInfos = taosArrayInit(1, sizeof(SSchemaInfo));
367,761,816✔
76
  if (p->id.str == NULL || p->schemaInfos == NULL) {
367,729,445✔
UNCOV
77
    doDestroyTask(p);
×
UNCOV
78
    return terrno;
×
79
  }
80

81
  *pTaskInfo = p;
367,801,572✔
82
  return TSDB_CODE_SUCCESS;
367,808,307✔
83
}
84

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

87
bool isTaskKilled(void* pTaskInfo) { return (0 != ((SExecTaskInfo*)pTaskInfo)->code); }
1,808,035,082✔
88

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

94
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1,138,002,413✔
95
  if (status == TASK_NOT_COMPLETED) {
1,138,002,413✔
96
    pTaskInfo->status = status;
368,003,782✔
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);
769,998,631✔
100
    pTaskInfo->status |= status;
770,019,875✔
101
  }
102
}
1,138,034,333✔
103

104

105
int32_t initTaskSubJobCtx(SExecTaskInfo* pTaskInfo, SArray** subEndPoints, SReadHandle* readHandle) {
40,901,278✔
106
  int32_t code = 0, lino = 0;
40,901,278✔
107
  int32_t subJobNum = taosArrayGetSize(*subEndPoints);
40,901,278✔
108
  
109
  pTaskInfo->pSubJobCtx = taosMemoryCalloc(1, sizeof(*pTaskInfo->pSubJobCtx));
40,902,941✔
110
  TSDB_CHECK_NULL(pTaskInfo->pSubJobCtx, code, lino, _exit, terrno);
40,897,810✔
111
  
112
  STaskSubJobCtx* ctx = pTaskInfo->pSubJobCtx;
40,900,723✔
113

114
  ctx->queryId = pTaskInfo->id.queryId;
40,905,566✔
115
  ctx->taskId = pTaskInfo->id.taskId;
40,900,166✔
116
  ctx->idStr = pTaskInfo->id.str;
40,904,456✔
117
  ctx->pTaskInfo = pTaskInfo;
40,897,804✔
118
  ctx->subEndPoints = *subEndPoints;
40,904,053✔
119
  ctx->rpcHandle = (readHandle && readHandle->pMsgCb) ? readHandle->pMsgCb->clientRpc : NULL;
40,901,679✔
120
  ctx->isStream = pTaskInfo && IS_STREAM_MODE(pTaskInfo);
40,908,896✔
121

122
  *subEndPoints = NULL;
40,906,674✔
123
  
124
  ctx->subResNodes = taosArrayInit_s(POINTER_BYTES, subJobNum);
40,906,674✔
125
  if (NULL == ctx->subResNodes) {
40,901,841✔
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,908,485✔
131

132
  int64_t refId = taosAddRef(fetchObjRefPool, ctx);
40,890,901✔
133
  if (refId < 0) {
40,902,963✔
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,902,963✔
139

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

142
_exit:
39,972,426✔
143

144
  if (code) {
40,897,810✔
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,898,365✔
152
}
153

154

155

156
int32_t createExecTaskInfo(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
367,715,172✔
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);
367,715,172✔
159
  if (*pTaskInfo == NULL || code != 0) {
367,658,742✔
UNCOV
160
    nodesDestroyNode((SNode*)pPlan);
×
UNCOV
161
    return code;
×
162
  }
163

164
  (*pTaskInfo)->pSubplan = pPlan;
367,680,124✔
165

166
  if (NULL != sql) {
367,699,218✔
167
    (*pTaskInfo)->sql = taosStrdup(sql);
342,910,484✔
168
    if (NULL == (*pTaskInfo)->sql) {
342,928,784✔
UNCOV
169
      code = terrno;
×
170
      doDestroyTask(*pTaskInfo);
×
171
      (*pTaskInfo) = NULL;
×
172
      return code;
×
173
    }
174
  }
175

176
  (*pTaskInfo)->pWorkerCb = pHandle->pWorkerCb;
367,712,593✔
177
  (*pTaskInfo)->pStreamRuntimeInfo = pHandle->streamRtInfo;
367,701,895✔
178
  (*pTaskInfo)->enableExplain = enableExplain;
367,660,434✔
179

180
  if (subEndPoints && taosArrayGetSize(*subEndPoints) > 0) {
367,693,803✔
181
    code = initTaskSubJobCtx(*pTaskInfo, subEndPoints, pHandle);
40,906,113✔
182
    if (code != TSDB_CODE_SUCCESS) {
40,900,022✔
UNCOV
183
      doDestroyTask(*pTaskInfo);
×
184
      (*pTaskInfo) = NULL;
×
185
      return code;
×
186
    }
187
  }
188
  
189
  setTaskScalarExtraInfo(*pTaskInfo);
367,656,259✔
190
  
191
  code = createOperator(pPlan->pNode, *pTaskInfo, pHandle, pPlan->pTagCond, pPlan->pTagIndexCond, pPlan->user,
367,663,431✔
192
                        pPlan->dbFName, &((*pTaskInfo)->pRoot), model);
367,645,355✔
193

194
  if (NULL == (*pTaskInfo)->pRoot || code != 0) {
367,450,423✔
195
    doDestroyTask(*pTaskInfo);
1,026,018✔
196
    (*pTaskInfo) = NULL;
474,757✔
197
  }
198
  return code;
367,045,870✔
199
}
200

201
void cleanupQueriedTableScanInfo(void* p) {
272,630,684✔
202
  SSchemaInfo* pSchemaInfo = p;
272,630,684✔
203

204
  taosMemoryFreeClear(pSchemaInfo->dbname);
272,630,684✔
205
  taosMemoryFreeClear(pSchemaInfo->tablename);
272,616,276✔
206
  tDeleteSchemaWrapper(pSchemaInfo->sw);
272,552,588✔
207
  tDeleteSchemaWrapper(pSchemaInfo->qsw);
272,529,714✔
208
}
272,530,322✔
209

210
int32_t initQueriedTableSchemaInfo(SReadHandle* pHandle, SScanPhysiNode* pScanNode, const char* dbName,
272,687,435✔
211
                                   SExecTaskInfo* pTaskInfo) {
212
  SMetaReader mr = {0};
272,687,435✔
213
  if (pHandle == NULL) {
272,698,163✔
UNCOV
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  SStorageAPI* pAPI = &pTaskInfo->storageAPI;
272,698,163✔
218

219
  pAPI->metaReaderFn.initReader(&mr, pHandle->vnode, META_READER_LOCK, &pAPI->metaFn);
272,694,064✔
220
  int32_t code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, pScanNode->uid);
272,694,317✔
221
  if (code != TSDB_CODE_SUCCESS) {
272,499,014✔
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};
272,499,014✔
230

231
  schemaInfo.tablename = taosStrdup(mr.me.name);
272,486,793✔
232
  schemaInfo.dbname = taosStrdup(dbName);
272,469,638✔
233
  if (schemaInfo.tablename == NULL || schemaInfo.dbname == NULL) {
272,516,396✔
234
    pAPI->metaReaderFn.clearReader(&mr);
112,298✔
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) {
272,404,098✔
240
    schemaInfo.rversion = mr.me.colRef.version;
297,498✔
241
  }
242

243
  if (mr.me.type == TSDB_SUPER_TABLE) {
272,404,098✔
244
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
122,897,534✔
245
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
122,897,534✔
246
  } else if (mr.me.type == TSDB_CHILD_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
149,576,050✔
247
    tDecoderClear(&mr.coder);
105,490,106✔
248

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

257
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
105,504,677✔
258
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
105,504,677✔
259
  } else {
260
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.ntbEntry.schemaRow);
44,117,101✔
261
  }
262

263
  pAPI->metaReaderFn.clearReader(&mr);
272,519,312✔
264

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

270
  schemaInfo.qsw = extractQueriedColumnSchema(pScanNode);
272,384,557✔
271
  if (schemaInfo.qsw == NULL) {
272,512,685✔
UNCOV
272
    cleanupQueriedTableScanInfo(&schemaInfo);
×
273
    return terrno;
×
274
  }
275

276
  void* p = taosArrayPush(pTaskInfo->schemaInfos, &schemaInfo);
272,512,685✔
277
  if (p == NULL) {
272,596,448✔
UNCOV
278
    cleanupQueriedTableScanInfo(&schemaInfo);
×
279
    return terrno;
×
280
  }
281

282
  return code;
272,596,448✔
283
}
284

285
SSchemaWrapper* extractQueriedColumnSchema(SScanPhysiNode* pScanNode) {
272,480,785✔
286
  int32_t numOfCols = LIST_LENGTH(pScanNode->pScanCols);
272,480,785✔
287
  int32_t numOfTags = LIST_LENGTH(pScanNode->pScanPseudoCols);
272,545,252✔
288

289
  SSchemaWrapper* pqSw = taosMemoryCalloc(1, sizeof(SSchemaWrapper));
272,507,586✔
290
  if (pqSw == NULL) {
272,366,372✔
UNCOV
291
    return NULL;
×
292
  }
293

294
  pqSw->pSchema = taosMemoryCalloc(numOfCols + numOfTags, sizeof(SSchema));
272,366,372✔
295
  if (pqSw->pSchema == NULL) {
272,214,963✔
UNCOV
296
    taosMemoryFree(pqSw);
×
297
    return NULL;
×
298
  }
299

300
  for (int32_t i = 0; i < numOfCols; ++i) {
1,222,387,951✔
301
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanCols, i);
949,780,312✔
302
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
949,579,582✔
303

304
    SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
949,593,009✔
305
    pSchema->colId = pColNode->colId;
949,823,191✔
306
    pSchema->type = pColNode->node.resType.type;
949,911,488✔
307
    pSchema->bytes = pColNode->node.resType.bytes;
949,884,780✔
308
    tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
949,695,877✔
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) {
450,059,034✔
313
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanPseudoCols, i);
177,463,667✔
314

315
    int32_t type = nodeType(pNode->pExpr);
177,479,871✔
316
    if (type == QUERY_NODE_COLUMN) {
177,498,938✔
317
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
136,194,659✔
318

319
      SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
136,169,290✔
320
      pSchema->colId = pColNode->colId;
136,114,696✔
321
      pSchema->type = pColNode->node.resType.type;
136,185,582✔
322
      pSchema->bytes = pColNode->node.resType.bytes;
136,124,254✔
323
      tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
136,158,459✔
324
    }
325
  }
326

327
  return pqSw;
272,595,367✔
328
}
329

330
static void cleanupTmqInfo(STmqTaskInfo* pTmqInfo) {
367,743,641✔
331
  tDeleteSchemaWrapper(pTmqInfo->schema);
367,743,641✔
332
  tOffsetDestroy(&pTmqInfo->currentOffset);
367,775,173✔
333
}
367,719,257✔
334

335
static void freeBlock(void* pParam) {
662,819,930✔
336
  SSDataBlock* pBlock = *(SSDataBlock**)pParam;
662,819,930✔
337
  blockDataDestroy(pBlock);
662,834,517✔
338
}
662,824,303✔
339

340

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

350
  if (pCtx->subEndPoints != NULL) {
40,908,333✔
351
    size_t size = taosArrayGetSize(pCtx->subEndPoints);
40,906,682✔
352
    if (size > 0) {
40,903,338✔
353
      int32_t code = tsem_destroy(&pCtx->ready);
40,903,338✔
354
      if (code != TSDB_CODE_SUCCESS) {
40,906,676✔
UNCOV
355
        qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
356
      }
357
      taosArrayDestroy(pCtx->subResNodes);
40,906,676✔
358
    }
359
    if (pCtx->isStream) {
40,905,564✔
360
      taosArrayDestroyP(pCtx->subEndPoints, (FDelete)nodesDestroyNode);
185,630✔
361
    } else {
362
      taosArrayDestroyP(pCtx->subEndPoints, NULL);
40,717,159✔
363
    }
364
    pCtx->subEndPoints = NULL;
40,894,476✔
365
  }
366
  
367
  taosMemoryFreeClear(pCtx);  
40,896,133✔
368
}
40,896,147✔
369

370
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
367,841,182✔
371
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));
367,841,182✔
372
  destroyOperator(pTaskInfo->pRoot);
367,840,735✔
373
  pTaskInfo->pRoot = NULL;
367,732,450✔
374

375
  if (pTaskInfo->pSubJobCtx) {
367,752,698✔
376
    int32_t  code = taosRemoveRef(fetchObjRefPool, pTaskInfo->pSubJobCtx->subJobRefId);
40,906,113✔
377
    if (code != TSDB_CODE_SUCCESS) {
40,905,009✔
UNCOV
378
      qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
379
    }
380
  }
381

382
  taosArrayDestroyEx(pTaskInfo->schemaInfos, cleanupQueriedTableScanInfo);
367,763,696✔
383
  cleanupTmqInfo(&pTaskInfo->tmqInfo);
367,698,244✔
384

385
  if (!pTaskInfo->localFetch.localExec) {
367,719,359✔
386
    nodesDestroyNode((SNode*)pTaskInfo->pSubplan);
367,728,233✔
387
    pTaskInfo->pSubplan = NULL;
367,764,008✔
388
  }
389

390
  taosArrayDestroyEx(pTaskInfo->pResultBlockList, freeBlock);
367,772,985✔
391
  taosArrayDestroy(pTaskInfo->stopInfo.pStopInfo);
367,715,779✔
392
  if (!pTaskInfo->paramSet) {
367,765,943✔
393
    freeOperatorParam(pTaskInfo->pOpParam, OP_GET_PARAM);
360,185,213✔
394
    pTaskInfo->pOpParam = NULL;
360,117,516✔
395
  }
396
  if (pTaskInfo->ownStreamRtInfo && pTaskInfo->pStreamRuntimeInfo != NULL) {
367,723,192✔
397
    SStreamRuntimeFuncInfo* pRt = &pTaskInfo->pStreamRuntimeInfo->funcInfo;
398,567✔
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) {
398,567✔
402
      pRt->pStreamPesudoFuncVals = NULL;
70,122✔
403
      pRt->pStreamPartColVals = NULL;
70,122✔
404
    }
405
    tDestroyStRtFuncInfo(pRt);
398,567✔
406
    taosMemoryFreeClear(pTaskInfo->pStreamRuntimeInfo);
398,164✔
407
  }
408
  taosMemoryFreeClear(pTaskInfo->sql);
367,733,538✔
409
  taosMemoryFreeClear(pTaskInfo->id.str);
367,749,479✔
410
  taosMemoryFreeClear(pTaskInfo);
367,717,938✔
411
}
367,662,066✔
412

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