diff options
Diffstat (limited to 'src/include/optimizer/xfunc.h')
-rw-r--r-- | src/include/optimizer/xfunc.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/optimizer/xfunc.h b/src/include/optimizer/xfunc.h index 9dd9d41a57..ffd1746e09 100644 --- a/src/include/optimizer/xfunc.h +++ b/src/include/optimizer/xfunc.h @@ -50,9 +50,11 @@ extern int XfuncMode; /* defined in tcop/postgres.c */ /* function prototypes from planner/path/xfunc.c */ extern void xfunc_trypullup(Rel *rel); -extern int xfunc_shouldpull(Path *childpath, JoinPath *parentpath, +extern int +xfunc_shouldpull(Path *childpath, JoinPath *parentpath, int whichchild, CInfo *maxcinfopt); -extern CInfo * xfunc_pullup(Path *childpath, JoinPath *parentpath, CInfo *cinfo, +extern CInfo * +xfunc_pullup(Path *childpath, JoinPath *parentpath, CInfo *cinfo, int whichchild, int clausetype); extern Cost xfunc_rank(Expr *clause); extern Cost xfunc_expense(Query *queryInfo, Expr *clause); |