fix: modify nodesEqualNode to include tableAlias when it is column node
This commit is contained in:
parent
c7f2a122c2
commit
c184803c8c
|
@ -82,6 +82,7 @@ static bool columnNodeEqual(const SColumnNode* a, const SColumnNode* b) {
|
||||||
COMPARE_STRING_FIELD(dbName);
|
COMPARE_STRING_FIELD(dbName);
|
||||||
COMPARE_STRING_FIELD(tableName);
|
COMPARE_STRING_FIELD(tableName);
|
||||||
COMPARE_STRING_FIELD(colName);
|
COMPARE_STRING_FIELD(colName);
|
||||||
|
COMPARE_STRING_FIELD(tableAlias);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue