diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-02-26 23:48:47 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-02-26 23:48:47 +0000 |
commit | 75c07d5b4d9361063502399720fce4881b0e4b7b (patch) | |
tree | 938cdca4c0d975cf815475dc5dece8e3acb8a3a7 /src/include/nodes/parsenodes.h | |
parent | 5fb5066cb6c45add7d917c48f74f46f6fdd1544d (diff) |
Back-patch fix for command completion report handling. This is
primarily needed so that INSERTing a row still reports the row's OID
even when there are ON INSERT rules firing additional queries.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 46ec13f34c0..2366211be82 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.151 2001/11/05 17:46:34 momjian Exp $ + * $Id: parsenodes.h,v 1.151.2.1 2002/02/26 23:48:46 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -48,6 +48,8 @@ typedef struct Query bool hasAggs; /* has aggregates in tlist or havingQual */ bool hasSubLinks; /* has subquery SubLink */ + bool originalQuery; /* marks original query through rewriting */ + List *rtable; /* list of range table entries */ FromExpr *jointree; /* table join tree (FROM and WHERE * clauses) */ |