fix: fix bugs of pWhere is null
This commit is contained in:
parent
865b28c6bd
commit
15aedb8d8c
|
@ -3961,7 +3961,9 @@ static int32_t translateWhere(STranslateContext* pCxt, SSelectStmt* pSelect) {
|
||||||
if (TSDB_CODE_SUCCESS == code && pSelect->timeRange.skey > pSelect->timeRange.ekey) {
|
if (TSDB_CODE_SUCCESS == code && pSelect->timeRange.skey > pSelect->timeRange.ekey) {
|
||||||
pSelect->isEmptyResult = true;
|
pSelect->isEmptyResult = true;
|
||||||
}
|
}
|
||||||
setTableVgroupsFromEqualTbnameCond(pCxt, pSelect);
|
if (pSelect->pWhere != NULL) {
|
||||||
|
setTableVgroupsFromEqualTbnameCond(pCxt, pSelect);
|
||||||
|
}
|
||||||
return code;
|
return code;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue