diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-03-02 18:56:28 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-03-02 18:56:28 +0000 |
commit | 819bfac66ae3b0f567f278c734bb47e54d6e9bb4 (patch) | |
tree | bec56fdff5b229e5d8b2ba8e7d1c362ca298e112 /src/include/executor | |
parent | aff13a97148d227ebd4dd9986285a5e5b23a0595 (diff) | |
download | postgresql-819bfac66ae3b0f567f278c734bb47e54d6e9bb4.tar.gz postgresql-819bfac66ae3b0f567f278c734bb47e54d6e9bb4.zip |
Junkfilter logic to force a projection step during SELECT INTO was too
simplistic; it recognized SELECT * FROM but not SELECT * FROM LIMIT.
Per bug report from Jeff Bohmer.
Diffstat (limited to 'src/include/executor')
-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 201f520dba9..447ebc130aa 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.102.2.2 2004/01/22 02:23:35 tgl Exp $ + * $Id: executor.h,v 1.102.2.3 2004/03/02 18:56:28 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -36,6 +36,7 @@ extern void ExecMarkPos(PlanState *node); extern void ExecRestrPos(PlanState *node); extern bool ExecSupportsMarkRestore(NodeTag plantype); extern bool ExecSupportsBackwardScan(Plan *node); +extern bool ExecMayReturnRawTuples(PlanState *node); /* * prototypes from functions in execGrouping.c |