diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-30 05:21:03 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-30 05:21:03 +0000 |
commit | 935969415a90065d4bc4b2643b4c9c50518c934b (patch) | |
tree | 49488aee7f8c95a338e4b53024d4aaeb36d2abcc /src/include/executor/executor.h | |
parent | 829cedc8cf04801c8fce49afa5dd57b3833b969f (diff) |
Be more realistic about plans involving Materialize nodes: take their
cost into account while planning.
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index a12c31bff7c..312c56fa85c 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.78 2002/09/04 20:31:42 momjian Exp $ + * $Id: executor.h,v 1.79 2002/11/30 05:21:03 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -33,6 +33,7 @@ extern void ExecReScan(Plan *node, ExprContext *exprCtxt, Plan *parent); extern void ExecMarkPos(Plan *node); extern void ExecRestrPos(Plan *node); +extern bool ExecSupportsMarkRestore(NodeTag plantype); /* * prototypes from functions in execJunk.c |