diff options
author | Bruce Momjian | 2002-11-15 02:50:21 +0000 |
---|---|---|
committer | Bruce Momjian | 2002-11-15 02:50:21 +0000 |
commit | 6b603e67dcd1a93a56f3c6b5f36fd8f08e2ee35d (patch) | |
tree | 5d4a4a590f20c0516bb380e6169114120be3d58f /src/include/nodes/nodes.h | |
parent | 2986aa6a668bce3cfb83606bb52e9d01ae66ad6c (diff) |
Add DOMAIN check constraints.
Rod Taylor
Diffstat (limited to 'src/include/nodes/nodes.h')
-rw-r--r-- | src/include/nodes/nodes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index cec75309210..112eac34680 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.122 2002/11/10 02:17:25 momjian Exp $ + * $Id: nodes.h,v 1.123 2002/11/15 02:50:10 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -171,6 +171,7 @@ typedef enum NodeTag T_ViewStmt, T_LoadStmt, T_CreateDomainStmt, + T_DomainConstraintValue, T_CreatedbStmt, T_DropdbStmt, T_VacuumStmt, @@ -231,6 +232,7 @@ typedef enum NodeTag T_NullTest, T_BooleanTest, T_ConstraintTest, + T_ConstraintTestValue, T_CaseExpr, T_CaseWhen, T_FkConstraint, |