Subject: [HACKERS] src.original/./backend/lib/fstack.c
Another change I suggested. I bracket an unused function and add a
return to quiet the compiler. In addition I added an internal
consistency check.
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: geqo_eval.c,v 1.8 1997/04/09 08:31:29 scrappy Exp $
+ * $Id: geqo_eval.c,v 1.9 1997/06/06 00:38:17 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
return(current_joininfo_list);
}
+#ifdef NOTUSED
/*
* add-new-joininfos--
* For each new join relation, create new joininfos that
}
return(true);
}
+#endif /* NOTUSED */
/*
* geqo_joinrel_size--
if (i == stop) return lfirst(r);
i++;
}
+ elog(WARN,"geqo_nth: Internal error - ran off end of list");
+ return NULL; /* to keep compiler happy */
}