enhance: bi mode default tag scan

This commit is contained in:
shenglian zhou 2023-10-25 13:54:45 +08:00
parent 7f88738dd8
commit 8b2d57504c
1 changed files with 3 additions and 0 deletions

View File

@ -978,6 +978,9 @@ SNode* createSelectStmt(SAstCreateContext* pCxt, bool isDistinct, SNodeList* pPr
SNodeList* pHint) {
CHECK_PARSER_STATUS(pCxt);
SNode* select = createSelectStmtImpl(isDistinct, pProjectionList, pTable, pHint);
if (pCxt->pQueryCxt->biMode) {
setSelectStmtTagMode(pCxt, select, true);
}
CHECK_OUT_OF_MEM(select);
return select;
}