diff options
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 765d1ca0514..8c356a55976 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.198 2002/08/04 19:48:10 momjian Exp $ + * $Id: parsenodes.h,v 1.199 2002/08/15 16:36:07 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1402,6 +1402,18 @@ typedef struct TransactionStmt } TransactionStmt; /* ---------------------- + * Create Type Statement, composite types + * ---------------------- + */ +typedef struct CompositeTypeStmt +{ + NodeTag type; + RangeVar *typevar; /* the composite type to be created */ + List *coldeflist; /* list of ColumnDef nodes */ +} CompositeTypeStmt; + + +/* ---------------------- * Create View Statement * ---------------------- */ |