enhance: bi mode default tag scan
This commit is contained in:
parent
7f88738dd8
commit
8b2d57504c
|
@ -978,6 +978,9 @@ SNode* createSelectStmt(SAstCreateContext* pCxt, bool isDistinct, SNodeList* pPr
|
||||||
SNodeList* pHint) {
|
SNodeList* pHint) {
|
||||||
CHECK_PARSER_STATUS(pCxt);
|
CHECK_PARSER_STATUS(pCxt);
|
||||||
SNode* select = createSelectStmtImpl(isDistinct, pProjectionList, pTable, pHint);
|
SNode* select = createSelectStmtImpl(isDistinct, pProjectionList, pTable, pHint);
|
||||||
|
if (pCxt->pQueryCxt->biMode) {
|
||||||
|
setSelectStmtTagMode(pCxt, select, true);
|
||||||
|
}
|
||||||
CHECK_OUT_OF_MEM(select);
|
CHECK_OUT_OF_MEM(select);
|
||||||
return select;
|
return select;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue