mirror of
https://github.com/postgres/postgres.git
synced 2025-08-31 17:02:12 +03:00
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.
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user