fix:[TS-5776]add raw type from consumer
This commit is contained in:
parent
d67de02a31
commit
f16f21897e
|
@ -400,10 +400,7 @@ static void preProcessSubmitMsg(STqHandle* pHandle, const SMqPollReq* pRequest,
|
|||
*rawList = NULL;
|
||||
return;
|
||||
}
|
||||
if (pSubmitTbData->pCreateTbReq == NULL){
|
||||
continue;
|
||||
}
|
||||
int64_t createTime = 0;
|
||||
|
||||
int64_t uid = pSubmitTbData->uid;
|
||||
if (taosHashGet(pRequest->uidHash, &uid, LONG_BYTES) != NULL) {
|
||||
tqDebug("poll rawdata split,uid:%" PRId64 " is already exists", uid);
|
||||
|
@ -415,6 +412,11 @@ static void preProcessSubmitMsg(STqHandle* pHandle, const SMqPollReq* pRequest,
|
|||
}
|
||||
}
|
||||
|
||||
if (pSubmitTbData->pCreateTbReq == NULL){
|
||||
continue;
|
||||
}
|
||||
|
||||
int64_t createTime = 0;
|
||||
int64_t *cTime = (int64_t*)taosHashGet(pHandle->tableCreateTimeHash, &uid, LONG_BYTES);
|
||||
if (cTime != NULL){
|
||||
createTime = *cTime;
|
||||
|
|
|
@ -1100,7 +1100,7 @@ int rawBlockBindRawData(SHashObj* pVgroupHash, SArray* pVgroupList, STableMeta*
|
|||
return terrno;
|
||||
}
|
||||
|
||||
qDebug("add raw data to vgId:%d, len:%d", pTableMeta->vgId, *(int32_t*)data);
|
||||
uTrace("add raw data to vgId:%d, len:%d", pTableMeta->vgId, *(int32_t*)data);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue