summaryrefslogtreecommitdiff
path: root/src/include/optimizer/xfunc.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-02-03 20:15:53 +0000
committerBruce Momjian <bruce@momjian.us>1999-02-03 20:15:53 +0000
commit8d9237d48510464dc03e8b00e7203927dc07c4d4 (patch)
treea7a2cbcecc176e358cc5f0c3dcb49c193b9aed00 /src/include/optimizer/xfunc.h
parentf3a6b38e321a30a447c31404d127eee9d01582df (diff)
downloadpostgresql-8d9237d48510464dc03e8b00e7203927dc07c4d4.tar.gz
Optimizer rename ClauseInfo -> RestrictInfo. Update optimizer README.
Diffstat (limited to 'src/include/optimizer/xfunc.h')
-rw-r--r--src/include/optimizer/xfunc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/optimizer/xfunc.h b/src/include/optimizer/xfunc.h
index 8a10ab80a5..75bb58caec 100644
--- a/src/include/optimizer/xfunc.h
+++ b/src/include/optimizer/xfunc.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: xfunc.h,v 1.10 1998/09/01 04:37:24 momjian Exp $
+ * $Id: xfunc.h,v 1.11 1999/02/03 20:15:53 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -51,8 +51,8 @@ extern int XfuncMode; /* defined in tcop/postgres.c */
/* function prototypes from planner/path/xfunc.c */
extern void xfunc_trypullup(RelOptInfo * rel);
extern int xfunc_shouldpull(Path *childpath, JoinPath *parentpath,
- int whichchild, ClauseInfo * maxcinfopt);
-extern ClauseInfo *xfunc_pullup(Path *childpath, JoinPath *parentpath, ClauseInfo * cinfo,
+ int whichchild, RestrictInfo * maxcinfopt);
+extern RestrictInfo *xfunc_pullup(Path *childpath, JoinPath *parentpath, RestrictInfo * cinfo,
int whichchild, int clausetype);
extern Cost xfunc_rank(Expr *clause);
extern Cost xfunc_expense(Query *queryInfo, Expr *clause);