diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-15 05:56:07 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-15 05:56:07 +0000 |
commit | e6bf7b4d932c4445e306ae04ce3bd57f631e96f1 (patch) | |
tree | 2e8edf86baa4888c7f55d7db8b79557b4e3b3aa8 /src/backend/optimizer/path/joinutils.c | |
parent | 56bb23a8fec1e27a22b8934826f21748a384683f (diff) |
rename
Diffstat (limited to 'src/backend/optimizer/path/joinutils.c')
-rw-r--r-- | src/backend/optimizer/path/joinutils.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/optimizer/path/joinutils.c b/src/backend/optimizer/path/joinutils.c index ed2df051eb3..4f4fb7051be 100644 --- a/src/backend/optimizer/path/joinutils.c +++ b/src/backend/optimizer/path/joinutils.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/joinutils.c,v 1.21 1999/02/15 02:04:57 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/joinutils.c,v 1.22 1999/02/15 05:56:04 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -270,7 +270,7 @@ extract_path_keys(List *joinkeys, * find the right Var in the target list for this key */ var = (Var *) extract_join_subkey(jkey, which_subkey); - key = (Var *) matching_tlvar(var, tlist); + key = (Var *) matching_tlist_var(var, tlist); /* * Include it in the pathkeys list if we haven't already done so @@ -369,7 +369,7 @@ new_join_pathkey(List *subkeys, break; /* XXX something is wrong */ matched_subkeys = new_matching_subkeys(subkey, considered_subkeys, join_rel_tlist, joinclauses); - tlist_key = matching_tlvar(subkey, join_rel_tlist); + tlist_key = matching_tlist_var(subkey, join_rel_tlist); newly_considered_subkeys = NIL; if (tlist_key) @@ -418,7 +418,7 @@ new_matching_subkeys(Var *subkey, foreach(i, joinclauses) { joinclause = lfirst(i); - tlist_other_var = matching_tlvar( + tlist_other_var = matching_tlist_var( other_join_clause_var(subkey, joinclause), join_rel_tlist); |