diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-22 05:26:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-22 05:26:58 +0000 |
commit | 1ed5cbbfd847f0011a6fe3670deb75b1a7407f61 (patch) | |
tree | 01c424ce1005bbeef3a947a6b6c6ec2cfe5a464f /src/include/optimizer/paths.h | |
parent | 47dd11bdd034a8afeab5e9a3ed12ddbebb475d25 (diff) |
Final optimizer cleanups.
Diffstat (limited to 'src/include/optimizer/paths.h')
-rw-r--r-- | src/include/optimizer/paths.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/optimizer/paths.h b/src/include/optimizer/paths.h index fb9ef20b288..dfd2dfa7871 100644 --- a/src/include/optimizer/paths.h +++ b/src/include/optimizer/paths.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: paths.h,v 1.25 1999/02/21 01:55:03 momjian Exp $ + * $Id: paths.h,v 1.26 1999/02/22 05:26:52 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -58,8 +58,8 @@ extern bool order_joinkeys_by_pathkeys(List *pathkeys, List *joinkeys, List *joinclauses, int outer_or_inner, List **matchedJoinKeysPtr, List **matchedJoinClausesPtr); -extern List *extract_path_keys(List *joinkeys, List *tlist, - int outer_or_inner); +extern List *make_pathkeys_from_joinkeys(List *joinkeys, List *tlist, + int outer_or_inner); extern Path *get_cheapest_path_for_joinkeys(List *joinkeys, PathOrder *ordering, List *paths, int outer_or_inner); extern List *new_join_pathkeys(List *outer_pathkeys, |