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/optimizer/util/pathnode.c | |
parent | 3fdb9bb9c74afa79f574438cbbf5178d30463bb6 (diff) | |
download | postgresql-c0d17c7aee68bb73140d11dc03973157e6ca7e76.tar.gz postgresql-c0d17c7aee68bb73140d11dc03973157e6ca7e76.zip |
JoinPath -> NestPath for nested loop.
Diffstat (limited to 'src/backend/optimizer/util/pathnode.c')
-rw-r--r-- | src/backend/optimizer/util/pathnode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/util/pathnode.c b/src/backend/optimizer/util/pathnode.c index f424fd0dc4a..5618ae6b76e 100644 --- a/src/backend/optimizer/util/pathnode.c +++ b/src/backend/optimizer/util/pathnode.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.33 1999/02/12 05:56:57 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.34 1999/02/12 06:43:37 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -473,14 +473,14 @@ create_index_path(Query *root, * Returns the resulting path node. * */ -JoinPath * +NestPath * create_nestloop_path(RelOptInfo *joinrel, RelOptInfo *outer_rel, Path *outer_path, Path *inner_path, List *pathkeys) { - JoinPath *pathnode = makeNode(JoinPath); + NestPath *pathnode = makeNode(NestPath); pathnode->path.pathtype = T_NestLoop; pathnode->path.parent = joinrel; |