diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-08-22 04:05:27 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-08-22 04:05:27 +0000 |
commit | 5f7f236ba4ec662819f6e30422dbe4de882bacc3 (patch) | |
tree | ccff0244cc7110019e04b0af2c74d3ca0b7ee35f | |
parent | d67547d82d0a23ec61eca0cb637087d47db1d47f (diff) | |
download | postgresql-5f7f236ba4ec662819f6e30422dbe4de882bacc3.tar.gz |
ConstraintDef changed
-rw-r--r-- | src/include/nodes/parsenodes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 00c70ee9ec..7d55e49e3e 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.19 1997/08/21 01:39:25 vadim Exp $ + * $Id: parsenodes.h,v 1.20 1997/08/22 04:05:27 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -143,11 +143,11 @@ typedef enum ConstrType { CONSTR_NONE, CONSTR_CHECK /* type of constaints */ } ConstrType; -typedef struct ConstaintDef { +typedef struct ConstraintDef { ConstrType type; char *name; /* name */ - char *expr; /* */ -} ConstaintDef; + void *def; /* definition */ +} ConstraintDef; /* ---------------------- * Create SEQUENCE Statement |