From ba2883b264d7bc392604bc9f76abfc30de89f5f8 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 15 Feb 1999 03:22:37 +0000 Subject: Remove duplicate geqo functions, and more optimizer cleanup --- src/backend/optimizer/util/pathnode.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/backend/optimizer/util/pathnode.c') diff --git a/src/backend/optimizer/util/pathnode.c b/src/backend/optimizer/util/pathnode.c index cf3072a8be7..8e72cabb740 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.35 1999/02/13 23:16:46 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.36 1999/02/15 03:22:16 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -381,15 +381,15 @@ create_index_path(Query *root, /* is the statement above really true? what about IndexScan as the inner of a join? */ pathnode->path.path_cost = cost_index(lfirsti(index->relids), - index->pages, - 1.0, - rel->pages, - rel->tuples, - index->pages, - index->tuples, - false); - /* add in expensive functions cost! -- JMH, 7/7/92 */ + index->pages, + 1.0, + rel->pages, + rel->tuples, + index->pages, + index->tuples, + false); #if 0 + /* add in expensive functions cost! -- JMH, 7/7/92 */ if (XfuncMode != XFUNC_OFF) { pathnode->path_cost = (pathnode->path_cost + -- cgit v1.2.3