@@ -59,8 +59,8 @@ CATALOG(pg_type,1247,TypeRelationId) BKI_BOOTSTRAP BKI_ROWTYPE_OID(71,TypeRelati
59
59
* this type by value or by reference. typbyval had better be false if
60
60
* the length is not 1, 2, or 4 (or 8 on 8-byte-Datum machines).
61
61
* Variable-length types are always passed by reference. Note that
62
- * typbyval can be false even if the length would allow pass-by-value;
63
- *this iscurrently true for type float4, for example .
62
+ * typbyval can be false even if the length would allow pass-by-value; for
63
+ *example, type macaddr8 ispass-by-ref even when Datum is 8 bytes .
64
64
*/
65
65
bool typbyval ;
66
66
@@ -88,7 +88,8 @@ CATALOG(pg_type,1247,TypeRelationId) BKI_BOOTSTRAP BKI_ROWTYPE_OID(71,TypeRelati
88
88
89
89
/*
90
90
* If typisdefined is false, the entry is only a placeholder (forward
91
- * reference). We know the type name, but not yet anything else about it.
91
+ * reference). We know the type's name and owner, but not yet anything
92
+ * else about it.
92
93
*/
93
94
bool typisdefined BKI_DEFAULT (t );
94
95