diff options
author | Bruce Momjian | 1999-02-21 01:55:03 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-02-21 01:55:03 +0000 |
commit | 23c30246d7777fdee2dfc346baff0ba0720a5e24 (patch) | |
tree | 9b62587c8cc572f6e6d79b09a2a0281d28a9eae9 /src/include | |
parent | 9d197856dd5eda5cf85b15e564ae09ef8fef0e9e (diff) |
pathkeys.c cleanup.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/optimizer/paths.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/optimizer/paths.h b/src/include/optimizer/paths.h index f504fc79029..fb9ef20b288 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.24 1999/02/19 05:18:06 momjian Exp $ + * $Id: paths.h,v 1.25 1999/02/21 01:55:03 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -54,9 +54,10 @@ extern List *group_clauses_by_hashop(List *restrictinfo_list, * joinutils.h * generic join method key/clause routines */ -extern List *order_joinkeys_by_pathkeys(List *pathkeys, +extern bool order_joinkeys_by_pathkeys(List *pathkeys, List *joinkeys, List *joinclauses, int outer_or_inner, - List **matchedJoinClausesPtr); + List **matchedJoinKeysPtr, + List **matchedJoinClausesPtr); extern List *extract_path_keys(List *joinkeys, List *tlist, int outer_or_inner); extern Path *get_cheapest_path_for_joinkeys(List *joinkeys, |