diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-22 05:26:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-22 05:26:58 +0000 |
commit | 1ed5cbbfd847f0011a6fe3670deb75b1a7407f61 (patch) | |
tree | 01c424ce1005bbeef3a947a6b6c6ec2cfe5a464f /src/backend/optimizer/path/indxpath.c | |
parent | 47dd11bdd034a8afeab5e9a3ed12ddbebb475d25 (diff) | |
download | postgresql-1ed5cbbfd847f0011a6fe3670deb75b1a7407f61.tar.gz postgresql-1ed5cbbfd847f0011a6fe3670deb75b1a7407f61.zip |
Final optimizer cleanups.
Diffstat (limited to 'src/backend/optimizer/path/indxpath.c')
-rw-r--r-- | src/backend/optimizer/path/indxpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index e23b65067c9..c955f256278 100644 --- a/src/backend/optimizer/path/indxpath.c +++ b/src/backend/optimizer/path/indxpath.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.52 1999/02/21 03:48:44 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.53 1999/02/22 05:26:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1384,7 +1384,7 @@ create_index_path_group(Query *root, static List * add_index_paths(List *indexpaths, List *new_indexpaths) { - return append(indexpaths, new_indexpaths); + return nconc(indexpaths, new_indexpaths); } static bool |