diff options
| author | Bruce Momjian | 1999-02-19 02:05:20 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-02-19 02:05:20 +0000 |
| commit | 8ab72a38df82a863f787c65a4b8998893a946377 (patch) | |
| tree | c8f37ab81890724b300e51249c275478ade3e4dd /src/include/optimizer | |
| parent | 61f40ac3f2fb81dfccba4f6c8f39202c49da177e (diff) | |
optimizer cleanup
Diffstat (limited to 'src/include/optimizer')
| -rw-r--r-- | src/include/optimizer/keys.h | 4 | ||||
| -rw-r--r-- | src/include/optimizer/paths.h | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/include/optimizer/keys.h b/src/include/optimizer/keys.h index 4a23680b75d..fad0117c3a3 100644 --- a/src/include/optimizer/keys.h +++ b/src/include/optimizer/keys.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: keys.h,v 1.12 1999/02/13 23:21:49 momjian Exp $ + * $Id: keys.h,v 1.13 1999/02/19 02:05:18 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -17,7 +17,7 @@ #include "nodes/relation.h" extern bool match_indexkey_operand(int indexkey, Var *operand, RelOptInfo *rel); -extern Var *extract_join_subkey(JoinKey *jk, int which_subkey); +extern Var *extract_join_key(JoinKey *jk, int outer_or_inner); extern bool pathkeys_match(List *keys1, List *keys2, int *better_key); extern List *collect_index_pathkeys(int *index_keys, List *tlist); 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); |
