diff options
| author | Bruce Momjian <bruce@momjian.us> | 1999-02-12 06:43:53 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1999-02-12 06:43:53 +0000 |
| commit | c0d17c7aee68bb73140d11dc03973157e6ca7e76 (patch) | |
| tree | e973403fc12f201021ac3a379baa859eed7c9308 /src/backend/nodes/equalfuncs.c | |
| parent | 3fdb9bb9c74afa79f574438cbbf5178d30463bb6 (diff) | |
| download | postgresql-c0d17c7aee68bb73140d11dc03973157e6ca7e76.tar.gz | |
JoinPath -> NestPath for nested loop.
Diffstat (limited to 'src/backend/nodes/equalfuncs.c')
| -rw-r--r-- | src/backend/nodes/equalfuncs.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/nodes/equalfuncs.c b/src/backend/nodes/equalfuncs.c index 58b4920d49..92d194eadf 100644 --- a/src/backend/nodes/equalfuncs.c +++ b/src/backend/nodes/equalfuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.30 1999/02/11 14:58:48 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.31 1999/02/12 06:43:22 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -390,7 +390,7 @@ _equalIndexPath(IndexPath *a, IndexPath *b) } static bool -_equalJoinPath(JoinPath *a, JoinPath *b) +_equalNestPath(NestPath *a, NestPath *b) { Assert(IsA_JoinPath(a)); Assert(IsA_JoinPath(b)); @@ -412,7 +412,7 @@ _equalMergePath(MergePath *a, MergePath *b) Assert(IsA(a, MergePath)); Assert(IsA(b, MergePath)); - if (!_equalJoinPath((JoinPath *) a, (JoinPath *) b)) + if (!_equalNestPath((NestPath *) a, (NestPath *) b)) return false; if (!equal(a->path_mergeclauses, b->path_mergeclauses)) return false; @@ -429,7 +429,7 @@ _equalHashPath(HashPath *a, HashPath *b) Assert(IsA(a, HashPath)); Assert(IsA(b, HashPath)); - if (!_equalJoinPath((JoinPath *) a, (JoinPath *) b)) + if (!_equalNestPath((NestPath *) a, (NestPath *) b)) return false; if (!equal((a->path_hashclauses), (b->path_hashclauses))) return false; @@ -773,8 +773,8 @@ equal(void *a, void *b) case T_IndexPath: retval = _equalIndexPath(a, b); break; - case T_JoinPath: - retval = _equalJoinPath(a, b); + case T_NestPath: + retval = _equalNestPath(a, b); break; case T_MergePath: retval = _equalMergePath(a, b); |
