fix bug
This commit is contained in:
parent
5e23487824
commit
2b70b54cd4
|
@ -54,14 +54,14 @@ void tscAddIntoSqlList(SSqlObj *pSql) {
|
|||
pSql->next = pObj->sqlList;
|
||||
if (pObj->sqlList) pObj->sqlList->prev = pSql;
|
||||
pObj->sqlList = pSql;
|
||||
pSql->queryId = queryId++;
|
||||
pSql->queryId = atomic_fetch_add_32(&queryId, 1);
|
||||
|
||||
pthread_mutex_unlock(&pObj->mutex);
|
||||
|
||||
pSql->stime = taosGetTimestampMs();
|
||||
pSql->listed = 1;
|
||||
|
||||
tscDebug("0x%"PRIx64" added into sqlList", pSql->self);
|
||||
tscDebug("0x%"PRIx64" added into sqlList, queryId:%u", pSql->self, pSql->queryId);
|
||||
}
|
||||
|
||||
void tscSaveSlowQueryFpCb(void *param, TAOS_RES *result, int code) {
|
||||
|
|
|
@ -2431,15 +2431,15 @@ void tscDoQuery(SSqlObj* pSql) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (pCmd->command == TSDB_SQL_SELECT) {
|
||||
tscAddIntoSqlList(pSql);
|
||||
}
|
||||
|
||||
if (pCmd->dataSourceType == DATA_FROM_DATA_FILE) {
|
||||
tscImportDataFromFile(pSql);
|
||||
} else {
|
||||
SQueryInfo *pQueryInfo = tscGetQueryInfoDetail(pCmd, pCmd->clauseIndex);
|
||||
uint16_t type = pQueryInfo->type;
|
||||
|
||||
if ((pCmd->command == TSDB_SQL_SELECT) && (!TSDB_QUERY_HAS_TYPE(type, TSDB_QUERY_TYPE_SUBQUERY)) && (!TSDB_QUERY_HAS_TYPE(type, TSDB_QUERY_TYPE_STABLE_SUBQUERY))) {
|
||||
tscAddIntoSqlList(pSql);
|
||||
}
|
||||
|
||||
if (TSDB_QUERY_HAS_TYPE(type, TSDB_QUERY_TYPE_INSERT)) { // multi-vnodes insertion
|
||||
tscHandleMultivnodeInsert(pSql);
|
||||
|
|
|
@ -124,6 +124,8 @@ int64_t genQueryId(void) {
|
|||
|
||||
uid |= sid;
|
||||
|
||||
qDebug("gen qid:0x%"PRIx64, uid);
|
||||
|
||||
return uid;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue