Skip to content
Snippets Groups Projects
Commit 506f0542 authored by Robert Haas's avatar Robert Haas
Browse files

Properly initialize variable.

Commit 3bc7dafa forgot to do this.

Noted while experimenting with valgrind.
parent 0d2b1f30
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment