diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-12-27 06:41:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-12-27 06:41:41 +0000 |
commit | 4ce24c8aa98b26f0b070464ce118ef2a1901064e (patch) | |
tree | 15deb75908b3d87a498e01d46adc371088702e25 /src/include/nodes/plannodes.h | |
parent | 2730c4a45c0f2e0c47caba19d2fe52dedfc3a928 (diff) | |
download | postgresql-4ce24c8aa98b26f0b070464ce118ef2a1901064e.tar.gz postgresql-4ce24c8aa98b26f0b070464ce118ef2a1901064e.zip |
UNION work for UNION ALL and other union stuff.
Diffstat (limited to 'src/include/nodes/plannodes.h')
-rw-r--r-- | src/include/nodes/plannodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index 63447c93692..2dc464c2a7a 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: plannodes.h,v 1.11 1997/12/18 12:54:37 momjian Exp $ + * $Id: plannodes.h,v 1.12 1997/12/27 06:41:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -119,6 +119,7 @@ typedef struct Append { Plan plan; List *unionplans; + List *unionrts; Index unionrelid; List *unionrtentries; AppendState *unionstate; |