fix windows compile error
This commit is contained in:
parent
8082fdf906
commit
5d9fe3906c
|
@ -2395,7 +2395,7 @@ int32_t tscHandleFirstRoundStableQuery(SSqlObj *pSql) {
|
||||||
SColumn* x = taosArrayGetP(pNewQueryInfo->colList, index1);
|
SColumn* x = taosArrayGetP(pNewQueryInfo->colList, index1);
|
||||||
tscColumnCopy(x, pCol);
|
tscColumnCopy(x, pCol);
|
||||||
} else {
|
} else {
|
||||||
SSchema ss = {.type = pCol->info.type, .bytes = pCol->info.bytes, .colId = pCol->columnIndex};
|
SSchema ss = {.type = (uint8_t)pCol->info.type, .bytes = pCol->info.bytes, .colId = (int16_t)pCol->columnIndex};
|
||||||
tscColumnListInsert(pNewQueryInfo->colList, pCol->columnIndex, pCol->tableUid, &ss);
|
tscColumnListInsert(pNewQueryInfo->colList, pCol->columnIndex, pCol->tableUid, &ss);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue