feat: support pseudo columns such as _qstart, _qend and _qduration

This commit is contained in:
Xiaoyu Wang 2022-07-13 15:14:13 +08:00
parent 43b5ca1efe
commit db65b890c8
1 changed files with 1 additions and 1 deletions

View File

@ -2054,12 +2054,12 @@ static EDealRes mergeProjectionsExpr(SNode** pNode, void* pContext) {
((SExprNode*)*pNode)->aliasName); ((SExprNode*)*pNode)->aliasName);
nodesDestroyNode(*pNode); nodesDestroyNode(*pNode);
*pNode = pExpr; *pNode = pExpr;
}
}
}
}
return DEAL_RES_IGNORE_CHILD; return DEAL_RES_IGNORE_CHILD;
} }
}
}
}
}
return DEAL_RES_CONTINUE; return DEAL_RES_CONTINUE;
} }