diff options
| author | Bruce Momjian | 2003-06-25 04:19:24 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2003-06-25 04:19:24 +0000 |
| commit | 53c4f1233fa950c0c6c0e0bbaa7a177278e14b04 (patch) | |
| tree | 43a4943c7111a7ffa40c3a41de76d8dc563c535a /src/include | |
| parent | a09ccc70dd78b33271b06a6c250f7578aa4e16a1 (diff) | |
UPDATE ... SET <col> = DEFAULT
Rod Taylor
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/nodes/nodes.h | 4 | ||||
| -rw-r--r-- | src/include/nodes/parsenodes.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index a6c2c022141..af87482e42a 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.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: nodes.h,v 1.141 2003/06/25 03:40:19 momjian Exp $ + * $Id: nodes.h,v 1.142 2003/06/25 04:19:24 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -277,7 +277,7 @@ typedef enum NodeTag T_PrivGrantee, T_FuncWithArgs, T_PrivTarget, - T_InsertDefault, + T_SetToDefault, T_CreateOpClassItem, T_CompositeTypeStmt, T_InhRelation, diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 772e4341721..2e6e1559fa0 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.239 2003/06/25 03:40:19 momjian Exp $ + * $Id: parsenodes.h,v 1.240 2003/06/25 04:19:24 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -279,10 +279,10 @@ typedef struct ResTarget /* * Empty node used as a marker for Default Columns */ -typedef struct InsertDefault +typedef struct SetToDefault { NodeTag type; -} InsertDefault; +} SetToDefault; /* * SortGroupBy - for ORDER BY clause |
