mirror of https://github.com/citusdata/citus.git
fix uninitialized variable warning (#3483)
parent
e660f4f854
commit
ab0b49db82
|
@ -47,7 +47,7 @@ static List * UnionRelationRestrictionLists(List *firstRelationList,
|
|||
ColocatedJoinChecker
|
||||
CreateColocatedJoinChecker(Query *subquery, PlannerRestrictionContext *restrictionContext)
|
||||
{
|
||||
ColocatedJoinChecker colocatedJoinChecker;
|
||||
ColocatedJoinChecker colocatedJoinChecker = { 0 };
|
||||
|
||||
Query *anchorSubquery = NULL;
|
||||
|
||||
|
|
Loading…
Reference in New Issue