1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-20 15:22:23 +03:00

Properly initialize variable.

Commit 3bc7dafa9b forgot to do this.

Noted while experimenting with valgrind.
This commit is contained in:
Robert Haas
2017-03-07 13:49:53 -05:00
parent 0d2b1f305d
commit 506f05423a

View File

@ -756,7 +756,7 @@ sort_inner_and_outer(PlannerInfo *root,
JoinType save_jointype = jointype;
Path *outer_path;
Path *inner_path;
Path *cheapest_partial_outer;
Path *cheapest_partial_outer = NULL;
Path *cheapest_safe_inner = NULL;
List *all_pathkeys;
ListCell *l;