summaryrefslogtreecommitdiff
path: root/src/include/optimizer/paths.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-02-19 02:05:20 +0000
committerBruce Momjian <bruce@momjian.us>1999-02-19 02:05:20 +0000
commit8ab72a38df82a863f787c65a4b8998893a946377 (patch)
treec8f37ab81890724b300e51249c275478ade3e4dd /src/include/optimizer/paths.h
parent61f40ac3f2fb81dfccba4f6c8f39202c49da177e (diff)
downloadpostgresql-8ab72a38df82a863f787c65a4b8998893a946377.tar.gz
optimizer cleanup
Diffstat (limited to 'src/include/optimizer/paths.h')
-rw-r--r--src/include/optimizer/paths.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/optimizer/paths.h b/src/include/optimizer/paths.h
index ca84268b1d..413d536807 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);