diff options
Diffstat (limited to 'src/include/optimizer/paths.h')
-rw-r--r-- | src/include/optimizer/paths.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/optimizer/paths.h b/src/include/optimizer/paths.h index ca84268b1de..413d536807c 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.22 1999/02/18 04:45:36 momjian Exp $ + * $Id: paths.h,v 1.23 1999/02/19 02:05:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -55,12 +55,12 @@ extern List *group_clauses_by_hashop(List *restrictinfo_list, * generic join method key/clause routines */ extern List *match_pathkeys_joinkeys(List *pathkeys, - List *joinkeys, List *joinclauses, int which_subkey, + List *joinkeys, List *joinclauses, int outer_or_inner, List **matchedJoinClausesPtr); extern List *extract_path_keys(List *joinkeys, List *tlist, - int which_subkey); + int outer_or_inner); extern Path *match_paths_joinkeys(List *joinkeys, PathOrder *ordering, - List *paths, int which_subkey); + List *paths, int outer_or_inner); extern List *new_join_pathkeys(List *outer_pathkeys, List *join_rel_tlist, List *joinclauses); |