fix: restore removed code
This commit is contained in:
parent
b1b56b1601
commit
ddbc0e2e61
|
@ -1422,6 +1422,9 @@ static int32_t translateAggFunc(STranslateContext* pCxt, SFunctionNode* pFunc) {
|
||||||
if (isCountStar(pFunc)) {
|
if (isCountStar(pFunc)) {
|
||||||
return rewriteCountStar(pCxt, pFunc);
|
return rewriteCountStar(pCxt, pFunc);
|
||||||
}
|
}
|
||||||
|
if (isCountNotNullValue(pFunc)) {
|
||||||
|
return rewriteCountNotNullValue(pCxt, pFunc);
|
||||||
|
}
|
||||||
if (isCountTbname(pFunc)) {
|
if (isCountTbname(pFunc)) {
|
||||||
return rewriteCountTbname(pCxt, pFunc);
|
return rewriteCountTbname(pCxt, pFunc);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue