X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=src%2Finclude%2Faccess%2Ftupdesc.h;h=3ff678d48f54554cb1095d91cfad6b52d1222b49;hb=eabc714a916b772650c97b065ef27767dc5942e4;hp=c1b30598b952ba7bf498be9b8b58354a61a5161a;hpb=f29ccc827006d13be0f4bf0255b06f3c4e921709;p=pg-rex%2Fsyncrep.git diff --git a/src/include/access/tupdesc.h b/src/include/access/tupdesc.h index c1b30598b9..3ff678d48f 100644 --- a/src/include/access/tupdesc.h +++ b/src/include/access/tupdesc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: tupdesc.h,v 1.24 1999/07/16 17:07:28 momjian Exp $ + * $Id: tupdesc.h,v 1.25 1999/10/03 23:55:34 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -21,22 +21,20 @@ typedef struct attrDefault { AttrNumber adnum; - char *adbin; - char *adsrc; + char *adbin; /* nodeToString representation of expr */ } AttrDefault; typedef struct constrCheck { char *ccname; - char *ccbin; - char *ccsrc; + char *ccbin; /* nodeToString representation of expr */ } ConstrCheck; /* This structure contains constraints of a tuple */ typedef struct tupleConstr { - AttrDefault *defval; - ConstrCheck *check; + AttrDefault *defval; /* array */ + ConstrCheck *check; /* array */ uint16 num_defval; uint16 num_check; bool has_not_null;