diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-07 16:35:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-07 16:35:41 +0000 |
commit | b976b8af803fb1b3d9ab6a5ae5e13f3a9a90da32 (patch) | |
tree | be92fa181752e2769ea63315b21a6db472a2c3c9 /src/include/nodes/parsenodes.h | |
parent | 609f71b760d64f8ff512a5caa23d4803f664bd84 (diff) | |
download | postgresql-b976b8af803fb1b3d9ab6a5ae5e13f3a9a90da32.tar.gz postgresql-b976b8af803fb1b3d9ab6a5ae5e13f3a9a90da32.zip |
Back out domain patch until it works properly.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 330a3bd3598..c154913c2ba 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.157 2002/03/06 20:35:00 momjian Exp $ + * $Id: parsenodes.h,v 1.158 2002/03/07 16:35:40 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -468,14 +468,12 @@ typedef struct DefineStmt #define DROP_INDEX 4 #define DROP_RULE 5 #define DROP_TYPE_P 6 -#define DROP_DOMAIN_P 7 typedef struct DropStmt { NodeTag type; List *names; int removeType; - int behavior; /* CASCADE or RESTRICT drop behavior */ } DropStmt; /* ---------------------- @@ -684,7 +682,6 @@ typedef struct LoadStmt char *filename; /* file to load */ } LoadStmt; - /* ---------------------- * Createdb Statement * ---------------------- @@ -1284,22 +1281,6 @@ typedef struct DefElem /**************************************************************************** - * Nodes for a Domain Creation tree - ****************************************************************************/ -/* ---------------------- - * CreateDomain Statement - * ---------------------- - * Down here as it required TypeName to be defined first. - */ -typedef struct CreateDomainStmt -{ - NodeTag type; - char *domainname; /* name of domain to create */ - TypeName *typename; /* the typecast */ - List *constraints; /* constraints (list of Constraint nodes) */ -} CreateDomainStmt; - -/**************************************************************************** * Nodes for a Query tree ****************************************************************************/ |