We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c850ec commit e451dd5Copy full SHA for e451dd5
src/include/access/tupdesc.h
@@ -25,8 +25,6 @@ typedef struct attrDefault
25
char *adbin; /* nodeToString representation of expr */
26
} AttrDefault;
27
28
-typedef struct attrMissing *MissingPtr;
29
-
30
typedef struct constrCheck
31
{
32
char *ccname;
@@ -40,7 +38,7 @@ typedef struct tupleConstr
40
38
41
39
AttrDefault *defval; /* array */
42
ConstrCheck *check; /* array */
43
- MissingPtr missing; /* missing attributes values, NULL if none */
+ struct attrMissing *missing; /* missing attributes values, NULL if none */
44
uint16 num_defval;
45
uint16 num_check;
46
bool has_not_null;
0 commit comments