diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-01-17 04:53:46 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-01-17 04:53:46 +0000 |
commit | b37bc65f44eb16e98212fc61b565bb86502812fd (patch) | |
tree | 0058866f3e0dcc08a98a534eee73cea7bd53bc3e /src/include/nodes/parsenodes.h | |
parent | c65ea0e040f08b59407cd74f8f0f0dd190169d46 (diff) | |
download | postgresql-b37bc65f44eb16e98212fc61b565bb86502812fd.tar.gz postgresql-b37bc65f44eb16e98212fc61b565bb86502812fd.zip |
Creates the SubLink structure, and the Query->hasSubLink field,
with supporting code.
Creates SubLink node in gram.y.
psql.c patch for newatttypmod field.
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 02fa069df61..fc30cbf3e0a 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.45 1998/01/16 23:20:55 momjian Exp $ + * $Id: parsenodes.h,v 1.46 1998/01/17 04:53:40 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -45,6 +45,7 @@ typedef struct Query bool isBinary; /* binary portal? */ bool unionall; /* union without unique sort */ bool hasAggs; /* has aggregates in target list */ + bool hasSubLinks; /* has subquery SubLink */ char *uniqueFlag; /* NULL, '*', or Unique attribute name */ List *sortClause; /* a list of SortClause's */ |