Commit 506f0542 authored by Robert Haas's avatar Robert Haas

Properly initialize variable.

Commit 3bc7dafa forgot to do this.

Noted while experimenting with valgrind.
parent 0d2b1f30
...@@ -756,7 +756,7 @@ sort_inner_and_outer(PlannerInfo *root, ...@@ -756,7 +756,7 @@ sort_inner_and_outer(PlannerInfo *root,
JoinType save_jointype = jointype; JoinType save_jointype = jointype;
Path *outer_path; Path *outer_path;
Path *inner_path; Path *inner_path;
Path *cheapest_partial_outer; Path *cheapest_partial_outer = NULL;
Path *cheapest_safe_inner = NULL; Path *cheapest_safe_inner = NULL;
List *all_pathkeys; List *all_pathkeys;
ListCell *l; ListCell *l;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment