diff options
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index cd976cd1a14..92501196f93 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.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: parsenodes.h,v 1.215 2002/11/15 03:09:39 momjian Exp $ + * $Id: parsenodes.h,v 1.216 2002/11/19 23:21:59 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -102,6 +102,7 @@ typedef struct Query List *equi_key_list; /* list of lists of equijoined * PathKeyItems */ List *query_pathkeys; /* desired pathkeys for query_planner() */ + bool hasJoinRTEs; /* true if any RTEs are RTE_JOIN kind */ } Query; |