diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-09-01 06:04:59 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-09-01 06:04:59 +0000 |
commit | 1bf90bc7d346fc182d0d68bfecfe1dcaba256349 (patch) | |
tree | 9a9b8d031540ee199e9cb5a440cdbb8a94158b28 /src/include/nodes/nodes.h | |
parent | 570620c5698b0c76b26a3ec71692df29375cad16 (diff) | |
download | postgresql-1bf90bc7d346fc182d0d68bfecfe1dcaba256349.tar.gz postgresql-1bf90bc7d346fc182d0d68bfecfe1dcaba256349.zip |
Add structure for subselects.
Add field to support "WITH TIME ZONE".
Diffstat (limited to 'src/include/nodes/nodes.h')
-rw-r--r-- | src/include/nodes/nodes.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index ecf8cff61c2..66c1b1812ce 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.10 1997/08/31 11:43:08 vadim Exp $ + * $Id: nodes.h,v 1.11 1997/09/01 06:04:57 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -206,7 +206,8 @@ typedef enum NodeTag { T_TargetEntry, T_RangeTblEntry, T_SortClause, - T_GroupClause + T_GroupClause, + T_SubSelect } NodeTag; /* |