fix uninitialized variable warning (#3483)

pull/3488/head
Onur Tirtir 2020-02-11 17:44:31 +03:00 committed by GitHub
parent e660f4f854
commit ab0b49db82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ static List * UnionRelationRestrictionLists(List *firstRelationList,
ColocatedJoinChecker
CreateColocatedJoinChecker(Query *subquery, PlannerRestrictionContext *restrictionContext)
{
ColocatedJoinChecker colocatedJoinChecker;
ColocatedJoinChecker colocatedJoinChecker = { 0 };
Query *anchorSubquery = NULL;