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:
@ -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;
|
||||
|
Reference in New Issue
Block a user