refactor(query): do some internal refactor.

This commit is contained in:
Haojun Liao 2022-05-07 18:15:17 +08:00
parent f867e8ea91
commit cdc2002e70
2 changed files with 0 additions and 2 deletions

View File

@ -225,7 +225,6 @@ typedef struct SExecTaskInfo {
char* sql; // query sql string
jmp_buf env; // jump to this position when error happens.
EOPTR_EXEC_MODEL execModel; // operator execution model [batch model|stream model]
struct SSubplan *plan;
struct SOperatorInfo* pRoot;
} SExecTaskInfo;

View File

@ -5209,7 +5209,6 @@ int32_t createExecTaskInfoImpl(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SRead
goto _complete;
}
(*pTaskInfo)->plan = pPlan;
return code;
_complete: