mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Renaming cleanup, no pgindent yet.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/joinpath.c,v 1.8 1998/08/04 16:44:07 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/joinpath.c,v 1.9 1998/09/01 03:23:24 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -221,7 +221,7 @@ best_innerjoin(List *join_paths, List *outer_relids)
|
||||
cheapest = (Path *) lfirst(join_path);
|
||||
}
|
||||
}
|
||||
return (cheapest);
|
||||
return cheapest;
|
||||
}
|
||||
|
||||
/*
|
||||
@ -285,7 +285,7 @@ sort_inner_and_outer(RelOptInfo *joinrel,
|
||||
|
||||
ms_list = lappend(ms_list, temp_node);
|
||||
}
|
||||
return (ms_list);
|
||||
return ms_list;
|
||||
}
|
||||
|
||||
/*
|
||||
@ -442,7 +442,7 @@ match_unsorted_outer(RelOptInfo *joinrel,
|
||||
temp_node = paths;
|
||||
jp_list = nconc(jp_list, temp_node);
|
||||
}
|
||||
return (jp_list);
|
||||
return jp_list;
|
||||
}
|
||||
|
||||
/*
|
||||
@ -560,7 +560,7 @@ match_unsorted_inner(RelOptInfo *joinrel,
|
||||
}
|
||||
}
|
||||
}
|
||||
return (mp_list);
|
||||
return mp_list;
|
||||
|
||||
}
|
||||
|
||||
@ -645,5 +645,5 @@ hash_inner_and_outer(RelOptInfo *joinrel,
|
||||
hjoin_list = lappend(hjoin_list, temp_node);
|
||||
}
|
||||
}
|
||||
return (hjoin_list);
|
||||
return hjoin_list;
|
||||
}
|
||||
|
Reference in New Issue
Block a user