]> granicus.if.org Git - postgresql/commitdiff
From: "Martin S. Utesch" <utesch@aut.tu-freiberg.de>
authorMarc G. Fournier <scrappy@hub.org>
Wed, 9 Apr 1997 08:31:29 +0000 (08:31 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Wed, 9 Apr 1997 08:31:29 +0000 (08:31 +0000)
Subject: Re: [HACKERS] GEQO and views (rules)

Oke, this was caused by a classic bug :-/
I thougth, root->base_relation_list_ could be
represented as relid string 1-2-3-4- etc.

Instead, in case of views, the count of relids doesn't start with "1" but
maybe 4-5-6- etc . :-(

GEQO patch follows ... views are now all right.

src/backend/optimizer/geqo/geqo_eval.c

index cec12ae0ea54cd2de03264ef2e98fc663eb76c6d..d1265f74344a6a72a2159d8c92ca36bbe9efe6be 100644 (file)
@@ -5,7 +5,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: geqo_eval.c,v 1.7 1997/04/03 19:55:35 scrappy Exp $
+ * $Id: geqo_eval.c,v 1.8 1997/04/09 08:31:29 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -63,6 +63,7 @@ static void geqo_joinrel_size(Rel *joinrel, Rel *outer_rel, Rel *inner_rel);
 static void geqo_add_new_joininfos(Query *root, List *joinrels, List *outerrels);
 static List *geqo_final_join_rels(List *join_rel_list);
 
+static Rel *geqo_nth(int stop, List *rels);
 
 /*    
  * geqo_eval--
@@ -108,7 +109,7 @@ Rel *
 gimme_tree (Query *root, Gene *tour, int rel_count, int num_gene, Rel *outer_rel)
 {
  Rel *inner_rel; /* current relation */
- int relid;
+ int base_rel_index;
 
  List *new_rels = NIL;
  Rel *new_rel = NULL;
@@ -116,10 +117,11 @@ gimme_tree (Query *root, Gene *tour, int rel_count, int num_gene, Rel *outer_rel
  if (rel_count < num_gene ) { /* tree not yet finished */
 
        /* tour[0] = 3; tour[1] = 1; tour[2] = 2 */
-       relid = (int) tour[rel_count];
-       inner_rel = (Rel *) get_base_rel(root, relid);
+       base_rel_index = (int) tour[rel_count];
 
-       if (rel_count == 0) { /* processing first join with relid = (int) tour[0] */
+       inner_rel = (Rel *) geqo_nth(base_rel_index,root->base_relation_list_);
+
+       if (rel_count == 0) { /* processing first join with base_rel_index = (int) tour[0] */
                rel_count++;
                return gimme_tree(root, tour, rel_count, num_gene, inner_rel);
                }
@@ -669,3 +671,15 @@ geqo_log(double x, double b)
 {
     return(log(x)/log(b));
 }
+
+static Rel *
+geqo_nth(int stop, List *rels)
+{
+       List *r;
+       int i=1;
+
+       foreach(r, rels) {
+               if (i == stop) return lfirst(r);
+               i++;
+               }
+}