enhance: change variable name
This commit is contained in:
parent
276e5daa8c
commit
04e9648d8e
|
@ -6141,9 +6141,9 @@ static EDealRes hasVariable(SNode* pNode, void* pContext) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static int32_t subtableExprHasVariable(SNode* pNode) {
|
static int32_t subtableExprHasVariable(SNode* pNode) {
|
||||||
bool hasCol = false;
|
bool hasVar = false;
|
||||||
nodesWalkExprPostOrder(pNode, hasVariable, &hasCol);
|
nodesWalkExprPostOrder(pNode, hasVariable, &hasVar);
|
||||||
return hasCol;
|
return hasVar;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int32_t checkStreamQuery(STranslateContext* pCxt, SCreateStreamStmt* pStmt) {
|
static int32_t checkStreamQuery(STranslateContext* pCxt, SCreateStreamStmt* pStmt) {
|
||||||
|
|
Loading…
Reference in New Issue